Developing with ZBOSS for Zigbee
Metering cluster server attributes and enumerations

Macros

#define ZB_ZCL_METERING_FORMATTING_SUPPRESS_ZERO(b)   (((b) & 0x80)==0x80)
 If set, suppress leading zeros.
 
#define ZB_ZCL_METERING_FORMATTING_LEFT(b)   (((b)>>3) & 0x07)
 Number of Digits to the right of the Decimal Point.
 
#define ZB_ZCL_METERING_FORMATTING_RIGHT(b)   ((b) & 0x07)
 Number of Digits to the left of the Decimal Point.
 
#define ZB_ZCL_METERING_FORMATTING_SET(suppress_zero, left, right)   ( ((suppress_zero) ? 0x80 : 0) | (((left) & 7)<<3) | ((right) & 7) )
 Set summation formatting.
 
#define ZB_ZCL_METERING_STATUS_DEFAULT_VALUE   0x00
 Default value for Status attribute.
 
#define ZB_ZCL_METERING_UNIT_OF_MEASURE_DEFAULT_VALUE   0x00
 Default value for Status attribute.
 
#define ZB_ZCL_METERING_INSTANTANEOUS_DEMAND_DEFAULT_VALUE   ZB_INIT_UINT24(0x00, 0x0000)
 Default value for Instantaneous Demand attribute.
 
#define ZB_ZCL_METERING_DAILY_FREEZE_TIME_DEFAULT_VALUE   ((zb_uint16_t)0x0000)
 Default value for DailyFreezeTime attribute.
 
#define ZB_ZCL_METERING_POWER_FACTOR_DEFAULT_VALUE   ((zb_int8_t)0x00)
 Default value for PowerFactor attribute.
 
#define ZB_ZCL_METERING_DEFAULT_UPDATE_PERIOD_DEFAULT_VALUE   ((zb_uint8_t)0x1E)
 Default value for DefaultUpdatePeriod attribute.
 
#define ZB_ZCL_METERING_FAST_POLL_UPDATE_PERIOD_DEFAULT_VALUE   ((zb_uint8_t)0x05)
 Default value for FastPollUpdatePeriod attribute.
 
#define ZB_ZCL_METERING_PRESET_READING_TIME_DEFAULT_VALUE   ((zb_uint16_t)0x0000)
 Default value for PresetReadingTime attribute.
 
#define ZB_ZCL_METERING_MAX_NUMBER_OF_PERIODS_DELIVERED_DEFAULT_VALUE   ((zb_uint8_t)0x18)
 Default value for MaxNumberOfPeriodsDelivered attribute.
 
#define ZB_ZCL_METERING_GENERIC_ALARM_MASK_DEFAULT_VALUE   ((zb_uint16_t)0xFFFF)
 Default value for GenericAlarmMask attribute.
 
#define ZB_ZCL_METERING_ELECTRICITY_ALARM_MASK_DEFAULT_VALUE   ((zb_uint32_t)0xFFFFFFFF)
 Default value for ElectricityAlarmMask attribute.
 
#define ZB_ZCL_METERING_GENERIC_FLOW_PRESSURE_ALARM_MASK_DEFAULT_VALUE   ((zb_uint16_t)0xFFFF)
 Default value for GenericFlowPressureAlarmMask attribute.
 
#define ZB_ZCL_METERING_WATER_SPECIFIC_ALARM_MASK_DEFAULT_VALUE   ((zb_uint16_t)0xFFFF)
 Default value for WaterSpecificAlarmMask attribute.
 
#define ZB_ZCL_METERING_HEAT_AND_COOLING_SPECIFIC_ALARM_MASK_DEFAULT_VALUE   ((zb_uint16_t)0xFFFF)
 Default value for HeatAndCoolingSpecificAlarmMask attribute.
 
#define ZB_ZCL_METERING_GAS_SPECIFIC_ALARM_MASK_DEFAULT_VALUE   ((zb_uint16_t)0xFFFF)
 Default value for GasSpecificAlarmMask attribute.
 
#define ZB_ZCL_METERING_LINKY_MODE_ON_OPERATION_DEFAULT_VALUE   ((zb_uint8_t)0x00)
 Default value for FastPollUpdatePeriod attribute.
 

Enumerations

enum  zb_zcl_metering_srv_attr_set_e {
  ZB_ZCL_METERING_SET_READ_INFO = 0x00, ZB_ZCL_METERING_SET_TOU_INFORMATION = 0x01, ZB_ZCL_METERING_SET_METER_STATUS = 0x02, ZB_ZCL_METERING_SET_FORMATTING = 0x03,
  ZB_ZCL_METERING_SET_HISTORICAL_CONSUMPTION = 0x04, ZB_ZCL_METERING_SET_LOAD_PROFILE_CONFIGURATION = 0x05, ZB_ZCL_METERING_SET_SUPPLY_LIMIT = 0x06, ZB_ZCL_METERING_SET_BLOCK_INFORMATION_DELIVERED = 0x07,
  ZB_ZCL_METERING_SET_ALARMS = 0x08, ZB_ZCL_METERING_SET_BLOCK_INFORMATION_RECEIVED = 0x09, ZB_ZCL_METERING_SET_METER_BILLING = 0x0A, ZB_ZCL_METERING_SET_SUPPLY_CONTROL = 0x0B,
  ZB_ZCL_METERING_SET_ALTERNATIVE_HISTORICAL_CONSUMPTION = 0x0C, ZB_ZCL_METERING_SET_FOUR_QUADRANT_ELECTRICITY = 0x0D
}
 Metering cluster server attribute sets. More...
 
enum  zb_zcl_metering_attr_e {
  ZB_ZCL_ATTR_METERING_CURRENT_SUMMATION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_READ_INFO, 0x00), ZB_ZCL_ATTR_METERING_CURRENT_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_RECEIVED_ID,
  ZB_ZCL_ATTR_METERING_DFT_SUMMATION_ID, ZB_ZCL_ATTR_METERING_DAILY_FREEZE_TIME_ID, ZB_ZCL_ATTR_METERING_POWER_FACTOR_ID, ZB_ZCL_ATTR_METERING_READING_SNAPSHOT_TIME_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_DELIVERED_TIME_ID, ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_RECEIVED_TIME_ID, ZB_ZCL_ATTR_METERING_DEFAULT_UPDATE_PERIOD_ID, ZB_ZCL_ATTR_METERING_FAST_POLL_UPDATE_PERIOD_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_PERIOD_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_DAILY_CONSUMPTION_TARGET_ID, ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_ID, ZB_ZCL_ATTR_METERING_PROFILE_INTERVAL_PERIOD_ID,
  ZB_ZCL_ATTR_METERING_PRESET_READING_TIME_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_READ_INFO, 0x11), ZB_ZCL_ATTR_METERING_SUMMATION_DELIVERED_PER_REPORT_ID, ZB_ZCL_ATTR_METERING_FLOW_RESTRICTION_ID, ZB_ZCL_ATTR_METERING_SUPPLY_STATUS_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_INLET_ENERGY_CARRIER_SUMMATION_ID, ZB_ZCL_ATTR_METERING_CURRENT_OUTLET_ENERGY_CARRIER_SUMMATION_ID, ZB_ZCL_ATTR_METERING_INLET_TEMPERATURE_ID, ZB_ZCL_ATTR_METERING_OUTLET_TEMPERATURE_ID,
  ZB_ZCL_ATTR_METERING_CONTROL_TEMPERATURE_ID, ZB_ZCL_ATTR_METERING_CURRENT_INLET_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_CURRENT_OUTLET_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_BLOCK_PERIOD_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_PERIOD_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_RECEIVED_ID, ZB_ZCL_ATTR_METERING_DFT_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_ACTIVE_REGISTER_TIER_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_ACTIVE_REGISTER_TIER_RECEIVED_ID, ZB_ZCL_ATTR_METERING_LAST_BLOCK_SWITCH_TIME_ID, ZB_ZCL_ATTR_METERING_NUMBER_OF_TIERS_IN_USE, ZB_ZCL_ATTR_METERING_CURRENT_TIER1_SUMMATION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_TOU_INFORMATION, 0x00),
  ZB_ZCL_ATTR_METERING_CURRENT_TIER1_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER2_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER2_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER3_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER3_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER4_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER4_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER5_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER5_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER6_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER6_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER7_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER7_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER8_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER8_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER9_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER9_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER10_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER10_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER11_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER11_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER12_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER12_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER13_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER13_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER14_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER14_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER15_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER15_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER16_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER16_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER17_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER17_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER18_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER18_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER19_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER19_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER20_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER20_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER21_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER21_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER22_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER22_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER23_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER23_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER24_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER24_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER25_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER25_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER26_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER26_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER27_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER27_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER28_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER28_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER29_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER29_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER30_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER30_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER31_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER31_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER32_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER32_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER33_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER33_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER34_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER34_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER35_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER35_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER36_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER36_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER37_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER37_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER38_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER38_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER39_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER39_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER40_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER40_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER41_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER41_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER42_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER42_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER43_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER43_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER44_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER44_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER45_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER45_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER46_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER46_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER47_SUMMATION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_TIER47_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER48_SUMMATION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_TIER48_SUMMATION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CPP1_SUMMATION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_TOU_INFORMATION, 0xFC),
  ZB_ZCL_ATTR_METERING_CPP2_SUMMATION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_TOU_INFORMATION, 0xFE), ZB_ZCL_ATTR_METERING_STATUS_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_METER_STATUS, 0x00), ZB_ZCL_ATTR_METERING_REMAINING_BATTERY_LIFE_ID, ZB_ZCL_ATTR_METERING_HOURS_IN_OPERATION_ID,
  ZB_ZCL_ATTR_METERING_HOURS_IN_FAULT_ID, ZB_ZCL_ATTR_METERING_EXTENDED_STATUS_ID, ZB_ZCL_ATTR_METERING_REMAINING_BATTERY_LIFE_DAYS_ID, ZB_ZCL_ATTR_METERING_CURRENT_METER_ID_ID,
  ZB_ZCL_ATTR_METERING_AMBIENT_CONSUMPTION_INDICATOR_ID, ZB_ZCL_ATTR_METERING_SERVICE_DISCONNECT_REASON_ID, ZB_ZCL_ATTR_METERING_LINKY_MODE_OF_OPERATION_ID, ZB_ZCL_ATTR_METERING_UNIT_OF_MEASURE_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_FORMATTING, 0x00),
  ZB_ZCL_ATTR_METERING_MULTIPLIER_ID, ZB_ZCL_ATTR_METERING_DIVISOR_ID, ZB_ZCL_ATTR_METERING_SUMMATION_FORMATTING_ID, ZB_ZCL_ATTR_METERING_DEMAND_FORMATTING_ID,
  ZB_ZCL_ATTR_METERING_HISTORICAL_CONSUMPTION_FORMATTING_ID, ZB_ZCL_ATTR_METERING_METERING_DEVICE_TYPE_ID, ZB_ZCL_ATTR_METERING_SITE_ID_ID, ZB_ZCL_ATTR_METERING_METER_SERIAL_NUMBER_ID,
  ZB_ZCL_ATTR_METERING_ENERGY_CARRIER_UNIT_OF_MEASURE_ID, ZB_ZCL_ATTR_METERING_ENERGY_CARRIER_SUMMATION_FORMATTING_ID, ZB_ZCL_ATTR_METERING_ENERGY_CARRIER_DEMAND_FORMATTING_ID, ZB_ZCL_ATTR_METERING_TEMPERATURE_UNIT_OF_MEASURE_ID,
  ZB_ZCL_ATTR_METERING_TEMPERATURE_FORMATTING_ID, ZB_ZCL_ATTR_METERING_MODULE_SERIAL_NUMBER_ID, ZB_ZCL_ATTR_METERING_OPERATING_TARIFF_LABEL_DELIVERED_ID, ZB_ZCL_ATTR_METERING_OPERATING_TARIFF_LABEL_RECEIVED_ID,
  ZB_ZCL_ATTR_METERING_CUSTOMER_ID_NUMBER_ID, ZB_ZCL_ATTR_METERING_ALTERNATIVE_UNIT_OF_MEASURE_ID, ZB_ZCL_ATTR_METERING_ALTERNATIVE_DEMAND_FORMATTING_ID, ZB_ZCL_ATTR_METERING_ALTERNATIVE_CONSUMPTION_FORMATTING_ID,
  ZB_ZCL_ATTR_METERING_INSTANTANEOUS_DEMAND_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_HISTORICAL_CONSUMPTION, 0x00), ZB_ZCL_ATTR_METERING_CURRENT_DAY_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_START_TIME_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_START_TIME_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_VALUE_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_VALUE_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_PRESSURE_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MIN_PRESSURE_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_PRESSURE_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MIN_PRESSURE_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_ID, ZB_ZCL_ATTR_METERING_CURRENT_MONTH_MAX_DEMAND_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_YEAR_MAX_DEMAND_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_CURRENT_MONTH_MAX_ENERGY_CARRIER_DEMAND_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_MONTH_MIN_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_CURRENT_YEAR_MAX_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_CURRENT_YEAR_MIN_ENERGY_CARRIER_DEMAND_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_CONSUMPTION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_HISTORICAL_CONSUMPTION, 0x20),
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY3_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY3_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY4_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY4_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY5_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY5_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY6_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY6_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY7_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY7_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY8_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY8_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_WEEK_CONSUMPTION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_HISTORICAL_CONSUMPTION, 0x30), ZB_ZCL_ATTR_METERING_CURRENT_WEEK_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK2_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK2_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK3_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK3_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK4_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK4_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK5_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK5_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_MONTH_CONSUMPTION_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_HISTORICAL_CONSUMPTION, 0x40), ZB_ZCL_ATTR_METERING_CURRENT_MONTH_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH2_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH2_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH3_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH3_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH4_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH4_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH5_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH5_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH6_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH6_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH7_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH7_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH8_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH8_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH9_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH9_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH10_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH10_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH11_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH11_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH12_CONSUMPTION_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH12_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH13_CONSUMPTION_DELIVERED_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH13_CONSUMPTION_RECEIVED_ID, ZB_ZCL_ATTR_METERING_HISTORICAL_FREEZE_TIME_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_DELIVERED_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_DELIVERED_TIME_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_RECEIVED_ID, ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_RECEIVED_TIME_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_DELIVERED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_DELIVERED_TIME_ID,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_RECEIVED_ID, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_RECEIVED_TIME_ID, ZB_ZCL_ATTR_METERING_MAX_NUMBER_OF_PERIODS_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_LOAD_PROFILE_CONFIGURATION, 0x00), ZB_ZCL_ATTR_METERING_CURRENT_DEMAND_DELIVERED_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_SUPPLY_LIMIT, 0x00),
  ZB_ZCL_ATTR_METERING_DEMAND_LIMIT_ID, ZB_ZCL_ATTR_METERING_DEMAND_INTEGRATION_PERIOD_ID, ZB_ZCL_ATTR_METERING_NUMBER_OF_DEMAND_SUBINTERVALS_ID, ZB_ZCL_ATTR_METERING_DEMAND_LIMIT_ARM_DURATION_ID,
  ZB_ZCL_ATTR_METERING_LOAD_LIMIT_SUPPLY_STATE_ID, ZB_ZCL_ATTR_METERING_LOAD_LIMIT_COUNTER_ID, ZB_ZCL_ATTR_METERING_SUPPLY_TAMPER_STATE_ID, ZB_ZCL_ATTR_METERING_SUPPLY_DEPLETION_STATE_ID,
  ZB_ZCL_ATTR_METERING_SUPPLY_UNCONTROLLED_FLOW_STATE_ID, ZB_ZCL_ATTR_METERING_GENERIC_ALARM_MASK_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_ALARMS, 0x00), ZB_ZCL_ATTR_METERING_ELECTRICITY_ALARM_MASK_ID, ZB_ZCL_ATTR_METERING_GENERIC_FLOW_PRESSURE_ALARM_MASK_ID,
  ZB_ZCL_ATTR_METERING_WATER_SPECIFIC_ALARM_MASK_ID, ZB_ZCL_ATTR_METERING_HEAT_AND_COOLING_SPECIFIC_ALARM_MASK_ID, ZB_ZCL_ATTR_METERING_GAS_SPECIFIC_ALARM_MASK_ID, ZB_ZCL_ATTR_METERING_EXTENDED_GENERIC_ALARM_MASK_ID,
  ZB_ZCL_ATTR_METERING_MANUFACTURER_ALARM_MASK_ID, ZB_ZCL_ATTR_METERING_BILL_TO_DATE_DELIVERED = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_METER_BILLING, 0x00), ZB_ZCL_ATTR_METERING_BILL_TO_DATE_TIMESTAMP_DELIVERED, ZB_ZCL_ATTR_METERING_PROJECTED_BILL_DELIVERED,
  ZB_ZCL_ATTR_METERING_PROJECTED_BILL_TIME_STAMP_DELIVERED, ZB_ZCL_ATTR_METERING_BILL_DELIVERED_TRAILING_DIGIT, ZB_ZCL_ATTR_METERING_BILL_TO_DATE_RECEIVED = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_METER_BILLING, 0x10), ZB_ZCL_ATTR_METERING_BILL_TO_DATE_TIMESTAMP_RECEIVED,
  ZB_ZCL_ATTR_METERING_PROJECTED_BILL_RECEIVED, ZB_ZCL_ATTR_METERING_PROJECTED_BILL_TIME_STAMP_RECEIVED, ZB_ZCL_ATTR_METERING_BILL_RECEIVED_TRAILING_DIGIT, ZB_ZCL_ATTR_METERING_PROPOSED_CHANGE_SUPPLY_IMPLEMENTATION_TIME = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_SUPPLY_CONTROL, 0x00),
  ZB_ZCL_ATTR_METERING_PROPOSED_CHANGE_SUPPLY_STATUS, ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_THRESHOLD = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_SUPPLY_CONTROL, 0x10), ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_THRESHOLD_UNIT_OF_MEASURE, ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_MULTIPLIER,
  ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_DIVISOR, ZB_ZCL_ATTR_METERING_FLOW_STABILISATION_PERIOD, ZB_ZCL_ATTR_METERING_FLOW_MEASUREMENT_PERIOD, ZB_ZCL_ATTR_METERING_ALT_INSTANTANEOUS_DEMAND = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_ALTERNATIVE_HISTORICAL_CONSUMPTION, 0x00),
  ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_CONSUMPTION_DELIVERED, ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_CONSUMPTION_RECEIVED, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_CONSUMPTION_DELIVERED, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_CONSUMPTION_RECEIVED,
  ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_START_TIME_DELIVERED, ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_START_TIME_RECEIVED, ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_VALUE_DELIVERED, ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_VALUE_RECEIVED,
  ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_MAX_PRESSURE, ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_MIN_PRESSURE, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_MAX_PRESSURE, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_MIN_PRESSURE,
  ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_MAX_DEMAND, ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_MAX_DEMAND, ZB_ZCL_ATTR_METERING_CURRENT_MONTH_ALT_MAX_DEMAND, ZB_ZCL_ATTR_METERING_CURRENT_YEAR_ALT_MAX_DEMAND,
  ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_ALT_CONSUMPTION_DELIVERED = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_ALTERNATIVE_HISTORICAL_CONSUMPTION, 0x20), ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_ALT_CONSUMPTION_RECEIVED, ZB_ZCL_ATTR_METERING_CURRENT_WEEK_ALT_CONSUMPTION_DELIVERED = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_ALTERNATIVE_HISTORICAL_CONSUMPTION, 0x30), ZB_ZCL_ATTR_METERING_CURRENT_WEEK_ALT_CONSUMPTION_RECEIVED,
  ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_ALT_CONSUMPTION_DELIVERED, ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_ALT_CONSUMPTION_RECEIVED, ZB_ZCL_ATTR_METERING_CURRENT_MONTH_ALT_CONSUMPTION_DELIVERED = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_ALTERNATIVE_HISTORICAL_CONSUMPTION, 0x40), ZB_ZCL_ATTR_METERING_CURRENT_MONTH_ALT_CONSUMPTION_RECEIVED,
  ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_ALT_CONSUMPTION_DELIVERED, ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_ALT_CONSUMPTION_RECEIVED, ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q1_ID = ZB_ZCL_ATTR_SET_WITH_ATTR_ID(ZB_ZCL_METERING_SET_FOUR_QUADRANT_ELECTRICITY, 0x01), ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q2_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q3_ID, ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q4_ID, ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q1_ID, ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q2_ID,
  ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q3_ID, ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q4_ID
}
 Metering cluster server attributes. More...
 
enum  zb_zcl_metering_block_e {
  ZB_ZCL_METERING_BLOCK_NOT_USED = 0x00, ZB_ZCL_METERING_BLOCK_1 = 0x01, ZB_ZCL_METERING_BLOCK_2 = 0x02, ZB_ZCL_METERING_BLOCK_3 = 0x03,
  ZB_ZCL_METERING_BLOCK_4 = 0x04, ZB_ZCL_METERING_BLOCK_5 = 0x05, ZB_ZCL_METERING_BLOCK_6 = 0x06, ZB_ZCL_METERING_BLOCK_7 = 0x07,
  ZB_ZCL_METERING_BLOCK_8 = 0x08, ZB_ZCL_METERING_BLOCK_9 = 0x09, ZB_ZCL_METERING_BLOCK_10 = 0x0A, ZB_ZCL_METERING_BLOCK_11 = 0x0B,
  ZB_ZCL_METERING_BLOCK_12 = 0x0C, ZB_ZCL_METERING_BLOCK_13 = 0x0D, ZB_ZCL_METERING_BLOCK_14 = 0x0E, ZB_ZCL_METERING_BLOCK_15 = 0x0F,
  ZB_ZCL_METERING_BLOCK_16 = 0x10
}
 CurrentBlock attribute values More...
 
enum  zb_zcl_metering_supply_status_e { ZB_ZCL_SUPPLY_STATUS_OFF = 0x00, ZB_ZCL_SUPPLY_STATUS_ARMED = 0x01, ZB_ZCL_SUPPLY_STATUS_ON = 0x02 }
 SupplyStatus attribute values More...
 
enum  zb_zcl_metering_status_electricity_e {
  ZB_ZCL_METERING_ELECTRICITY_CHECK_METER = 1 << 0, ZB_ZCL_METERING_ELECTRICITY_LOW_BATTERY = 1 << 1, ZB_ZCL_METERING_ELECTRICITY_TAMPER_DETECT = 1 << 2, ZB_ZCL_METERING_ELECTRICITY_POWER_FAILURE = 1 << 3,
  ZB_ZCL_METERING_ELECTRICITY_POWER_QUALITY = 1 << 4, ZB_ZCL_METERING_ELECTRICITY_LEAK_DETECT = 1 << 5, ZB_ZCL_METERING_ELECTRICITY_SERVICE_DISCONNECT_OPEN = 1 << 6, ZB_ZCL_METERING_ELECTRICITY_RESERVED = 1 << 7
}
 Bit mapping of the Status attribute (Electricity) More...
 
enum  zb_zcl_metering_status_gas_e {
  ZB_ZCL_METERING_GAS_CHECK_METER = 1 << 0, ZB_ZCL_METERING_GAS_LOW_BATTERY = 1 << 1, ZB_ZCL_METERING_GAS_TAMPER_DETECT = 1 << 2, ZB_ZCL_METERING_GAS_RESERVED = 1 << 3,
  ZB_ZCL_METERING_GAS_LOW_PRESSURE = 1 << 4, ZB_ZCL_METERING_GAS_LEAK_DETECT = 1 << 5, ZB_ZCL_METERING_GAS_SERVICE_DISCONNECT = 1 << 6, ZB_ZCL_METERING_GAS_REVERSE_FLOW = 1 << 7
}
 Bit mapping of the Status attribute (Gas) More...
 
enum  zb_zcl_metering_status_water_e {
  ZB_ZCL_METERING_WATER_CHECK_METER = 1 << 0, ZB_ZCL_METERING_WATER_LOW_BATTERY = 1 << 1, ZB_ZCL_METERING_WATER_TAMPER_DETECT = 1 << 2, ZB_ZCL_METERING_WATER_PIPE_EMTPY = 1 << 3,
  ZB_ZCL_METERING_WATER_LOW_PRESSURE = 1 << 4, ZB_ZCL_METERING_WATER_LEAK_DETECT = 1 << 5, ZB_ZCL_METERING_WATER_SERVICE_DISCONNECT = 1 << 6, ZB_ZCL_METERING_WATER_REVERSE_FLOW = 1 << 7
}
 Bit mapping of the Status attribute (Water) More...
 
enum  zb_zcl_metering_status_heat_cooling_e {
  ZB_ZCL_METERING_HCOOL_CHECK_METER = 1 << 0, ZB_ZCL_METERING_HCOOL_LOW_BATTERY = 1 << 1, ZB_ZCL_METERING_HCOOL_TAMPER_DETECT = 1 << 2, ZB_ZCL_METERING_HCOOL_TEMPERATURE_SENSOR = 1 << 3,
  ZB_ZCL_METERING_HCOOL_BURST_DETECT = 1 << 4, ZB_ZCL_METERING_HCOOL_LEAK_DETECT = 1 << 5, ZB_ZCL_METERING_HCOOL_SERVICE_DISCONNECT = 1 << 6, ZB_ZCL_METERING_HCOOL_FLOW_SENSOR = 1 << 7
}
 Bit mapping of the Status attribute (Heat and Cooling) More...
 
enum  zb_zcl_metering_extstatus_general_e {
  ZB_ZCL_METERING_METER_COVER_REMOVED = 1 << 0, ZB_ZCL_METERING_STRONG_MAGNETIC_FIELD_DETECTED = 1 << 1, ZB_ZCL_METERING_BATTERY_FAILURE = 1 << 2, ZB_ZCL_METERING_PROGRAM_MEMORY_ERROR = 1 << 3,
  ZB_ZCL_METERING_RAM_ERROR = 1 << 4, ZB_ZCL_METERING_NV_MEMORY_ERROR = 1 << 5, ZB_ZCL_METERING_MEASUREMENT_SYSTEM_ERROR = 1 << 6, ZB_ZCL_METERING_WATCHDOG_ERROR = 1 << 7,
  ZB_ZCL_METERING_SUPPLY_DISCONNECT_FAILURE = 1 << 8, ZB_ZCL_METERING_SUPPLY_CONNECT_FAILURE = 1 << 9, ZB_ZCL_METERING_MEASUREMENT_SW_CHANGED = 1 << 10, ZB_ZCL_METERING_CLOCK_INVALID = 1 << 11,
  ZB_ZCL_METERING_TEMPERATURE_EXCEEDED = 1 << 12, ZB_ZCL_METERING_MOISTURE_DETECTED = 1 << 13
}
 Bit mapping of the ExtendedStatus attribute (General Flags) More...
 
enum  zb_zcl_metering_extstatus_electricity_e {
  ZB_ZCL_METERING_ELECTRICITY_TERMINAL_COVER_REMOVED = 1L << 24, ZB_ZCL_METERING_ELECTRICITY_INCORRECT_POLARITY = 1L << 25, ZB_ZCL_METERING_ELECTRICITY_CURRENT_WITH_NO_VOLTAGE = 1L << 26, ZB_ZCL_METERING_ELECTRICITY_LIMIT_THRESHOLD_EXCEEDED = 1L << 27,
  ZB_ZCL_METERING_ELECTRICITY_UNDER_VOLTAGE = 1L << 28, ZB_ZCL_METERING_ELECTRICITY_OVER_VOLTAGE = 1L << 29, ZB_ZCL_METERING_ELECTRICITY_BIDIRECTION_OPERATION = 1L << 30, ZB_ZCL_METERING_ELECTRICITY_ACTIVE_POWER_RECEIVED = -2147483648LL
}
 Bit mapping of the ExtendedStatus attribute (Electricity Meter specific Flags) More...
 
enum  zb_zcl_metering_extstatus_gas_e { ZB_ZCL_METERING_GAS_BATTERY_COVER_REMOVED = 1L << 24, ZB_ZCL_METERING_GAS_TILT_TAMPER = 1L << 25, ZB_ZCL_METERING_GAS_EXCESS_FLOW = 1L << 26 }
 Bit mapping of the ExtendedStatus attribute (Gas Meter specific Flags) More...
 
enum  zb_zcl_metering_low_medium_high_status_e { ZB_ZCL_METERING_STATUS_LOW = 0x00, ZB_ZCL_METERING_STATUS_MEDIUM = 0x01, ZB_ZCL_METERING_STATUS_HIGH = 0x02 }
 LowMediumHighStatus Attribute values More...
 
enum  zb_zcl_metering_unit_of_measure_e {
  ZB_ZCL_METERING_UNIT_KW_KWH_BINARY = 0x00, ZB_ZCL_METERING_UNIT_M3_M3H_BINARY = 0x01, ZB_ZCL_METERING_UNIT_FT3_FT3H_BINARY = 0x02, ZB_ZCL_METERING_UNIT_CCF_CCFH_BINARY = 0x03,
  ZB_ZCL_METERING_UNIT_USGL_USGLH_BINARY = 0x04, ZB_ZCL_METERING_UNIT_IMPGL_IMPGLH_BINARY = 0x05, ZB_ZCL_METERING_UNIT_BTU_BTUH_BINARY = 0x06, ZB_ZCL_METERING_UNIT_L_LH_BINARY = 0x07,
  ZB_ZCL_METERING_UNIT_KPAG_BINARY = 0x08, ZB_ZCL_METERING_UNIT_KPAA_BINARY = 0x09, ZB_ZCL_METERING_UNIT_MCF_MCFH_BINARY = 0x0A, ZB_ZCL_METERING_UNIT_UNITLESS_BINARY = 0x0B,
  ZB_ZCL_METERING_UNIT_MJ_MJS_BINARY = 0x0C, ZB_ZCL_METERING_UNIT_KVAR_KVARH_BINARY = 0x0D, ZB_ZCL_METERING_UNIT_BINARY_RESERVED = 0x0E, ZB_ZCL_METERING_UNIT_KW_KWH_BCD = 0x80,
  ZB_ZCL_METERING_UNIT_M3_M3H_BCD = 0x81, ZB_ZCL_METERING_UNIT_FT3_FT3H_BCD = 0x82, ZB_ZCL_METERING_UNIT_CCF_CCFH_BCD = 0x83, ZB_ZCL_METERING_UNIT_USGL_USGLH_BCD = 0x84,
  ZB_ZCL_METERING_UNIT_IMPGL_IMPGLH_BCD = 0x85, ZB_ZCL_METERING_UNIT_BTU_BTUH_BCD = 0x86, ZB_ZCL_METERING_UNIT_L_LH_BCD = 0x87, ZB_ZCL_METERING_UNIT_KPAG_BCD = 0x88,
  ZB_ZCL_METERING_UNIT_KPAA_BCD = 0x89, ZB_ZCL_METERING_UNIT_MCF_MCFH_BCD = 0x8A, ZB_ZCL_METERING_UNIT_UNITLESS_BCD = 0x8B, ZB_ZCL_METERING_UNIT_MJ_MJS_BCD = 0x8C,
  ZB_ZCL_METERING_UNIT_KVAR_KVARH_BCD = 0x8D, ZB_ZCL_METERING_UNIT_BCD_RESERVED = 0x8E
}
 UnitOfMeasure Attribute values More...
 
enum  zb_zcl_metering_device_type_e {
  ZB_ZCL_METERING_ELECTRIC_METERING = 0, ZB_ZCL_METERING_GAS_METERING = 1, ZB_ZCL_METERING_WATER_METERING = 2, ZB_ZCL_METERING_PRESSURE_METERING = 4,
  ZB_ZCL_METERING_HEAT_METERING = 5, ZB_ZCL_METERING_COOLING_METERING = 6, ZB_ZCL_METERING_EUMD = 7, ZB_ZCL_METERING_PV_GENERATION_METERING = 8,
  ZB_ZCL_METERING_WIND_TURBINE_GENERATION_METERING = 9, ZB_ZCL_METERING_WATER_TURBINE_GENERATION_METERING = 10, ZB_ZCL_METERING_MICRO_GENERATION_METERING = 11, ZB_ZCL_METERING_SOLAR_HOT_WATER_GENERATION_METERING = 12,
  ZB_ZCL_METERING_ELECTRIC_METERING_ELEMENT_PHASE1 = 13, ZB_ZCL_METERING_ELECTRIC_METERING_ELEMENT_PHASE2 = 14, ZB_ZCL_METERING_ELECTRIC_METERING_ELEMENT_PHASE3 = 15, ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING = 127,
  ZB_ZCL_METERING_MIRRORED_GAS_METERING = 128, ZB_ZCL_METERING_MIRRORED_WATER_METERING = 129, ZB_ZCL_METERING_MIRRORED_PRESSURE_METERING = 131, ZB_ZCL_METERING_MIRRORED_HEAT_METERING = 132,
  ZB_ZCL_METERING_MIRRORED_COOLING_METERING = 133, ZB_ZCL_METERING_MIRRORED_EUMD = 134, ZB_ZCL_METERING_MIRRORED_PV_GENERATION_METERING = 135, ZB_ZCL_METERING_MIRRORED_WIND_TURBINE_GENERATION_METERING = 136,
  ZB_ZCL_METERING_MIRRORED_WATER_TURBINE_GENERATION_METERING = 137, ZB_ZCL_METERING_MIRRORED_MICRO_GENERATION_METERING = 138, ZB_ZCL_METERING_MIRRORED_SOLAR_HOT_WATER_GENERATION_METERING = 139, ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING_ELEMENT_PHASE1 = 140,
  ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING_ELEMENT_PHASE2 = 141, ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING_ELEMENT_PHASE3 = 142, ZB_ZCL_METERING_RESERVED = 143
}
 DeviceType Attribute values More...
 
enum  zb_zcl_metering_temperature_unit_of_measure_e {
  ZB_ZCL_METERING_TEMPERATURE_UNIT_KELVIN_BINARY = 0x00, ZB_ZCL_METERING_TEMPERATURE_UNIT_CELSIUS_BINARY = 0x01, ZB_ZCL_METERING_TEMPERATURE_UNIT_FAHRENHEIT_BINARY = 0x02, ZB_ZCL_METERING_TEMPERATURE_UNIT_KELVIN_BCD = 0x80,
  ZB_ZCL_METERING_TEMPERATURE_UNIT_CELSIUS_BCD = 0x81, ZB_ZCL_METERING_TEMPERATURE_UNIT_FAHRENHEIT_BCD = 0x82
}
 TemperatureUnitOfMeasure Attribute values More...
 
enum  zb_zcl_metering_generic_alarm_group_e {
  ZB_ZCL_METERING_ALARM_CHECK_METER = 0x00, ZB_ZCL_METERING_ALARM_LOW_BATTERY = 0x01, ZB_ZCL_METERING_ALARM_TAMPER_DETECT = 0x02, ZB_ZCL_METERING_ALARM_ELECTRICITY_POWER_FAILURE = 0x03,
  ZB_ZCL_METERING_ALARM_WATER_PIPE_EMPTY = 0x03, ZB_ZCL_METERING_ALARM_HEAT_TEMPERATURE_SENSOR = 0x03, ZB_ZCL_METERING_ALARM_COOLING_TEMPERATURE_SENSOR = 0x03, ZB_ZCL_METERING_ALARM_ELECTRICITY_POWER_QUALITY = 0x04,
  ZB_ZCL_METERING_ALARM_GAS_LOW_PRESSURE = 0x04, ZB_ZCL_METERING_ALARM_WATER_LOW_PRESSURE = 0x04, ZB_ZCL_METERING_ALARM_HEAT_BURST_DETECT = 0x04, ZB_ZCL_METERING_ALARM_COOLING_BURST_DETECT = 0x04,
  ZB_ZCL_METERING_ALARM_LEAK_DETECT = 0x05, ZB_ZCL_METERING_ALARM_SERVICE_DISCONNECT = 0x06, ZB_ZCL_METERING_ALARM_ELECTRICITY_RESERVED = 0x07, ZB_ZCL_METERING_ALARM_GAS_REVERSE_FLOW = 0x07,
  ZB_ZCL_METERING_ALARM_WATER_REVERSE_FLOW = 0x07, ZB_ZCL_METERING_ALARM_HEAT_FLOW_SENSOR = 0x07, ZB_ZCL_METERING_ALARM_COOLING_FLOW_SENSOR = 0x07, ZB_ZCL_METERING_ALARM_METER_COVER_REMOVED = 0x08,
  ZB_ZCL_METERING_ALARM_METER_COVER_CLOSED = 0x09, ZB_ZCL_METERING_ALARM_STRONG_MAGNETIC_FIELD = 0x0A, ZB_ZCL_METERING_ALARM_NO_STRONG_MAGNETIC_FIELD = 0x0B, ZB_ZCL_METERING_ALARM_BATTERY_FAILURE = 0x0C,
  ZB_ZCL_METERING_ALARM_PROGRAM_MEMORY_ERROR = 0x0D, ZB_ZCL_METERING_ALARM_RAM_ERROR = 0x0E, ZB_ZCL_METERING_ALARM_NV_MEMORY_ERROR = 0x0F
}
 
enum  zb_zcl_metering_electricity_alarm_group_e {
  ZB_ZCL_METERING_ALARM_LOW_VOLTAGE_L1 = 0x10, ZB_ZCL_METERING_ALARM_HIGH_VOLTAGE_L1 = 0x11, ZB_ZCL_METERING_ALARM_LOW_VOLTAGE_L2 = 0x12, ZB_ZCL_METERING_ALARM_HIGH_VOLTAGE_L2 = 0x13,
  ZB_ZCL_METERING_ALARM_LOW_VOLTAGE_L3 = 0x14, ZB_ZCL_METERING_ALARM_HIGH_VOLTAGE_L3 = 0x15, ZB_ZCL_METERING_ALARM_OVER_CURRENT_L1 = 0x16, ZB_ZCL_METERING_ALARM_OVER_CURRENT_L2 = 0x17,
  ZB_ZCL_METERING_ALARM_OVER_CURRENT_L3 = 0x18, ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_LOW_L1 = 0x19, ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_HIGH_L1 = 0x1A, ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_LOW_L2 = 0x1B,
  ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_HIGH_L2 = 0x1C, ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_LOW_L3 = 0x1D, ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_HIGH_L3 = 0x1E, ZB_ZCL_METERING_ALARM_GROUND_FAULT = 0x1F,
  ZB_ZCL_METERING_ALARM_ELECTRIC_TAMPER_DETECT = 0x20, ZB_ZCL_METERING_ALARM_INCORRECT_POLARITY = 0x21, ZB_ZCL_METERING_ALARM_CURRENT_NO_VOLTAGE = 0x22, ZB_ZCL_METERING_ALARM_UNDER_VOLTAGE = 0x23,
  ZB_ZCL_METERING_ALARM_OVER_VOLTAGE = 0x24, ZB_ZCL_METERING_ALARM_NORMAL_VOLTAGE = 0x25, ZB_ZCL_METERING_ALARM_PF_BELOW_THRESHOLD = 0x26, ZB_ZCL_METERING_ALARM_PF_ABOVE_THRESHOLD = 0x27,
  ZB_ZCL_METERING_ALARM_TERMINAL_COVER_REMOVED = 0x28, ZB_ZCL_METERING_ALARM_TERMINAL_COVER_CLOSED = 0x29
}
 
enum  zb_zcl_metering_generic_flow_pressure_alarm_group_e {
  ZB_ZCL_METERING_ALARM_BURST_DETECT = 0x30, ZB_ZCL_METERING_ALARM_PRESSURE_TOO_LOW = 0x31, ZB_ZCL_METERING_ALARM_PRESSURE_TOO_HIGH = 0x32, ZB_ZCL_METERING_ALARM_FLOW_SENSOR_COMMUNICATION_ERROR = 0x33,
  ZB_ZCL_METERING_ALARM_FLOW_SENSOR_MEASUREMENT_FAULT = 0x34, ZB_ZCL_METERING_ALARM_FLOW_SENSOR_REVERSE_FLOW = 0x35, ZB_ZCL_METERING_ALARM_FLOW_SENSOR_AIR_DETECT = 0x36, ZB_ZCL_METERING_ALARM_PIPE_EMPTY = 0x37
}
 
enum  zb_zcl_metering_heat_and_cooling_specific_alarm_group_e { ZB_ZCL_METERING_ALARM_INLET_TEMPERATURE_SENSOR_FAULT = 0x50, ZB_ZCL_METERING_ALARM_OUTLET_TEMPERATURE_SENSOR_FAULT = 0x51 }
 
enum  zb_zcl_metering_gas_specific_alarm_group_e {
  ZB_ZCL_METERING_ALARM_TILT_TAMPER = 0x60, ZB_ZCL_METERING_ALARM_BATTERY_COVER_REMOVED = 0x61, ZB_ZCL_METERING_ALARM_BATTERY_COVER_CLOSED = 0x62, ZB_ZCL_METERING_ALARM_EXCESS_FLOW = 0x63,
  ZB_ZCL_METERING_ALARM_TILT_TAMPER_ENDED = 0x64
}
 
enum  zb_zcl_metering_extended_generic_alarm_group_e {
  ZB_ZCM_METERING_ALARM_MEASUREMENT_SYSTEM_ERROR = 0x70, ZB_ZCM_METERING_ALARM_WATCHDOG_ERROR = 0x71, ZB_ZCM_METERING_ALARM_SUPPLY_DISCONNECT_FAILURE = 0x72, ZB_ZCM_METERING_ALARM_SUPPLY_CONNECT_FAILURE = 0x73,
  ZB_ZCM_METERING_ALARM_MEASUREMENT_SOFTWARE_CHANGED = 0x74, ZB_ZCM_METERING_ALARM_DST_ENABLED = 0x75, ZB_ZCM_METERING_ALARM_DST_DISABLED = 0x76, ZB_ZCM_METERING_ALARM_CLOCK_ADJ_BACKWARD = 0x77,
  ZB_ZCM_METERING_ALARM_CLOCK_ADJ_FORWARD = 0x78, ZB_ZCM_METERING_ALARM_CLOCK_INVALID = 0x79, ZB_ZCM_METERING_ALARM_COMMUNICATION_ERROR_HAN = 0x7A, ZB_ZCM_METERING_ALARM_COMMUNICATION_OK_HAN = 0x7B,
  ZB_ZCM_METERING_ALARM_METER_FRAUD_ATTEMPT = 0x7C, ZB_ZCM_METERING_ALARM_POWER_LOSS = 0x7D, ZB_ZCM_METERING_ALARM_UNUSUAL_HAN_TRAFFIC = 0x7E, ZB_ZCM_METERING_ALARM_UNEXPECTED_CLOCK_CHANGE = 0x7F,
  ZB_ZCM_METERING_ALARM_COMMS_USING_UNAUTHENTICATED_COMPONENT = 0x80, ZB_ZCM_METERING_ALARM_ERROR_REG_CLEAR = 0x81, ZB_ZCM_METERING_ALARM_ALARM_REG_CLEAR = 0x82, ZB_ZCM_METERING_ALARM_UNEXPECTED_HW_RESET = 0x83,
  ZB_ZCM_METERING_ALARM_UNEXPECTED_PROGRAM_EXECUTION = 0x84, ZB_ZCM_METERING_ALARM_EVENTLOG_CLEARED = 0x85, ZB_ZCM_METERING_ALARM_LIMIT_THRESHOLD_EXCEEDED = 0x86, ZB_ZCM_METERING_ALARM_LIMIT_THRESHOLD_OK = 0x87,
  ZB_ZCM_METERING_ALARM_LIMIT_THRESHOLD_CHANGED = 0x88, ZB_ZCM_METERING_ALARM_MAXIMUM_DEMAND_EXCEEDED = 0x89, ZB_ZCM_METERING_ALARM_PROFILE_CLEARED = 0x8A, ZB_ZCM_METERING_ALARM_SAMPLING_BUFFER_CLEARED = 0x8B,
  ZB_ZCM_METERING_ALARM_BATTERY_WARNING = 0x8C, ZB_ZCM_METERING_ALARM_WRONG_SIGNATURE = 0x8D, ZB_ZCM_METERING_ALARM_NO_SIGNATURE = 0x8E, ZB_ZCM_METERING_ALARM_UNAUTHORISED_ACTION_FROM_HAN = 0x8F,
  ZB_ZCM_METERING_ALARM_FAST_POLLING_START = 0x90, ZB_ZCM_METERING_ALARM_FAST_POLLING_END = 0x91, ZB_ZCM_METERING_ALARM_METER_REPORTING_INTERVAL_CHANGED = 0x92, ZB_ZCM_METERING_ALARM_DISCONNECT_DUE_TO_LOAD_LIMIT = 0x93,
  ZB_ZCM_METERING_ALARM_METER_SUPPLY_STATUS_REGISTER_CHANGED = 0x94, ZB_ZCM_METERING_ALARM_METER_ALARM_STATUS_REGISTER_CHANGED = 0x95, ZB_ZCM_METERING_ALARM_EXTENDED_METER_ALARM_STATUS_REGISTER_CHANGED = 0x96
}
 
enum  zb_zcl_metering_manufacturer_specific_alarm_group_e {
  ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_A = 0xB0, ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_B = 0xB1, ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_C = 0xB2, ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_D = 0xB3,
  ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_E = 0xB4, ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_F = 0xB5, ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_G = 0xB6, ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_H = 0xB7,
  ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_I = 0xB8
}
 
enum  zb_zcl_metering_service_disconnect_reasons_e {
  ZB_ZCL_METERING_REASON_ON = 0x00, ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVER_POWER = 0x01, ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVER_VOLTAGE = 0x02, ZB_ZCL_METERING_REASON_OFF_DUE_TO_REMOTE_DNO_LOAD_CONTROL = 0x03,
  ZB_ZCL_METERING_REASON_OFF_BY_OTHER_REMOTE_COMMAND = 0x04, ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVERHEATING_SHORT_CIRCUIT = 0x05, ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVERHEATING_OTHER = 0x06
}
 

Detailed Description

Enumeration Type Documentation

◆ zb_zcl_metering_attr_e

Metering cluster server attributes.

Enumerator
ZB_ZCL_ATTR_METERING_CURRENT_SUMMATION_DELIVERED_ID 

CurrentSummationDelivered attribute represents the most recent summed value of Energy, Gas, or Water delivered and consumed in the premises.

ZB_ZCL_ATTR_METERING_CURRENT_SUMMATION_RECEIVED_ID 

CurrentSummationReceived attribute represents the most recent summed value of Energy, Gas, or Water generated and delivered from the premises.

ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_DELIVERED_ID 

CurrentMaxDemandDelivered attribute represents the maximum demand or rate of delivered value of Energy, Gas, or Water being utilized at the premises.

ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_RECEIVED_ID 

CurrentMaxDemandReceived attribute represents the maximum demand or rate of received value of Energy, Gas, or Water being utilized by the utility.

ZB_ZCL_ATTR_METERING_DFT_SUMMATION_ID 

DFTSummation attribute represents a snapshot of attribute CurrentSummationDelivered captured at the time indicated by attribute DailyFreezeTime.

ZB_ZCL_ATTR_METERING_DAILY_FREEZE_TIME_ID 

DailyFreezeTime attribute represents the time of day when DFTSummation is captured (hour and minutes).

ZB_ZCL_ATTR_METERING_POWER_FACTOR_ID 

PowerFactor attribute contains the Average Power Factor ratio in 1/100ths. Valid values are 0 to 99.

ZB_ZCL_ATTR_METERING_READING_SNAPSHOT_TIME_ID 

ReadingSnapshotTime attribute represents the last time all of the CurrentSummationDelivered, CurrentSummationReceived, CurrentMaxDemandDelivered and CurrentMaxDemandReceived attributes that are supported by the device were updated.

ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_DELIVERED_TIME_ID 

CurrentMaxDemandDeliveredTime attribute represents the represents the time when CurrentMaxDemandDelivered reading was captured.

ZB_ZCL_ATTR_METERING_CURRENT_MAX_DEMAND_RECEIVED_TIME_ID 

CurrentMaxDemandReceivedTime attribute represents the time when CurrentMaxDemandReceived reading was captured.

ZB_ZCL_ATTR_METERING_DEFAULT_UPDATE_PERIOD_ID 

DefaultUpdatePeriod attribute represents the interval (seconds) at which the InstantaneousDemand attribute is updated when not in fast poll mode.

ZB_ZCL_ATTR_METERING_FAST_POLL_UPDATE_PERIOD_ID 

FastPollUpdatePeriod attribute represents the interval (seconds) at which the InstantaneousDemand attribute is updated when in fast poll mode.

ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_PERIOD_CONSUMPTION_DELIVERED_ID 

CurrentBlockPeriodConsumptionDelivered attribute represents the most recent summed value of Energy, Gas or Water delivered and consumed in the premises during the Block Tariff Period.

ZB_ZCL_ATTR_METERING_DAILY_CONSUMPTION_TARGET_ID 

DailyConsumptionTarget attribute is a daily target consumption amount that can be displayed to the consumer on a HAN device, with the intent that it can be used to compare to actual daily consumption.

ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_ID 

CurrentBlock attribute is an 8-bit Enumeration which indicates the currently active block, when Block Tariffs are enabled.

See also
zb_zcl_metering_block_e
ZB_ZCL_ATTR_METERING_PROFILE_INTERVAL_PERIOD_ID 

ProfileIntervalPeriod attribute is currently included in the GetProfileResponse command payload, but does not appear in an attribute set. It represents the interval or time frame used to capture metered Energy, Gas, and Water consumption for profiling purposes.

ZB_ZCL_ATTR_METERING_PRESET_READING_TIME_ID 

PresetReadingTime attribute

ZB_ZCL_ATTR_METERING_SUMMATION_DELIVERED_PER_REPORT_ID 

SummationDeliveredPerReport attribute represents the summation increment per report from the water or gas meter.

ZB_ZCL_ATTR_METERING_FLOW_RESTRICTION_ID 

FlowRestriction attribute represents the volume per minute limit set in the flow restrictor. This applies to water but not for gas. A setting of 0xFF indicates this feature is disabled.

ZB_ZCL_ATTR_METERING_SUPPLY_STATUS_ID 

SupplyStatus attribute represents the state of the supply at the customer's premises.

See also
zb_zcl_metering_supply_status_e
ZB_ZCL_ATTR_METERING_CURRENT_INLET_ENERGY_CARRIER_SUMMATION_ID 

CurrentInletEnergyCarrierSummation attribute is the current integrated volume of a given energy carrier measured on the inlet.

ZB_ZCL_ATTR_METERING_CURRENT_OUTLET_ENERGY_CARRIER_SUMMATION_ID 

CurrentOutletEnergyCarrierSummation attribute is the current integrated volume of a given energy carrier measured on the outlet.

ZB_ZCL_ATTR_METERING_INLET_TEMPERATURE_ID 

InletTemperature attribute is the temperature measured on the energy carrier inlet.

ZB_ZCL_ATTR_METERING_OUTLET_TEMPERATURE_ID 

OutletTemperature attribute is the temperature measured on the energy carrier outlet.

ZB_ZCL_ATTR_METERING_CONTROL_TEMPERATURE_ID 

ControlTemperature attribute is a reference temperature measured on the meter used to validate the Inlet/Outlet temperatures.

ZB_ZCL_ATTR_METERING_CURRENT_INLET_ENERGY_CARRIER_DEMAND_ID 

CurrentInletEnergyCarrierDemand attribute is the current absolute demand on the energy carrier inlet.

ZB_ZCL_ATTR_METERING_CURRENT_OUTLET_ENERGY_CARRIER_DEMAND_ID 

CurrentOutletEnergyCarrierDemand attribute is the current absolute demand on the energy carrier outlet.

ZB_ZCL_ATTR_METERING_PREVIOUS_BLOCK_PERIOD_CONSUMPTION_DELIVERED_ID 

PreviousBlockPeriodConsumptionDelivered attribute represents the total value of Energy, Gas or Water delivered and consumed in the premises at the end of the previous Block Tariff period.

ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_PERIOD_CONSUMPTION_RECEIVED_ID 

CurrentBlockPeriodConsumptionReceived attribute represents the most recent summed value of Energy, Gas or Water received by the energy supplier from the premises during the Block Tariff Period.

ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_RECEIVED_ID 

CurrentBlockReceived attribute is an 8-bit Enumeration which indicates the currently active block, when Block Tariffs are enabled.

ZB_ZCL_ATTR_METERING_DFT_SUMMATION_RECEIVED_ID 

DFTSummationReceived attribute represents a snapshot of attribute CurrentSummationReceived captured at the time indicated by the DailyFreezeTime attribute.

ZB_ZCL_ATTR_METERING_ACTIVE_REGISTER_TIER_DELIVERED_ID 

ActiveRegisterTierDelivered attribute indicates the current register tier that the energy consumed is being accumulated against.

See also
SE 1.4 spec, table D.98.
ZB_ZCL_ATTR_METERING_ACTIVE_REGISTER_TIER_RECEIVED_ID 

ActiveRegisterTierReceived attribute indicates the current register tier that the energy generated is being accumulated against.

See also
SE 1.4 spec, table D.101.
ZB_ZCL_ATTR_METERING_LAST_BLOCK_SWITCH_TIME_ID 

LastBlockSwitchTime attribute allows other devices to determine the time at which a meter switches from one block to another.

ZB_ZCL_ATTR_METERING_NUMBER_OF_TIERS_IN_USE 

NumberofTiersInUse

ZB_ZCL_ATTR_METERING_CURRENT_TIER1_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER1_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER2_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER2_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER3_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER3_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER4_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER4_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER5_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER5_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER6_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER6_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER7_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER7_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER8_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER8_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER9_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER9_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER10_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER10_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER11_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER11_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER12_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER12_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER13_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER13_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER14_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER14_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER15_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER15_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER16_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER16_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER17_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER17_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER18_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER18_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER19_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER19_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER20_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER20_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER21_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER21_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER22_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER22_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER23_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER23_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER24_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER24_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER25_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER25_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER26_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER26_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER27_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER27_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER28_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER28_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER29_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER29_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER30_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER30_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER31_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER31_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER32_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER32_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER33_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER33_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER34_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER34_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER35_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER35_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER36_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER36_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER37_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER37_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER38_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER38_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER39_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER39_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER40_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER40_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER41_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER41_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER42_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER42_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER43_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER43_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER44_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER44_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER45_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER45_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER46_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER46_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER47_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER47_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER48_SUMMATION_DELIVERED_ID 

CurrentTierNSummationDelivered attributes represent the most recent summed value of Energy, Gas, or Water delivered to the premises at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CURRENT_TIER48_SUMMATION_RECEIVED_ID 

CurrentTierNSummationReceived attributes represent the most recent summed value of Energy, Gas, or Water provided by the premises (i.e. received by the utility from the customer) at a specific price tier as defined by a TOU schedule or a real time pricing period.

ZB_ZCL_ATTR_METERING_CPP1_SUMMATION_DELIVERED_ID 

CPP1SummationDelivered attribute represents the most recent summed value of Energy, Gas, or Water delivered to the premises (i.e. delivered to the customer from the utility) while Critical Peak Price CPP1 was being applied.

ZB_ZCL_ATTR_METERING_CPP2_SUMMATION_DELIVERED_ID 

CPP2SummationDelivered attribute represents the most recent summed value of Energy, Gas, or Water delivered to the premises (i.e. delivered to the customer from the utility) while Critical Peak Price CPP2 was being applied.

ZB_ZCL_ATTR_METERING_STATUS_ID 

Status attribute provides indicators reflecting the current error conditions found by the metering device. Status depends on the device type.

See also
zb_zcl_metering_status_electricity_e
zb_zcl_metering_status_gas_e
zb_zcl_metering_status_water_e
zb_zcl_metering_status_heat_cooling_e
ZB_ZCL_ATTR_METERING_REMAINING_BATTERY_LIFE_ID 

RemainingBatteryLife attribute represents the estimated remaining life of the battery in % of capacity. A setting of 0xFF indicates this feature is disabled.

ZB_ZCL_ATTR_METERING_HOURS_IN_OPERATION_ID 

HoursInOperation attribute is a counter that increments once every hour during operation.

ZB_ZCL_ATTR_METERING_HOURS_IN_FAULT_ID 

HoursInFault attribute is a counter that increments once every hour when the device is in operation with a fault detected.

ZB_ZCL_ATTR_METERING_EXTENDED_STATUS_ID 

ExtendedStatus attribute reflects the state of items in a meter that the standard Status attribute cannot show. The Extended Status BitMap is split into two groups of flags: general flags and metering type specific flags.

See also
zb_zcl_metering_extstatus_general_e
zb_zcl_metering_extstatus_electricity_e
zb_zcl_metering_extstatus_gas_e
ZB_ZCL_ATTR_METERING_REMAINING_BATTERY_LIFE_DAYS_ID 

RemainingBatteryLifeInDays attribute represents the estimated remaining life of the battery in days of capacity. The range is 0 - 0xFFFE, where 0xFFFF represents 'Invalid', 'Unused' and 'Disabled'.

ZB_ZCL_ATTR_METERING_CURRENT_METER_ID_ID 

CurrentMeterID attribute is the current id for the Meter. This could be the current firmware version supported on the meter.

ZB_ZCL_ATTR_METERING_AMBIENT_CONSUMPTION_INDICATOR_ID 

AmbientConsumptionIndicator attribute is an 8-bit enumeration which provides a simple indication (Low/Medium/High) of the amount of a commodity being consumed within the premises.

See also
zb_zcl_metering_low_medium_high_status_e.
ZB_ZCL_ATTR_METERING_SERVICE_DISCONNECT_REASON_ID 

The Service Disconnect Reason attribute is an 8-bit enumeration which indicates why the supply to the premises has been disconnected

ZB_ZCL_ATTR_METERING_LINKY_MODE_OF_OPERATION_ID 

The LinkyModeOfOperation attribute is specific to Linky devices. It consists of a single flag (bit 0) which shall be set to FALSE (0) when in 'Simple' Mode and set to TRUE (1) when in Advanced Mode. Bits 1 to 7 are reserved.

ZB_ZCL_ATTR_METERING_UNIT_OF_MEASURE_ID 

UnitOfMeasure attribute provides a label for the Energy, Gas, or Water being measured by the metering device.

See also
zb_zcl_metering_unit_of_measure_e
ZB_ZCL_ATTR_METERING_MULTIPLIER_ID 

Multiplier attribute provides a value to be multiplied against a raw or uncompensated sensor count of Energy, Gas, or Water being measured by the metering device.

ZB_ZCL_ATTR_METERING_DIVISOR_ID 

Divisor attribute provides a value to divide the results of applying the Multiplier Attribute against a raw or uncompensated sensor count of Energy, Gas, or Water being measured by the metering device.

ZB_ZCL_ATTR_METERING_SUMMATION_FORMATTING_ID 

SummationFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Summation Information Set of attributes.

ZB_ZCL_ATTR_METERING_DEMAND_FORMATTING_ID 

DemandFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Demand-related attributes.

ZB_ZCL_ATTR_METERING_HISTORICAL_CONSUMPTION_FORMATTING_ID 

HistoricalConsumptionFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Historical Consumption Set of attributes.

ZB_ZCL_ATTR_METERING_METERING_DEVICE_TYPE_ID 

MeteringDeviceType attribute provides a label for identifying the type of metering device present (Energy, Gas, Water, Thermal, Heat, Cooling, and mirrored metering devices).

See also
zb_zcl_metering_device_type_e
ZB_ZCL_ATTR_METERING_SITE_ID_ID 

SiteID attribute is a text string, known in the UK as the MPAN number for electricity, MPRN for gas and 'Stand Point' in South Africa.

ZB_ZCL_ATTR_METERING_METER_SERIAL_NUMBER_ID 

MeterSerialNumber attribute is used to provide a unique identification of the metering device.

ZB_ZCL_ATTR_METERING_ENERGY_CARRIER_UNIT_OF_MEASURE_ID 

EnergyCarrierUnitOfMeasure attribute specifies the unit of measure that the EnergyCarrier is measured in.

ZB_ZCL_ATTR_METERING_ENERGY_CARRIER_SUMMATION_FORMATTING_ID 

EnergyCarrierSummationFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Summation- related attributes.

ZB_ZCL_ATTR_METERING_ENERGY_CARRIER_DEMAND_FORMATTING_ID 

EnergyCarrierDemandFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Demand- related attributes.

ZB_ZCL_ATTR_METERING_TEMPERATURE_UNIT_OF_MEASURE_ID 

TemperatureUnitOfMeasure attribute specifies the unit of measure that temperatures are measured in.

See also
zb_zcl_metering_temperature_unit_of_measure_e
ZB_ZCL_ATTR_METERING_TEMPERATURE_FORMATTING_ID 

TemperatureFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Temperature-related attributes.

ZB_ZCL_ATTR_METERING_MODULE_SERIAL_NUMBER_ID 

ModuleSerialNumber attribute represents the serial number (unique identifier) of the meter module.

ZB_ZCL_ATTR_METERING_OPERATING_TARIFF_LABEL_DELIVERED_ID 

OperatingTariffLabelDelivered attribute is the meter's version of the TariffLabel attribute that is found within the Tariff Information attribute set of the Price Cluster.

ZB_ZCL_ATTR_METERING_OPERATING_TARIFF_LABEL_RECEIVED_ID 

OperatingTariffLabelReceived attribute is the meter's version of the ReceivedTariffLabel attribute that is found within the Tariff Information attribute set of the Price Cluster.

ZB_ZCL_ATTR_METERING_CUSTOMER_ID_NUMBER_ID 

CustomerIDNumber attribute provides a customer identification which may be used to confirm the customer at the premises.

ZB_ZCL_ATTR_METERING_ALTERNATIVE_UNIT_OF_MEASURE_ID 

AlternativeUnitOfMeasure attribute provides a base for the attributes in the Alternative Historical Consumption attribute set.

ZB_ZCL_ATTR_METERING_ALTERNATIVE_DEMAND_FORMATTING_ID 

AlternativeDemandFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the values found in the Alternative Demand-related attributes.

ZB_ZCL_ATTR_METERING_ALTERNATIVE_CONSUMPTION_FORMATTING_ID 

AlternativeConsumptionFormatting attribute provides a method to properly decipher the number of digits and the decimal location of the consumption values found in the Alternative Historical Consumption Set of attributes.

ZB_ZCL_ATTR_METERING_INSTANTANEOUS_DEMAND_ID 

InstantaneousDemand attribute represents the current Demand of Energy, Gas, or Water delivered or received at the premises.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_CONSUMPTION_DELIVERED_ID 

CurrentDayConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises since the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_DAY_CONSUMPTION_RECEIVED_ID 

CurrentDayConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises since the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_CONSUMPTION_DELIVERED_ID 

PreviousDayConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_CONSUMPTION_RECEIVED_ID 

PreviousDayConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_START_TIME_DELIVERED_ID 

CurrentPartialProfileIntervalStartTimeDelivered attribute represents the start time of the current Load Profile interval being accumulated for commodity delivered.

ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_START_TIME_RECEIVED_ID 

CurrentPartialProfileIntervalStartTimeReceived attribute represents the start time of the current Load Profile interval being accumulated for commodity received.

ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_VALUE_DELIVERED_ID 

CurrentPartialProfileIntervalValueDelivered attribute represents the value of the current Load Profile interval being accumulated for commodity delivered.

ZB_ZCL_ATTR_METERING_CURRENT_PARTIAL_PROFILE_INTERVAL_VALUE_RECEIVED_ID 

CurrentPartialProfileIntervalValueReceived attribute represents the value of the current Load Profile interval being accumulated for commodity delivered.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_PRESSURE_ID 

CurrentDayMaxPressure attribute is the maximum pressure reported during a day from the water or gas meter.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MIN_PRESSURE_ID 

CurrentDayMinPressure attribute is the minimum pressure reported during a day from the water or gas meter.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_PRESSURE_ID 

PreviousDayMaxPressure attribute is the maximum pressure reported during previous day from the water or gas meter.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MIN_PRESSURE_ID 

PreviousDayMinPressure attribute is the minimum pressure reported during previous day from the water or gas meter.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_ID 

CurrentDayMaxDemand attribute represents the maximum demand or rate of delivered value of Energy, Gas, or Water being utilized at the premises.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_ID 

PreviousDayMaxDemand attribute represents the maximum demand or rate of delivered value of Energy, Gas, or Water being utilized at the premises.

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_MAX_DEMAND_ID 

CurrentMonthMaxDemand attribute is the maximum demand reported during a month from the meter. For electricity, heat and cooling meters this is the maximum power reported in a month.

ZB_ZCL_ATTR_METERING_CURRENT_YEAR_MAX_DEMAND_ID 

CurrentYearMaxDemand attribute is the maximum demand reported during a year from the meter. For electricity, heat and cooling meters this is the maximum power reported in a year.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_ENERGY_CARRIER_DEMAND_ID 

CurrentDayMaxEnergyCarrierDemand attribute is the maximum energy carrier demand reported during a day from the meter. For heat and cooling meters this is the maximum flow rate on the inlet reported in a day.

Note
At the end of a day the meter will transfer the CurrentDayMaxEnergyCarrierDemand into PreviousDayMaxEnergyCarrierDemand.
ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_ENERGY_CARRIER_DEMAND_ID 

PreviousDayMaxEnergyCarrierDemand attribute is the maximum energy carrier demand reported during the previous day from the meter.

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_MAX_ENERGY_CARRIER_DEMAND_ID 

CurrentMonthMaxEnergyCarrierDemand attribute is the maximum energy carrier demand reported during a month from the meter. For heat and cooling meters this is the maximum flow rate on the inlet reported in a month.

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_MIN_ENERGY_CARRIER_DEMAND_ID 

CurrentMonthMinEnergyCarrierDemand attribute is the minimum energy carrier demand reported during a month from the meter. For heat and cooling meters this is the minimum flow rate on the inlet reported in a month.

ZB_ZCL_ATTR_METERING_CURRENT_YEAR_MAX_ENERGY_CARRIER_DEMAND_ID 

CurrentYearMaxEnergyCarrierDemand attribute is the maximum energy carrier demand reported during a year from the meter. For heat and cooling meters this is the maximum flow rate on the inlet reported in a year.

ZB_ZCL_ATTR_METERING_CURRENT_YEAR_MIN_ENERGY_CARRIER_DEMAND_ID 

CurrentYearMinEnergyCarrierDemand attribute is the minimum energy carrier demand reported during a year from the heat meter. For heat and cooling meters this is the minimum flow rate on the inlet reported in a year.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY3_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY3_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY4_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY4_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY5_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY5_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY6_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY6_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY7_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY7_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY8_CONSUMPTION_DELIVERED_ID 

PreviousDayNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY8_CONSUMPTION_RECEIVED_ID 

PreviousDayNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_WEEK_CONSUMPTION_DELIVERED_ID 

CurrentWeekConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises since the Historical Freeze Time (HFT) on Monday to the last HFT read.

ZB_ZCL_ATTR_METERING_CURRENT_WEEK_CONSUMPTION_RECEIVED_ID 

CurrentWeekConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises since the Historical Freeze Time (HFT) on Monday to the last HFT read.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_CONSUMPTION_DELIVERED_ID 

PreviousWeekNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_CONSUMPTION_RECEIVED_ID 

PreviousWeekNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK2_CONSUMPTION_DELIVERED_ID 

PreviousWeekNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK2_CONSUMPTION_RECEIVED_ID 

PreviousWeekNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK3_CONSUMPTION_DELIVERED_ID 

PreviousWeekNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK3_CONSUMPTION_RECEIVED_ID 

PreviousWeekNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK4_CONSUMPTION_DELIVERED_ID 

PreviousWeekNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK4_CONSUMPTION_RECEIVED_ID 

PreviousWeekNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK5_CONSUMPTION_DELIVERED_ID 

PreviousWeekNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK5_CONSUMPTION_RECEIVED_ID 

PreviousWeekNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_CONSUMPTION_DELIVERED_ID 

CurrentMonthConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises since the Historical Freeze Time (HFT) on the 1 st of the month to the last HFT read.

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_CONSUMPTION_RECEIVED_ID 

CurrentMonthConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises since the Historical Freeze Time (HFT) on the 1 st of the month to the last HFT read.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH2_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH2_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH3_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH3_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH4_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH4_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH5_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH5_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH6_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH6_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH7_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH7_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH8_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH8_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH9_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH9_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH10_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH10_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH11_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH11_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH12_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH12_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH13_CONSUMPTION_DELIVERED_ID 

PreviousMonthNConsumptionDelivered attribute represents the summed value of Energy, Gas, or Water delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH13_CONSUMPTION_RECEIVED_ID 

PreviousMonthNConsumptionReceived attribute represents the summed value of Energy, Gas, or Water received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1 st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_HISTORICAL_FREEZE_TIME_ID 

HistoricalFreezeTime attribute represents the time of day, in Local Time, when Historical Consumption attributes and/or Alternative Historical Consumption attributes are captured (hour and minutes).

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_DELIVERED_ID 

CurrentDayMaxDemandDelivered represents the maximum demand or rate of delivered value of Energy, Gas, or Water being utilized at the premises since the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_DELIVERED_TIME_ID 

The CurrentDayMaxDemandDeliveredTime attribute represents the time when CurrentDayMaxDemandDelivered reading was captured.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_RECEIVED_ID 

CurrentDayMaxDemandReceived represents the maximum demand or rate of received value of Energy, Gas, or Water being utilized by the utility from the premises sinc e the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_DAY_MAX_DEMAND_RECEIVED_TIME_ID 

The CurrentDayMaxDemandReceivedTime attribute represents the time CurrentDayMaxDemandReceived reading was captured

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_DELIVERED_ID 

PreviousDayMaxDemandDelivered represents the maximum demand or rate of delivered value of Energy, Gas, or Water that was utilized at the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT)

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_DELIVERED_TIME_ID 

The PreviousDayMaxDemandDeliveredTime attribute represents the time when PreviousDayMaxDemandDelivered reading was captured.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_RECEIVED_ID 

PreviousDayMaxDemandReceived represents the maximum demand or rate of received value of Energy, Gas, or Water that was utilized by the utility from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_MAX_DEMAND_RECEIVED_TIME_ID 

The PreviousDayMaxDem andReceivedTime attribute represents the time when PreviousDayMaxDemandReceived reading was captured.

ZB_ZCL_ATTR_METERING_MAX_NUMBER_OF_PERIODS_DELIVERED_ID 

MaxNumberOfPeriodsDelivered attribute represents the maximum number of intervals the device is capable of returning in one Get Profile Response command. It is required MaxNumberOfPeriodsDelivered fit within the default Fragmentation ASDU size of 128 bytes, or an optionally agreed upon larger Fragmentation ASDU size supported by both devices.

See also
SE spec, sub-clause 5.3.8.
ZB_ZCL_ATTR_METERING_CURRENT_DEMAND_DELIVERED_ID 

CurrentDemandDelivered attribute represents the current Demand of Energy, Gas, or Water delivered at the premises.

ZB_ZCL_ATTR_METERING_DEMAND_LIMIT_ID 

DemandLimit attribute reflects the current supply demand limit set in the meter. This value can be compared to the CurrentDemandDelivered attribute to understand if limits are being approached or exceeded. A value of 0xFFFFFF indicates demand limiting is switched off.

ZB_ZCL_ATTR_METERING_DEMAND_INTEGRATION_PERIOD_ID 

DemandIntegrationPeriod attribute is the number of minutes over which the CurrentDemandDelivered attribute is calculated. Valid range is 0x01 to 0xFF. 0x00 is a reserved value.

ZB_ZCL_ATTR_METERING_NUMBER_OF_DEMAND_SUBINTERVALS_ID 

NumberOfDemandSubintervals attribute represents the number of subintervals used within the DemandIntegrationPeriod. The subinterval duration (in minutes) is obtained by dividing the DemandIntegrationPeriod by the NumberOfDemandSubintervals. The CurrentDemandDelivered attribute is updated at the each of each subinterval. Valid range is 0x01 to 0xFF. 0x00 is a reserved value.

ZB_ZCL_ATTR_METERING_DEMAND_LIMIT_ARM_DURATION_ID 

DemandLimitArmDuration attribute defines the length of time, in seconds, that the supply shall be disconnected if the DemandLimit attribute is enabled and the limit is exceeded.

ZB_ZCL_ATTR_METERING_LOAD_LIMIT_SUPPLY_STATE_ID 

LoadLimitSupplyState attribute indicates the required status of the supply once device is in a load limit state.

See also
SE 1.4 spec, table D.68.
ZB_ZCL_ATTR_METERING_LOAD_LIMIT_COUNTER_ID 

LoadLimitCounter attribute is used for counting the number of times that the demand limit has exceeded the set threshold.

ZB_ZCL_ATTR_METERING_SUPPLY_TAMPER_STATE_ID 

SupplyTamperState attribute indicates the required status of the supply following the detection of a tamper event within the metering device.

See also
SE 1.4 spec, table D.68.
ZB_ZCL_ATTR_METERING_SUPPLY_DEPLETION_STATE_ID 

SupplyDepletionState attribute indicates the required status of the supply following detection of a depleted battery within the metering device.

See also
SE 1.4 spec, table D.68.
ZB_ZCL_ATTR_METERING_SUPPLY_UNCONTROLLED_FLOW_STATE_ID 

SupplyUncontrolledFlowState attribute indicates the required status of the supply following detection of an uncontrolled flow event within the metering device.

See also
SE 1.4 spec, table D.68.
ZB_ZCL_ATTR_METERING_GENERIC_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_ELECTRICITY_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_GENERIC_FLOW_PRESSURE_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_WATER_SPECIFIC_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_HEAT_AND_COOLING_SPECIFIC_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_GAS_SPECIFIC_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_EXTENDED_GENERIC_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_MANUFACTURER_ALARM_MASK_ID 

The AlarmMask attributes of the Alarm Attribute Set specify whether each of the alarms listed in the corresponding alarm group is enabled. When the bit number corresponding to the alarm number (minus the group offset) is set to 1, the alarm is enabled, else it is disabled. Bits not corresponding to a code in the respective table are reserved.

ZB_ZCL_ATTR_METERING_BILL_TO_DATE_DELIVERED 

BillToDateDelivered provides a value for the costs in the current billing period.

ZB_ZCL_ATTR_METERING_BILL_TO_DATE_TIMESTAMP_DELIVERED 

BillToDateTimeStampDelivered The UTC timestamp when the associated BillToDateDelivered attribute was last updated.

ZB_ZCL_ATTR_METERING_PROJECTED_BILL_DELIVERED 

ProjectedBillDelivered provides a value indicating what the estimated state of the account will be at the end of the billing period based on past consumption.

ZB_ZCL_ATTR_METERING_PROJECTED_BILL_TIME_STAMP_DELIVERED 

ProjectedBillTimeStampDelivered The UTC timestamp when the associated ProjectedBillDelivered attribute was last updated.

ZB_ZCL_ATTR_METERING_BILL_DELIVERED_TRAILING_DIGIT 

BillDeliveredTrailingDigit An 8-bit BitMap used to determine where the decimal point is located in the BillToDateDelivered and ProjectedBillDelivered attributes.

ZB_ZCL_ATTR_METERING_BILL_TO_DATE_RECEIVED 

BillToDateReceived provides a value for the costs in the current billing period. This attribute is measured in a base unit of Currency with the decimal point located as indicated by the BillReceivedTrailingDigit attribute

ZB_ZCL_ATTR_METERING_BILL_TO_DATE_TIMESTAMP_RECEIVED 

BillToDateTimeStampReceived The UTC timestamp when the associated BillToDateReceived attribute was last updated

ZB_ZCL_ATTR_METERING_PROJECTED_BILL_RECEIVED 

ProjectedBillReceived provides a value indicating what the estimated state of the account will be at the end of the billing period based on past generation.

ZB_ZCL_ATTR_METERING_PROJECTED_BILL_TIME_STAMP_RECEIVED 

ProjectedBillTimeStampReceived The UTC timestamp when the associated ProjectedBillReceived attribute was last updated.

ZB_ZCL_ATTR_METERING_BILL_RECEIVED_TRAILING_DIGIT 

BillReceivedTrailingDigit An 8-bit BitMap used to determine where the decimal point is located in the BillToDateReceived and ProjectedBillReceived attributes.

ZB_ZCL_ATTR_METERING_PROPOSED_CHANGE_SUPPLY_IMPLEMENTATION_TIME 

ProposedChangeSupplyImplementationTime indicates the time at which a proposed change to the supply is to be implemented.

ZB_ZCL_ATTR_METERING_PROPOSED_CHANGE_SUPPLY_STATUS 

ProposedChangeSupplyStatus indicates the proposed status of the supply once the change to the supply has be been implemented. UncontrolledFlowThreshold indicates the threshold above which a flow meter (e.g. Gas or Water) shall detect an uncontrolled flow.

ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_THRESHOLD_UNIT_OF_MEASURE 

UncontrolledFlowThresholdUnitOfMeasure indicates the unit of measure used in conjunction with the Uncontrolled Flow Threshold attribute.

ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_MULTIPLIER 

UncontrolledFlowMultiplier indicates the multiplier, to be used in conjunction with the Uncontrolled Flow Threshold and Uncontrolled Flow Divisor attributes, to determine the true flow threshold value.

ZB_ZCL_ATTR_METERING_UNCONTROLLED_FLOW_DIVISOR 

UncontrolledFlowDivisor The Uncontrolled Flow Divisor attribute indicates the divisor, to be used in conjunction with the Uncontrolled Flow Threshold and Uncontrolled Flow Multiplier attributes, to determine the true flow threshold value.

ZB_ZCL_ATTR_METERING_FLOW_STABILISATION_PERIOD 

FlowStabilisationPeriod indicates the time given to allow the flow to stabilize.

ZB_ZCL_ATTR_METERING_FLOW_MEASUREMENT_PERIOD 

FlowMeasurementPeriodAttribute indicates the period over which the flow is measured and compared against the Uncontrolled Flow Threshold attribute.

ZB_ZCL_ATTR_METERING_ALT_INSTANTANEOUS_DEMAND 

AlternativeInstantaneousDemand represents the current Demand delivered or received at the premises

ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_CONSUMPTION_DELIVERED 

CurrentDayAlternativeConsumptionDelivered represents the summed value delivered to the premises since the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_CONSUMPTION_RECEIVED 

CurrentDayAlternativeConsumptionReceived represents the summed value received from the premises since the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_CONSUMPTION_DELIVERED 

PreviousDayAlternativeConsumptionDelivered represents the summed value delivered to the premises within the previous 24 hour period starting at the alternative Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_CONSUMPTION_RECEIVED 

PreviousDayAlternativeConsumptionReceived represents the summed value received to the premises within the previous 24 hour period starting at the alternative Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_START_TIME_DELIVERED 

CurrentAlternativePartialProfileIntervalStartTimeDelivered represents the start time of the current Load Profile interval being accumulated for commodity delivered

ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_START_TIME_RECEIVED 

CurrentAlternativePartialProfileIntervalStartTimeReceived represents the start time of the current Load Profile interval being accumulated for commodity received

ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_VALUE_DELIVERED 

CurrentAlternativePartialProfileIntervalValueDelivered represents the value

  • of the current Load Profile interval being accumulated for commodity delivered.
ZB_ZCL_ATTR_METERING_CURRENT_ALT_PARTIAL_PROFILE_INTERVAL_VALUE_RECEIVED 

CurrentAlternativePartialProfileIntervalValueReceived represents the value

  • of the current Load Profile interval being accumulated for commodity received .
ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_MAX_PRESSURE 

CurrentDayAlternativeMaxPressure is the maximum pressure reported during a day from the water or gas meter.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_MIN_PRESSURE 

CurrentDayAlternativeMinPressure is the minimum pressure reported during a day from the water or gas meter.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_MAX_PRESSURE 

PreviousDayAlternativeMaxPressure represents the maximum pressure reported during previous day from the water or gas meter.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_MIN_PRESSURE 

PreviousDayAlternativeMinPressure represents the minimum pressure reported during previous day from the water or gas meter.

ZB_ZCL_ATTR_METERING_CURRENT_DAY_ALT_MAX_DEMAND 

CurrentDayAlternativeMaxDemand represents the maximum demand or rate of delivered value of Energy, Gas, or Water being utilized at the premises.

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY_ALT_MAX_DEMAND 

PreviousDayAlternativeMaxDemand represents represents the maximum demand or rate of delivered value of Energy, Gas, or Water being utilized at the premises.

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_ALT_MAX_DEMAND 

CurrentMonthAlternativeMaxDemand is the maximum demand reported during a month from the meter.

ZB_ZCL_ATTR_METERING_CURRENT_YEAR_ALT_MAX_DEMAND 

CurrentYearAlternativeMaxDemand is the maximum demand reported during a year from the meter. PreviousDayNAlternativeConsumptionDelivered represents the summed value delivered to the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT).

ZB_ZCL_ATTR_METERING_PREVIOUS_DAY2_ALT_CONSUMPTION_RECEIVED 

PreviousDayNAlternativeConsumptionReceived represents the summed value received from the premises within the previous 24 hour period starting at the Historical Freeze Time (HFT). CurrentWeekAlternativeConsumptionDelivered represents the summed value delivered to the premises since the Historical Freeze Time (HFT) on Monday to the last HFT read.

ZB_ZCL_ATTR_METERING_CURRENT_WEEK_ALT_CONSUMPTION_RECEIVED 

CurrentWeekAlternativeConsumptionReceived represents the summed value received from the premises since the Historical Freeze Time (HFT) on Monday to the last HFT read

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_ALT_CONSUMPTION_DELIVERED 

PreviousWeekNAlternativeConsumptionDelivered represents the summed value delivered to the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday.

ZB_ZCL_ATTR_METERING_PREVIOUS_WEEK_ALT_CONSUMPTION_RECEIVED 

PreviousWeekNAlternativeConsumptionReceived represents the summed value received from the premises within the previous week period starting at the Historical Freeze Time (HFT) on the Monday to the Sunday CurrentMonthAlternativeConsumptionDelivered represents the summed value delivered to the premises since the Historical Freeze Time (HFT) on the 1st of the month to the last HFT read

ZB_ZCL_ATTR_METERING_CURRENT_MONTH_ALT_CONSUMPTION_RECEIVED 

CurrentMonthAlternativeConsumptionReceived represents the summed value received from the premises since the Historical Freeze Time (HFT) on the 1st of the month to the last HFT read.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_ALT_CONSUMPTION_DELIVERED 

PreviousMonthNAlternativeConsumptionDelivered represents the summed value delivered to the premises within the previous Month period starting at the Historical Freeze Time (HFT) on the 1st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_PREVIOUS_MONTH_ALT_CONSUMPTION_RECEIVED 

PreviousMonthNAlternativeConsumptionReceived represents the summed value received from the premises within the previous month period starting at the Historical Freeze Time (HFT) on the 1st of the month to the last day of the month.

ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q1_ID 

This attribute represents the most recent summed value of Active Energy (kWh) delivered in the quadrant Q1.

ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q2_ID 

This attribute represents the most recent summed value of Active Energy (kWh) delivered in the quadrant Q2.

ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q3_ID 

This attribute represents the most recent summed value of Active Energy (kWh) delivered in the quadrant Q3.

ZB_ZCL_ATTR_METERING_CURRENT_ACTIVE_SUMMATION_Q4_ID 

This attribute represents the most recent summed value of Active Energy (kWh) delivered in the quadrant Q4.

ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q1_ID 

This attribute represents the most recent summed value of Reactive Energy (kVarh) delivered in quadrant Q1.

ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q2_ID 

This attribute represents the most recent summed value of Reactive Energy (kVarh) delivered in quadrant Q2.

ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q3_ID 

This attribute represents the most recent summed value of Reactive Energy (kVarh) delivered in quadrant Q3.

ZB_ZCL_ATTR_METERING_CURRENT_REACTIVE_SUMMATION_Q4_ID 

This attribute represents the most recent summed value of Reactive Energy (kVarh) delivered in quadrant Q4.

◆ zb_zcl_metering_block_e

CurrentBlock attribute values

See also
ZB_ZCL_ATTR_METERING_CURRENT_BLOCK_ID
SE 1.4 spec, Table D.12.
Enumerator
ZB_ZCL_METERING_BLOCK_NOT_USED 

No blocks in use

ZB_ZCL_METERING_BLOCK_1 

Block 1

ZB_ZCL_METERING_BLOCK_2 

Block 2

ZB_ZCL_METERING_BLOCK_3 

Block 3

ZB_ZCL_METERING_BLOCK_4 

Block 4

ZB_ZCL_METERING_BLOCK_5 

Block 5

ZB_ZCL_METERING_BLOCK_6 

Block 6

ZB_ZCL_METERING_BLOCK_7 

Block 7

ZB_ZCL_METERING_BLOCK_8 

Block 8

ZB_ZCL_METERING_BLOCK_9 

Block 9

ZB_ZCL_METERING_BLOCK_10 

Block 10

ZB_ZCL_METERING_BLOCK_11 

Block 11

ZB_ZCL_METERING_BLOCK_12 

Block 12

ZB_ZCL_METERING_BLOCK_13 

Block 13

ZB_ZCL_METERING_BLOCK_14 

Block 14

ZB_ZCL_METERING_BLOCK_15 

Block 15

ZB_ZCL_METERING_BLOCK_16 

Block 16

◆ zb_zcl_metering_device_type_e

DeviceType Attribute values

See also
ZB_ZCL_ATTR_METERING_METERING_DEVICE_TYPE_ID
SE 1.4 spec, subclause 3.2.2.4.7, table D.27
Enumerator
ZB_ZCL_METERING_ELECTRIC_METERING 

Electric metering device

ZB_ZCL_METERING_GAS_METERING 

Gas metering device

ZB_ZCL_METERING_WATER_METERING 

Water metering device

ZB_ZCL_METERING_PRESSURE_METERING 

Pressure metering device

ZB_ZCL_METERING_HEAT_METERING 

Heat metering device

ZB_ZCL_METERING_COOLING_METERING 

Cooling metering device

ZB_ZCL_METERING_EUMD 

End Use Measurement Device (EUMD) for metering electric vehicle charging

ZB_ZCL_METERING_PV_GENERATION_METERING 

PV Generation Metering device

ZB_ZCL_METERING_WIND_TURBINE_GENERATION_METERING 

Wind Turbine Generation Metering device

ZB_ZCL_METERING_WATER_TURBINE_GENERATION_METERING 

Water Turbine Generation Metering device

ZB_ZCL_METERING_MICRO_GENERATION_METERING 

Micro Generation Metering device

ZB_ZCL_METERING_SOLAR_HOT_WATER_GENERATION_METERING 

Solar Hot Water Generation Metering device

ZB_ZCL_METERING_ELECTRIC_METERING_ELEMENT_PHASE1 

Electric Metering Element/Phase 1

ZB_ZCL_METERING_ELECTRIC_METERING_ELEMENT_PHASE2 

Electric Metering Element/Phase 2

ZB_ZCL_METERING_ELECTRIC_METERING_ELEMENT_PHASE3 

Electric Metering Element/Phase 3

ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING 

Mirrored Electric Metering device

ZB_ZCL_METERING_MIRRORED_GAS_METERING 

Mirrored Gas Metering device

ZB_ZCL_METERING_MIRRORED_WATER_METERING 

Mirrored Water Metering device

ZB_ZCL_METERING_MIRRORED_PRESSURE_METERING 

Mirrored Pressure Metering device

ZB_ZCL_METERING_MIRRORED_HEAT_METERING 

Mirrored Heat Metering device

ZB_ZCL_METERING_MIRRORED_COOLING_METERING 

Mirrored Cooling Metering device

ZB_ZCL_METERING_MIRRORED_EUMD 

Mirrored End Use Measurement Device (EUMD) for metering electric vehicle charging

ZB_ZCL_METERING_MIRRORED_PV_GENERATION_METERING 

Mirrored PV Generation Metering device

ZB_ZCL_METERING_MIRRORED_WIND_TURBINE_GENERATION_METERING 

Mirrored Wind Turbine Generation Metering device

ZB_ZCL_METERING_MIRRORED_WATER_TURBINE_GENERATION_METERING 

Mirrored Water Turbine Generation Metering device

ZB_ZCL_METERING_MIRRORED_MICRO_GENERATION_METERING 

Mirrored Micro Generation Metering device

ZB_ZCL_METERING_MIRRORED_SOLAR_HOT_WATER_GENERATION_METERING 

Mirrored Solar Hot Water Generation Metering device

ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING_ELEMENT_PHASE1 

Mirrored Electric Metering Element/Phase 1

ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING_ELEMENT_PHASE2 

Mirrored Electric Metering Element/Phase 2

ZB_ZCL_METERING_MIRRORED_ELECTRIC_METERING_ELEMENT_PHASE3 

Mirrored Electric Metering Element/Phase 3

◆ zb_zcl_metering_electricity_alarm_group_e

The Electricity Alarm Group defines alarms specific for electricity meters.

See also
SE spec, Table D-36
Enumerator
ZB_ZCL_METERING_ALARM_LOW_VOLTAGE_L1 

Low Voltage L1

ZB_ZCL_METERING_ALARM_HIGH_VOLTAGE_L1 

High Voltage L1

ZB_ZCL_METERING_ALARM_LOW_VOLTAGE_L2 

Low Voltage L2

ZB_ZCL_METERING_ALARM_HIGH_VOLTAGE_L2 

High Voltage L2

ZB_ZCL_METERING_ALARM_LOW_VOLTAGE_L3 

Low Voltage L3

ZB_ZCL_METERING_ALARM_HIGH_VOLTAGE_L3 

High Voltage L3

ZB_ZCL_METERING_ALARM_OVER_CURRENT_L1 

Over Current L1

ZB_ZCL_METERING_ALARM_OVER_CURRENT_L2 

Over Current L2

ZB_ZCL_METERING_ALARM_OVER_CURRENT_L3 

Over Current L3

ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_LOW_L1 

Frequency too Low L1

ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_HIGH_L1 

Frequency too High L1

ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_LOW_L2 

Frequency too Low L2

ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_HIGH_L2 

Frequency too High L2

ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_LOW_L3 

Frequency too Low L3

ZB_ZCL_METERING_ALARM_FREQUENCY_TOO_HIGH_L3 

Frequency too High L3

ZB_ZCL_METERING_ALARM_GROUND_FAULT 

Ground Fault

ZB_ZCL_METERING_ALARM_ELECTRIC_TAMPER_DETECT 

Electric Tamper Detect

ZB_ZCL_METERING_ALARM_INCORRECT_POLARITY 

Incorrect Polarity

ZB_ZCL_METERING_ALARM_CURRENT_NO_VOLTAGE 

Current No Voltage

ZB_ZCL_METERING_ALARM_UNDER_VOLTAGE 

Under Voltage

ZB_ZCL_METERING_ALARM_OVER_VOLTAGE 

Over Voltage

ZB_ZCL_METERING_ALARM_NORMAL_VOLTAGE 

Normal Voltage

ZB_ZCL_METERING_ALARM_PF_BELOW_THRESHOLD 

PF Below Threshold

ZB_ZCL_METERING_ALARM_PF_ABOVE_THRESHOLD 

PF Above Threshold

ZB_ZCL_METERING_ALARM_TERMINAL_COVER_REMOVED 

Terminal Cover Removed

ZB_ZCL_METERING_ALARM_TERMINAL_COVER_CLOSED 

Terminal Cover Closed

◆ zb_zcl_metering_extended_generic_alarm_group_e

The Extended Generic Alarm Group is an additional set of generic meter alarms.

See also
SE spec, Table D-41
Enumerator
ZB_ZCM_METERING_ALARM_MEASUREMENT_SYSTEM_ERROR 

Measurement System Error

ZB_ZCM_METERING_ALARM_WATCHDOG_ERROR 

Watchdog Error

ZB_ZCM_METERING_ALARM_SUPPLY_DISCONNECT_FAILURE 

Supply Disconnect Failure

ZB_ZCM_METERING_ALARM_SUPPLY_CONNECT_FAILURE 

Supply Connect Failure

ZB_ZCM_METERING_ALARM_MEASUREMENT_SOFTWARE_CHANGED 

Measurement Software Changed

ZB_ZCM_METERING_ALARM_DST_ENABLED 

DST enabled

ZB_ZCM_METERING_ALARM_DST_DISABLED 

DST disabled

ZB_ZCM_METERING_ALARM_CLOCK_ADJ_BACKWARD 

Clock Adj Backward (the internal clock has applied a negative adjustment)

ZB_ZCM_METERING_ALARM_CLOCK_ADJ_FORWARD 

Clock Adj Forward (the internal clock has applied a positive adjustment)

ZB_ZCM_METERING_ALARM_CLOCK_INVALID 

Clock Invalid

ZB_ZCM_METERING_ALARM_COMMUNICATION_ERROR_HAN 

Communication Error HAN

ZB_ZCM_METERING_ALARM_COMMUNICATION_OK_HAN 

Communication OK HAN

ZB_ZCM_METERING_ALARM_METER_FRAUD_ATTEMPT 

Meter Fraud Attempt

ZB_ZCM_METERING_ALARM_POWER_LOSS 

Power Loss

ZB_ZCM_METERING_ALARM_UNUSUAL_HAN_TRAFFIC 

Unusual HAN Traffic

ZB_ZCM_METERING_ALARM_UNEXPECTED_CLOCK_CHANGE 

Unexpected Clock Change

ZB_ZCM_METERING_ALARM_COMMS_USING_UNAUTHENTICATED_COMPONENT 

Comms Using Unauthenticated Component

ZB_ZCM_METERING_ALARM_ERROR_REG_CLEAR 

Error Reg Clear

ZB_ZCM_METERING_ALARM_ALARM_REG_CLEAR 

Alarm Reg Clear

ZB_ZCM_METERING_ALARM_UNEXPECTED_HW_RESET 

Unexpected HW Reset

ZB_ZCM_METERING_ALARM_UNEXPECTED_PROGRAM_EXECUTION 

Unexpected Program Execution

ZB_ZCM_METERING_ALARM_EVENTLOG_CLEARED 

EventLog Cleared

ZB_ZCM_METERING_ALARM_LIMIT_THRESHOLD_EXCEEDED 

Limit Threshold Exceeded

ZB_ZCM_METERING_ALARM_LIMIT_THRESHOLD_OK 

Limit Threshold OK

ZB_ZCM_METERING_ALARM_LIMIT_THRESHOLD_CHANGED 

Limit Threshold Changed

ZB_ZCM_METERING_ALARM_MAXIMUM_DEMAND_EXCEEDED 

Maximum Demand Exceeded

ZB_ZCM_METERING_ALARM_PROFILE_CLEARED 

Profile Cleared

ZB_ZCM_METERING_ALARM_SAMPLING_BUFFER_CLEARED 

Sampling Buffer cleared

ZB_ZCM_METERING_ALARM_BATTERY_WARNING 

Battery Warning

ZB_ZCM_METERING_ALARM_WRONG_SIGNATURE 

Wrong Signature

ZB_ZCM_METERING_ALARM_NO_SIGNATURE 

No Signature

ZB_ZCM_METERING_ALARM_UNAUTHORISED_ACTION_FROM_HAN 

Unauthorised Action from HAN

ZB_ZCM_METERING_ALARM_FAST_POLLING_START 

Fast Polling Start

ZB_ZCM_METERING_ALARM_FAST_POLLING_END 

Fast Polling End

ZB_ZCM_METERING_ALARM_METER_REPORTING_INTERVAL_CHANGED 

Meter Reporting Interval Changed

ZB_ZCM_METERING_ALARM_DISCONNECT_DUE_TO_LOAD_LIMIT 

Disconnect Due to Load Limit

ZB_ZCM_METERING_ALARM_METER_SUPPLY_STATUS_REGISTER_CHANGED 

Meter Supply Status Register Changed

ZB_ZCM_METERING_ALARM_METER_ALARM_STATUS_REGISTER_CHANGED 

Meter Alarm Status Register Changed

ZB_ZCM_METERING_ALARM_EXTENDED_METER_ALARM_STATUS_REGISTER_CHANGED 

Extended Meter Alarm Status Register Changed.

◆ zb_zcl_metering_extstatus_electricity_e

Bit mapping of the ExtendedStatus attribute (Electricity Meter specific Flags)

See also
ZB_ZCL_ATTR_METERING_EXTENDED_STATUS_ID
SE 1.4 spec, subclause D.3.2.2.3.5, table D.21
Enumerator
ZB_ZCL_METERING_ELECTRICITY_TERMINAL_COVER_REMOVED 

TerminalCoverRemoved bit is set to true when the device detects that its terminal cover has been removed.

ZB_ZCL_METERING_ELECTRICITY_INCORRECT_POLARITY 

IncorrectPolarity bit is set to true when the electricity meter detects incorrect polarity on the electricity supply.

ZB_ZCL_METERING_ELECTRICITY_CURRENT_WITH_NO_VOLTAGE 

CurrentWithNoVoltage bit is set to true when the meter has been tampered with, to disconnect the measurement function from the supply. Electricity is still flowing but not being recorded.

ZB_ZCL_METERING_ELECTRICITY_LIMIT_THRESHOLD_EXCEEDED 

LimitThresholdExceeded bit is set to true when the electricity meter detects that the load has exceeded the load limit threshold.

ZB_ZCL_METERING_ELECTRICITY_UNDER_VOLTAGE 

UnderVoltage bit is set to true when the electricity meter indicates that the voltage measurement over the voltage measurement period is lower than the voltage threshold.

ZB_ZCL_METERING_ELECTRICITY_OVER_VOLTAGE 

OverVoltage bit is set to true when the electricity meter indicates that the voltage measurement over the voltage measurement period is higher than the voltage threshold.

ZB_ZCL_METERING_ELECTRICITY_BIDIRECTION_OPERATION 

Set to true when the meter is capable of measuring energy in both directions (i.e. delivered and received).

ZB_ZCL_METERING_ELECTRICITY_ACTIVE_POWER_RECEIVED 

Set to true when active power flows in the received direction (generation from the premises to the grid).

◆ zb_zcl_metering_extstatus_gas_e

Bit mapping of the ExtendedStatus attribute (Gas Meter specific Flags)

See also
ZB_ZCL_ATTR_METERING_EXTENDED_STATUS_ID
SE 1.4 spec, subclause D.3.2.2.3.5, table D.22
Enumerator
ZB_ZCL_METERING_GAS_BATTERY_COVER_REMOVED 

BatteryCoverRemoved bit is set to true when the gas meter detects that its battery cover has been removed.

ZB_ZCL_METERING_GAS_TILT_TAMPER 

TiltTamper bit is set to true when the meter detects a change in its physical properties (i.e. that it is being tilted, the tilt sensor has been activated or otherwise tampered with).

ZB_ZCL_METERING_GAS_EXCESS_FLOW 

ExcessFlow bit is set to true when the gas meter detects excess flow (e.g. when local supply restoration is attempted).

◆ zb_zcl_metering_extstatus_general_e

Bit mapping of the ExtendedStatus attribute (General Flags)

See also
ZB_ZCL_ATTR_METERING_EXTENDED_STATUS_ID
SE 1.4 spec, subclause D.3.2.2.3.5, table D.20
Enumerator
ZB_ZCL_METERING_METER_COVER_REMOVED 

MeterCoverRemoved bit is set to true when the device detects the meter cover being removed.

ZB_ZCL_METERING_STRONG_MAGNETIC_FIELD_DETECTED 

StrongMagneticFieldDetected bit is set to true when the device detects presence of a strong magnetic field

ZB_ZCL_METERING_BATTERY_FAILURE 

BatteryFailure bit is set to true when the device detects that its battery has failed.

ZB_ZCL_METERING_PROGRAM_MEMORY_ERROR 

ProgramMemoryError bit is set to true when the device detects an error within its program (non-volatile) memory.

ZB_ZCL_METERING_RAM_ERROR 

RAMError bit is set to true when the device detects an instance of a Random Access Memory error within the device memory.

ZB_ZCL_METERING_NV_MEMORY_ERROR 

NVMemoryError bit is set to true when the device detects an instance of a Non Volatile memory error within the device memory - this is a fatal meter error that will require the meter replacement

ZB_ZCL_METERING_MEASUREMENT_SYSTEM_ERROR 

MeasurementSystemError bit is set to true when the device detects an error within its measurement system.

ZB_ZCL_METERING_WATCHDOG_ERROR 

WatchdogError bit is set to true when the device has detected an instance of a watchdog reset event (following a catastrophic fault within the device).

ZB_ZCL_METERING_SUPPLY_DISCONNECT_FAILURE 

SupplyDisconnectFailure bit is set to true when the device has detected that the valve has not closed as expected (for gas) or the contactor has not opened as expected (for electricity).

ZB_ZCL_METERING_SUPPLY_CONNECT_FAILURE 

SupplyConnectFailure bit is set to true when the device has detected that the valve has not opened as expected (for gas) or the contactor has not closed as expected (for electricity).

ZB_ZCL_METERING_MEASUREMENT_SW_CHANGED 

MeasurementSWChanged/Tampered bit is set to true when the device detects that its measurement software has changed.

ZB_ZCL_METERING_CLOCK_INVALID 

ClockInvalid bit is set to true when the device detects that its internal clock is invalid.

ZB_ZCL_METERING_TEMPERATURE_EXCEEDED 

TemperatureExceeded bit is set to true when the metering device's temperature exceeds a predefined limit. There are various reasons for temperature rise in metering devices.

ZB_ZCL_METERING_MOISTURE_DETECTED 

MoistureDetected bit is set to true when a sensor has detected the presence of moisture e.g. moisture in a gas line which can cause a drop in gas pressure, or moisture detected in the sealed component area within a water meter.

◆ zb_zcl_metering_gas_specific_alarm_group_e

The Gas Specific Alarm Group defines alarms specific for Gas meters as defined below.

See also
SE spec, Table D-40
Enumerator
ZB_ZCL_METERING_ALARM_TILT_TAMPER 

Tilt Tamper

ZB_ZCL_METERING_ALARM_BATTERY_COVER_REMOVED 

Battery Cover Removed

ZB_ZCL_METERING_ALARM_BATTERY_COVER_CLOSED 

Battery Cover Closed

ZB_ZCL_METERING_ALARM_EXCESS_FLOW 

Excess Flow

ZB_ZCL_METERING_ALARM_TILT_TAMPER_ENDED 

Tilt Tamper Ended

◆ zb_zcl_metering_generic_alarm_group_e

The generic Alarm Group maps the status from the MeterStatus attribute into a corresponding alarm.

See also
SE spec, Table D-35
Enumerator
ZB_ZCL_METERING_ALARM_CHECK_METER 

Check meter

ZB_ZCL_METERING_ALARM_LOW_BATTERY 

Low battery

ZB_ZCL_METERING_ALARM_TAMPER_DETECT 

Tamper detect

ZB_ZCL_METERING_ALARM_ELECTRICITY_POWER_FAILURE 

Electricity: Power Failure

ZB_ZCL_METERING_ALARM_WATER_PIPE_EMPTY 

Water: Pipe Empty

ZB_ZCL_METERING_ALARM_HEAT_TEMPERATURE_SENSOR 

Heat: Temperature Sensor

ZB_ZCL_METERING_ALARM_COOLING_TEMPERATURE_SENSOR 

Cooling Temperature Sensor

ZB_ZCL_METERING_ALARM_ELECTRICITY_POWER_QUALITY 

Electricity: Power Quality

ZB_ZCL_METERING_ALARM_GAS_LOW_PRESSURE 

Gas: Low Pressure

ZB_ZCL_METERING_ALARM_WATER_LOW_PRESSURE 

Water: Low Pressure

ZB_ZCL_METERING_ALARM_HEAT_BURST_DETECT 

Heat: Burst Detect

ZB_ZCL_METERING_ALARM_COOLING_BURST_DETECT 

Cooling: Burst Detect

ZB_ZCL_METERING_ALARM_LEAK_DETECT 

Leak detect

ZB_ZCL_METERING_ALARM_SERVICE_DISCONNECT 

Service Disconnect

ZB_ZCL_METERING_ALARM_ELECTRICITY_RESERVED 

Electricity: Reserved

ZB_ZCL_METERING_ALARM_GAS_REVERSE_FLOW 

Gas: Reverse Flow

ZB_ZCL_METERING_ALARM_WATER_REVERSE_FLOW 

Water: Reverse Flow

ZB_ZCL_METERING_ALARM_HEAT_FLOW_SENSOR 

Heat: Flow Sensor

ZB_ZCL_METERING_ALARM_COOLING_FLOW_SENSOR 

Cooling: Flow Sensor

ZB_ZCL_METERING_ALARM_METER_COVER_REMOVED 

Meter Cover Removed

ZB_ZCL_METERING_ALARM_METER_COVER_CLOSED 

Meter Cover Closed

ZB_ZCL_METERING_ALARM_STRONG_MAGNETIC_FIELD 

Strong Magnetic Field

ZB_ZCL_METERING_ALARM_NO_STRONG_MAGNETIC_FIELD 

No Strong Magnetic Field

ZB_ZCL_METERING_ALARM_BATTERY_FAILURE 

Battery Failure

ZB_ZCL_METERING_ALARM_PROGRAM_MEMORY_ERROR 

Program Memory Error

ZB_ZCL_METERING_ALARM_RAM_ERROR 

Ram Error

ZB_ZCL_METERING_ALARM_NV_MEMORY_ERROR 

NV Memory Error

◆ zb_zcl_metering_generic_flow_pressure_alarm_group_e

The Generic Flow/Pressure Alarm Group defines alarms specific for Flow/Pressure based meters i.e. Water, Heat, Cooling, or Gas meters.

See also
SE spec, Table D-37
Enumerator
ZB_ZCL_METERING_ALARM_BURST_DETECT 

Burst detect

ZB_ZCL_METERING_ALARM_PRESSURE_TOO_LOW 

Pressure too low

ZB_ZCL_METERING_ALARM_PRESSURE_TOO_HIGH 

Pressure too high

ZB_ZCL_METERING_ALARM_FLOW_SENSOR_COMMUNICATION_ERROR 

Flow sensor communication error

ZB_ZCL_METERING_ALARM_FLOW_SENSOR_MEASUREMENT_FAULT 

Flow sensor measurement fault

ZB_ZCL_METERING_ALARM_FLOW_SENSOR_REVERSE_FLOW 

Flow sensor reverse flow

ZB_ZCL_METERING_ALARM_FLOW_SENSOR_AIR_DETECT 

Flow sensor air detect

ZB_ZCL_METERING_ALARM_PIPE_EMPTY 

Pipe empty

◆ zb_zcl_metering_heat_and_cooling_specific_alarm_group_e

The Heat and Cooling Specific Alarm Group defines alarms specific for Heat or Cooling meters

See also
SE spec, Table D-39
Enumerator
ZB_ZCL_METERING_ALARM_INLET_TEMPERATURE_SENSOR_FAULT 

Inlet Temperature Sensor Fault

ZB_ZCL_METERING_ALARM_OUTLET_TEMPERATURE_SENSOR_FAULT 

Outlet Temperature Sensor Fault

◆ zb_zcl_metering_low_medium_high_status_e

LowMediumHighStatus Attribute values

See also
ZB_ZCL_ATTR_METERING_AMBIENT_CONSUMPTION_INDICATOR_ID
SE 1.4 spec, table D.23.
Enumerator
ZB_ZCL_METERING_STATUS_LOW 

Low energy usage

ZB_ZCL_METERING_STATUS_MEDIUM 

Medium energy usage

ZB_ZCL_METERING_STATUS_HIGH 

High energy usage

◆ zb_zcl_metering_manufacturer_specific_alarm_group_e

The Manufacturer Specific Alarm Group defines alarms specific for any meters. These are used for meter specific functionality that is not covered by the current smart energy specification.

See also
SE spec, Table D-42
Enumerator
ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_A 

Manufacturer Specific A

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_B 

Manufacturer Specific B

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_C 

Manufacturer Specific C

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_D 

Manufacturer Specific D

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_E 

Manufacturer Specific E

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_F 

Manufacturer Specific F

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_G 

Manufacturer Specific G

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_H 

Manufacturer Specific H

ZB_ZCL_METERING_ALARM_MANUFACTURER_SPECIFIC_I 

Manufacturer Specific I

◆ zb_zcl_metering_service_disconnect_reasons_e

Service Disconnect Reasons

See also
Linky Metering Cluster spec, Table D-16
Enumerator
ZB_ZCL_METERING_REASON_ON 

ON (Service NOT disconnected)

ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVER_POWER 

OFF due to over power

ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVER_VOLTAGE 

OFF due to over voltage

ZB_ZCL_METERING_REASON_OFF_DUE_TO_REMOTE_DNO_LOAD_CONTROL 

OFF due to Remote DNO Load Control

ZB_ZCL_METERING_REASON_OFF_BY_OTHER_REMOTE_COMMAND 

OFF by other remote command

ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVERHEATING_SHORT_CIRCUIT 

OFF due to overheating, I > In (Maximum Current) - short circuit

ZB_ZCL_METERING_REASON_OFF_DUE_TO_OVERHEATING_OTHER 

OFF due to overheating, I < In (Maximum Current) - other

◆ zb_zcl_metering_srv_attr_set_e

Metering cluster server attribute sets.

See also
SE 1.4 spec, table D.10.
Enumerator
ZB_ZCL_METERING_SET_READ_INFO 

Reading Information Set

ZB_ZCL_METERING_SET_TOU_INFORMATION 

TOU Information Set

ZB_ZCL_METERING_SET_METER_STATUS 

Meter Status

ZB_ZCL_METERING_SET_FORMATTING 

Formatting

ZB_ZCL_METERING_SET_HISTORICAL_CONSUMPTION 

Historical Consumption

ZB_ZCL_METERING_SET_LOAD_PROFILE_CONFIGURATION 

Load Profile Configuration

ZB_ZCL_METERING_SET_SUPPLY_LIMIT 

Supply Limit

ZB_ZCL_METERING_SET_BLOCK_INFORMATION_DELIVERED 

Block Information (Delivered)

ZB_ZCL_METERING_SET_ALARMS 

Alarms

ZB_ZCL_METERING_SET_BLOCK_INFORMATION_RECEIVED 

Block Information (Received)

ZB_ZCL_METERING_SET_METER_BILLING 

Meter Billing Attribute Set

ZB_ZCL_METERING_SET_SUPPLY_CONTROL 

Supply Control Attribute Set

ZB_ZCL_METERING_SET_ALTERNATIVE_HISTORICAL_CONSUMPTION 

Alternative Historical Consumption

ZB_ZCL_METERING_SET_FOUR_QUADRANT_ELECTRICITY 

Four-Quadrant Electricity

◆ zb_zcl_metering_status_electricity_e

Bit mapping of the Status attribute (Electricity)

See also
ZB_ZCL_ATTR_METERING_STATUS_ID
SE spec, subclause 3.2.2.3.1, table D.16.
Enumerator
ZB_ZCL_METERING_ELECTRICITY_CHECK_METER 

CheckMeter bit is set to true when a non fatal problem has been detected on the meter such as a measurement error, memory error, self check error.

ZB_ZCL_METERING_ELECTRICITY_LOW_BATTERY 

LowBattery bit is set to true when the battery needs maintenance.

ZB_ZCL_METERING_ELECTRICITY_TAMPER_DETECT 

TamperDetect bit is set to true if a tamper event has been detected.

ZB_ZCL_METERING_ELECTRICITY_POWER_FAILURE 

PowerFailure bit is set to true during a power outage.

ZB_ZCL_METERING_ELECTRICITY_POWER_QUALITY 

PowerQuality bit is set to true if a power quality event has been detected such as a low voltage, high voltage.

ZB_ZCL_METERING_ELECTRICITY_LEAK_DETECT 

LeakDetect bit is set to true when a leak has been detected.

ZB_ZCL_METERING_ELECTRICITY_SERVICE_DISCONNECT_OPEN 

ServiceDisconnectOpen bit is Set to true when the service has been disconnected to this premises.

ZB_ZCL_METERING_ELECTRICITY_RESERVED 

Reserved bit

◆ zb_zcl_metering_status_gas_e

Bit mapping of the Status attribute (Gas)

See also
ZB_ZCL_ATTR_METERING_STATUS_ID
SE spec, subclause 3.2.2.3.1, table D.17.
Enumerator
ZB_ZCL_METERING_GAS_CHECK_METER 

CheckMeter bit is Set to true when a non fatal problem has been detected on the meter such as a measurement error, memory error, or self check error.

ZB_ZCL_METERING_GAS_LOW_BATTERY 

LowBattery bit is set to true when the battery needs maintenance.

ZB_ZCL_METERING_GAS_TAMPER_DETECT 

TamperDetect bit is set to true if a tamper event has been detected.

ZB_ZCL_METERING_GAS_RESERVED 

Reserved bit

ZB_ZCL_METERING_GAS_LOW_PRESSURE 

LowPressure bit is set to true when the pressure at the meter is below the meter's low pressure threshold value.

ZB_ZCL_METERING_GAS_LEAK_DETECT 

LeakDetect bit is set to true when a leak has been detected.

ZB_ZCL_METERING_GAS_SERVICE_DISCONNECT 

ServiceDisconnect bit is set to true when the service has been disconnected to this premises. Ex. The valve is in the closed position preventing delivery of gas.

ZB_ZCL_METERING_GAS_REVERSE_FLOW 

ReverseFlow bit is set to true if flow detected in the opposite direction to normal (from consumer to supplier).

◆ zb_zcl_metering_status_heat_cooling_e

Bit mapping of the Status attribute (Heat and Cooling)

See also
ZB_ZCL_ATTR_METERING_STATUS_ID
SE 1.4 spec, subclause 3.2.2.3.1, table D.19.
Enumerator
ZB_ZCL_METERING_HCOOL_CHECK_METER 

CheckMeter bit is Set to true when a non fatal problem has been detected on the meter such as a measurement error, memory error, or self check error.

ZB_ZCL_METERING_HCOOL_LOW_BATTERY 

LowBattery bit is set to true when the battery needs maintenance.

ZB_ZCL_METERING_HCOOL_TAMPER_DETECT 

TamperDetect bit is set to true if a tamper event has been detected.

ZB_ZCL_METERING_HCOOL_TEMPERATURE_SENSOR 

TemperatureSensor bit is Set to true when an error is detected on a temperature sensor at this premises.

ZB_ZCL_METERING_HCOOL_BURST_DETECT 

BurstDetect bit is set to true when a burst is detected on pipes at this premises.

ZB_ZCL_METERING_HCOOL_LEAK_DETECT 

LeakDetect bit is set to true when a leak has been detected.

ZB_ZCL_METERING_HCOOL_SERVICE_DISCONNECT 

ServiceDisconnect bit is Set to true when the service has been disconnected to this premises. Ex. The valve is in the closed position preventing delivery of heat or cooling.

ZB_ZCL_METERING_HCOOL_FLOW_SENSOR 

FlowSensor bit is set to true when an error is detected on a flow sensor at this premises.

◆ zb_zcl_metering_status_water_e

Bit mapping of the Status attribute (Water)

See also
ZB_ZCL_ATTR_METERING_STATUS_ID
SE 1.4 spec, subclause 3.2.2.3.1, table D.18.
Enumerator
ZB_ZCL_METERING_WATER_CHECK_METER 

CheckMeter bit is Set to true when a non fatal problem has been detected on the meter such as a measurement error, memory error, or self check error.

ZB_ZCL_METERING_WATER_LOW_BATTERY 

LowBattery bit is set to true when the battery needs maintenance.

ZB_ZCL_METERING_WATER_TAMPER_DETECT 

TamperDetect bit set to true if a tamper event has been detected.

ZB_ZCL_METERING_WATER_PIPE_EMTPY 

PipeEmpty bit is set to true when the service pipe at the meter is empty and there is no flow in either direction.

ZB_ZCL_METERING_WATER_LOW_PRESSURE 

LowPressure bit is Set to true when the pressure at the meter is below the meter's low pressure threshold value.

ZB_ZCL_METERING_WATER_LEAK_DETECT 

LeakDetect bit is set to true when a leak has been detected.

ZB_ZCL_METERING_WATER_SERVICE_DISCONNECT 

ServiceDisconnect bit is set to true when the service has been disconnected to this premises. Ex. The valve is in the closed position preventing delivery of water.

ZB_ZCL_METERING_WATER_REVERSE_FLOW 

ReverseFlow bit is Set to true if flow detected in the opposite direction to normal (from consumer to supplier).

◆ zb_zcl_metering_supply_status_e

SupplyStatus attribute values

See also
ZB_ZCL_ATTR_METERING_SUPPLY_STATUS_ID
SE 1.4 spec, table D.13.
Enumerator
ZB_ZCL_SUPPLY_STATUS_OFF 

Supply OFF

ZB_ZCL_SUPPLY_STATUS_ARMED 

Supply OFF/ARMED

ZB_ZCL_SUPPLY_STATUS_ON 

Supply ON

◆ zb_zcl_metering_temperature_unit_of_measure_e

TemperatureUnitOfMeasure Attribute values

See also
ZB_ZCL_ATTR_METERING_TEMPERATURE_UNIT_OF_MEASURE_ID
SE 1.4 spec, subclause 3.2.2.4.13, table D.28
Enumerator
ZB_ZCL_METERING_TEMPERATURE_UNIT_KELVIN_BINARY 

K (Degrees Kelvin) in pure Binary format.

ZB_ZCL_METERING_TEMPERATURE_UNIT_CELSIUS_BINARY 

C (Degrees Celsius) in pure Binary format.

ZB_ZCL_METERING_TEMPERATURE_UNIT_FAHRENHEIT_BINARY 

F (Degrees Fahrenheit) in pure Binary format.

ZB_ZCL_METERING_TEMPERATURE_UNIT_KELVIN_BCD 

K (Degrees Kelvin) in BCD format.

ZB_ZCL_METERING_TEMPERATURE_UNIT_CELSIUS_BCD 

C (Degrees Celsius) in BCD format.

ZB_ZCL_METERING_TEMPERATURE_UNIT_FAHRENHEIT_BCD 

F (Degrees Fahrenheit) in BCD format.

◆ zb_zcl_metering_unit_of_measure_e

UnitOfMeasure Attribute values

See also
ZB_ZCL_ATTR_METERING_UNIT_OF_MEASURE_ID
SE 1.4 spec, subclause 3.2.2.4.1, table D.26
Enumerator
ZB_ZCL_METERING_UNIT_KW_KWH_BINARY 

kW, kWh binary value

ZB_ZCL_METERING_UNIT_M3_M3H_BINARY 

m3, m3/h binary value

ZB_ZCL_METERING_UNIT_FT3_FT3H_BINARY 

ft3, ft3/h binary value

ZB_ZCL_METERING_UNIT_CCF_CCFH_BINARY 

ccf, ccf/h binary value

ZB_ZCL_METERING_UNIT_USGL_USGLH_BINARY 

US gl, US gl/h binary value

ZB_ZCL_METERING_UNIT_IMPGL_IMPGLH_BINARY 

IMP gl, IMP gl/h binary value

ZB_ZCL_METERING_UNIT_BTU_BTUH_BINARY 

BTU, BTU/h binary value

ZB_ZCL_METERING_UNIT_L_LH_BINARY 

l, l/h binary value

ZB_ZCL_METERING_UNIT_KPAG_BINARY 

kPA (gauge) binary value

ZB_ZCL_METERING_UNIT_KPAA_BINARY 

kPA (absolute) binary value

ZB_ZCL_METERING_UNIT_MCF_MCFH_BINARY 

mcf, mcf/h binary value

ZB_ZCL_METERING_UNIT_UNITLESS_BINARY 

Unitless binary value

ZB_ZCL_METERING_UNIT_MJ_MJS_BINARY 

MJ, MJ/h binary value

ZB_ZCL_METERING_UNIT_KVAR_KVARH_BINARY 

kVar, kVar/h binary value

ZB_ZCL_METERING_UNIT_BINARY_RESERVED 

0x0E to 0x7F reserved for future use

ZB_ZCL_METERING_UNIT_KW_KWH_BCD 

kW, kWh BCD value

ZB_ZCL_METERING_UNIT_M3_M3H_BCD 

m3, m3/h BCD value

ZB_ZCL_METERING_UNIT_FT3_FT3H_BCD 

ft3, ft3/h BCD value

ZB_ZCL_METERING_UNIT_CCF_CCFH_BCD 

ccf, ccf/h BCD value

ZB_ZCL_METERING_UNIT_USGL_USGLH_BCD 

US gl, US gl/h BCD value

ZB_ZCL_METERING_UNIT_IMPGL_IMPGLH_BCD 

IMP gl, IMP gl/h BCD value

ZB_ZCL_METERING_UNIT_BTU_BTUH_BCD 

BTU, BTU/h BCD value

ZB_ZCL_METERING_UNIT_L_LH_BCD 

l, l/h BCD value

ZB_ZCL_METERING_UNIT_KPAG_BCD 

kPA (gauge) BCD value

ZB_ZCL_METERING_UNIT_KPAA_BCD 

kPA (absolute) BCD value

ZB_ZCL_METERING_UNIT_MCF_MCFH_BCD 

mcf, mcf/h BCD value

ZB_ZCL_METERING_UNIT_UNITLESS_BCD 

Unitless BCD value

ZB_ZCL_METERING_UNIT_MJ_MJS_BCD 

MJ, MJ/h BCD value

ZB_ZCL_METERING_UNIT_KVAR_KVARH_BCD 

kVar, kVar/h BCD value

ZB_ZCL_METERING_UNIT_BCD_RESERVED 

0x8E to 0xFF reserved for future use