* cluster matching and binding apis implement binding callback fix loop fix loops * review comments * use any because it is clearer
613 lines
23 KiB
Python
613 lines
23 KiB
Python
"""
|
|
Virtual gateway for Zigbee Home Automation.
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/zha/
|
|
"""
|
|
|
|
import collections
|
|
import itertools
|
|
import logging
|
|
from homeassistant import const as ha_const
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
|
from homeassistant.helpers.entity_component import EntityComponent
|
|
from . import const as zha_const
|
|
from .const import (
|
|
COMPONENTS, CONF_DEVICE_CONFIG, DATA_ZHA, DATA_ZHA_CORE_COMPONENT, DOMAIN,
|
|
ZHA_DISCOVERY_NEW, DEVICE_CLASS, SINGLE_INPUT_CLUSTER_DEVICE_CLASS,
|
|
SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS, COMPONENT_CLUSTERS, HUMIDITY,
|
|
TEMPERATURE, ILLUMINANCE, PRESSURE, METERING, ELECTRICAL_MEASUREMENT,
|
|
GENERIC, SENSOR_TYPE, EVENT_RELAY_CLUSTERS, UNKNOWN, OPENING, ZONE,
|
|
OCCUPANCY, CLUSTER_REPORT_CONFIGS, REPORT_CONFIG_IMMEDIATE,
|
|
REPORT_CONFIG_ASAP, REPORT_CONFIG_DEFAULT, REPORT_CONFIG_MIN_INT,
|
|
REPORT_CONFIG_MAX_INT, REPORT_CONFIG_OP, SIGNAL_REMOVE,
|
|
NO_SENSOR_CLUSTERS, POWER_CONFIGURATION_CHANNEL, BINDABLE_CLUSTERS)
|
|
from .device import ZHADevice, DeviceStatus
|
|
from ..device_entity import ZhaDeviceEntity
|
|
from .channels import (
|
|
AttributeListeningChannel, EventRelayChannel, ZDOChannel
|
|
)
|
|
from .channels.general import BasicChannel
|
|
from .channels.registry import ZIGBEE_CHANNEL_REGISTRY
|
|
from .helpers import convert_ieee
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
SENSOR_TYPES = {}
|
|
BINARY_SENSOR_TYPES = {}
|
|
SMARTTHINGS_HUMIDITY_CLUSTER = 64581
|
|
EntityReference = collections.namedtuple(
|
|
'EntityReference', 'reference_id zha_device cluster_channels device_info')
|
|
|
|
|
|
class ZHAGateway:
|
|
"""Gateway that handles events that happen on the ZHA Zigbee network."""
|
|
|
|
def __init__(self, hass, config):
|
|
"""Initialize the gateway."""
|
|
self._hass = hass
|
|
self._config = config
|
|
self._component = EntityComponent(_LOGGER, DOMAIN, hass)
|
|
self._devices = {}
|
|
self._device_registry = collections.defaultdict(list)
|
|
hass.data[DATA_ZHA][DATA_ZHA_CORE_COMPONENT] = self._component
|
|
|
|
def device_joined(self, device):
|
|
"""Handle device joined.
|
|
|
|
At this point, no information about the device is known other than its
|
|
address
|
|
"""
|
|
# Wait for device_initialized, instead
|
|
pass
|
|
|
|
def raw_device_initialized(self, device):
|
|
"""Handle a device initialization without quirks loaded."""
|
|
# Wait for device_initialized, instead
|
|
pass
|
|
|
|
def device_initialized(self, device):
|
|
"""Handle device joined and basic information discovered."""
|
|
self._hass.async_create_task(
|
|
self.async_device_initialized(device, True))
|
|
|
|
def device_left(self, device):
|
|
"""Handle device leaving the network."""
|
|
pass
|
|
|
|
def device_removed(self, device):
|
|
"""Handle device being removed from the network."""
|
|
device = self._devices.pop(device.ieee, None)
|
|
self._device_registry.pop(device.ieee, None)
|
|
if device is not None:
|
|
self._hass.async_create_task(device.async_unsub_dispatcher())
|
|
async_dispatcher_send(
|
|
self._hass,
|
|
"{}_{}".format(SIGNAL_REMOVE, str(device.ieee))
|
|
)
|
|
|
|
def get_device(self, ieee_str):
|
|
"""Return ZHADevice for given ieee."""
|
|
ieee = convert_ieee(ieee_str)
|
|
return self._devices.get(ieee)
|
|
|
|
def get_entity_reference(self, entity_id):
|
|
"""Return entity reference for given entity_id if found."""
|
|
for entity_reference in itertools.chain.from_iterable(
|
|
self.device_registry.values()):
|
|
if entity_id == entity_reference.reference_id:
|
|
return entity_reference
|
|
|
|
@property
|
|
def devices(self):
|
|
"""Return devices."""
|
|
return self._devices
|
|
|
|
@property
|
|
def device_registry(self):
|
|
"""Return entities by ieee."""
|
|
return self._device_registry
|
|
|
|
def register_entity_reference(
|
|
self, ieee, reference_id, zha_device, cluster_channels,
|
|
device_info):
|
|
"""Record the creation of a hass entity associated with ieee."""
|
|
self._device_registry[ieee].append(
|
|
EntityReference(
|
|
reference_id=reference_id,
|
|
zha_device=zha_device,
|
|
cluster_channels=cluster_channels,
|
|
device_info=device_info
|
|
)
|
|
)
|
|
|
|
@callback
|
|
def _async_get_or_create_device(self, zigpy_device):
|
|
"""Get or create a ZHA device."""
|
|
zha_device = self._devices.get(zigpy_device.ieee)
|
|
if zha_device is None:
|
|
zha_device = ZHADevice(self._hass, zigpy_device, self)
|
|
self._devices[zigpy_device.ieee] = zha_device
|
|
return zha_device
|
|
|
|
@callback
|
|
def async_device_became_available(
|
|
self, sender, is_reply, profile, cluster, src_ep, dst_ep, tsn,
|
|
command_id, args):
|
|
"""Handle tasks when a device becomes available."""
|
|
self.async_update_device(sender)
|
|
|
|
@callback
|
|
def async_update_device(self, sender):
|
|
"""Update device that has just become available."""
|
|
if sender.ieee in self.devices:
|
|
device = self.devices[sender.ieee]
|
|
# avoid a race condition during new joins
|
|
if device.status is DeviceStatus.INITIALIZED:
|
|
device.update_available(True)
|
|
|
|
async def async_device_initialized(self, device, is_new_join):
|
|
"""Handle device joined and basic information discovered (async)."""
|
|
zha_device = self._async_get_or_create_device(device)
|
|
discovery_infos = []
|
|
for endpoint_id, endpoint in device.endpoints.items():
|
|
self._async_process_endpoint(
|
|
endpoint_id, endpoint, discovery_infos, device, zha_device,
|
|
is_new_join
|
|
)
|
|
|
|
if is_new_join:
|
|
# configure the device
|
|
await zha_device.async_configure()
|
|
elif not zha_device.available and zha_device.power_source is not None\
|
|
and zha_device.power_source != BasicChannel.BATTERY\
|
|
and zha_device.power_source != BasicChannel.UNKNOWN:
|
|
# the device is currently marked unavailable and it isn't a battery
|
|
# powered device so we should be able to update it now
|
|
_LOGGER.debug(
|
|
"attempting to request fresh state for %s %s",
|
|
zha_device.name,
|
|
"with power source: {}".format(
|
|
BasicChannel.POWER_SOURCES.get(zha_device.power_source)
|
|
)
|
|
)
|
|
await zha_device.async_initialize(from_cache=False)
|
|
else:
|
|
await zha_device.async_initialize(from_cache=True)
|
|
|
|
for discovery_info in discovery_infos:
|
|
_async_dispatch_discovery_info(
|
|
self._hass,
|
|
is_new_join,
|
|
discovery_info
|
|
)
|
|
|
|
device_entity = _async_create_device_entity(zha_device)
|
|
await self._component.async_add_entities([device_entity])
|
|
|
|
if is_new_join:
|
|
# because it's a new join we can immediately mark the device as
|
|
# available. We do it here because the entities didn't exist above
|
|
zha_device.update_available(True)
|
|
|
|
@callback
|
|
def _async_process_endpoint(
|
|
self, endpoint_id, endpoint, discovery_infos, device, zha_device,
|
|
is_new_join):
|
|
"""Process an endpoint on a zigpy device."""
|
|
import zigpy.profiles
|
|
|
|
if endpoint_id == 0: # ZDO
|
|
_async_create_cluster_channel(
|
|
endpoint,
|
|
zha_device,
|
|
is_new_join,
|
|
channel_class=ZDOChannel
|
|
)
|
|
return
|
|
|
|
component = None
|
|
profile_clusters = ([], [])
|
|
device_key = "{}-{}".format(device.ieee, endpoint_id)
|
|
node_config = {}
|
|
if CONF_DEVICE_CONFIG in self._config:
|
|
node_config = self._config[CONF_DEVICE_CONFIG].get(
|
|
device_key, {}
|
|
)
|
|
|
|
if endpoint.profile_id in zigpy.profiles.PROFILES:
|
|
profile = zigpy.profiles.PROFILES[endpoint.profile_id]
|
|
if zha_const.DEVICE_CLASS.get(endpoint.profile_id,
|
|
{}).get(endpoint.device_type,
|
|
None):
|
|
profile_clusters = profile.CLUSTERS[endpoint.device_type]
|
|
profile_info = zha_const.DEVICE_CLASS[endpoint.profile_id]
|
|
component = profile_info[endpoint.device_type]
|
|
|
|
if ha_const.CONF_TYPE in node_config:
|
|
component = node_config[ha_const.CONF_TYPE]
|
|
profile_clusters = zha_const.COMPONENT_CLUSTERS[component]
|
|
|
|
if component and component in COMPONENTS:
|
|
profile_match = _async_handle_profile_match(
|
|
self._hass, endpoint, profile_clusters, zha_device,
|
|
component, device_key, is_new_join)
|
|
discovery_infos.append(profile_match)
|
|
|
|
discovery_infos.extend(_async_handle_single_cluster_matches(
|
|
self._hass,
|
|
endpoint,
|
|
zha_device,
|
|
profile_clusters,
|
|
device_key,
|
|
is_new_join
|
|
))
|
|
|
|
|
|
@callback
|
|
def _async_create_cluster_channel(cluster, zha_device, is_new_join,
|
|
channels=None, channel_class=None):
|
|
"""Create a cluster channel and attach it to a device."""
|
|
if channel_class is None:
|
|
channel_class = ZIGBEE_CHANNEL_REGISTRY.get(cluster.cluster_id,
|
|
AttributeListeningChannel)
|
|
channel = channel_class(cluster, zha_device)
|
|
zha_device.add_cluster_channel(channel)
|
|
if channels is not None:
|
|
channels.append(channel)
|
|
|
|
|
|
@callback
|
|
def _async_dispatch_discovery_info(hass, is_new_join, discovery_info):
|
|
"""Dispatch or store discovery information."""
|
|
if not discovery_info['channels']:
|
|
_LOGGER.warning(
|
|
"there are no channels in the discovery info: %s", discovery_info)
|
|
return
|
|
component = discovery_info['component']
|
|
if is_new_join:
|
|
async_dispatcher_send(
|
|
hass,
|
|
ZHA_DISCOVERY_NEW.format(component),
|
|
discovery_info
|
|
)
|
|
else:
|
|
hass.data[DATA_ZHA][component][discovery_info['unique_id']] = \
|
|
discovery_info
|
|
|
|
|
|
@callback
|
|
def _async_handle_profile_match(hass, endpoint, profile_clusters, zha_device,
|
|
component, device_key, is_new_join):
|
|
"""Dispatch a profile match to the appropriate HA component."""
|
|
in_clusters = [endpoint.in_clusters[c]
|
|
for c in profile_clusters[0]
|
|
if c in endpoint.in_clusters]
|
|
out_clusters = [endpoint.out_clusters[c]
|
|
for c in profile_clusters[1]
|
|
if c in endpoint.out_clusters]
|
|
|
|
channels = []
|
|
|
|
for cluster in in_clusters:
|
|
_async_create_cluster_channel(
|
|
cluster, zha_device, is_new_join, channels=channels)
|
|
|
|
for cluster in out_clusters:
|
|
_async_create_cluster_channel(
|
|
cluster, zha_device, is_new_join, channels=channels)
|
|
|
|
discovery_info = {
|
|
'unique_id': device_key,
|
|
'zha_device': zha_device,
|
|
'channels': channels,
|
|
'component': component
|
|
}
|
|
|
|
if component == 'binary_sensor':
|
|
discovery_info.update({SENSOR_TYPE: UNKNOWN})
|
|
cluster_ids = []
|
|
cluster_ids.extend(profile_clusters[0])
|
|
cluster_ids.extend(profile_clusters[1])
|
|
for cluster_id in cluster_ids:
|
|
if cluster_id in BINARY_SENSOR_TYPES:
|
|
discovery_info.update({
|
|
SENSOR_TYPE: BINARY_SENSOR_TYPES.get(
|
|
cluster_id, UNKNOWN)
|
|
})
|
|
break
|
|
|
|
return discovery_info
|
|
|
|
|
|
@callback
|
|
def _async_handle_single_cluster_matches(hass, endpoint, zha_device,
|
|
profile_clusters, device_key,
|
|
is_new_join):
|
|
"""Dispatch single cluster matches to HA components."""
|
|
cluster_matches = []
|
|
cluster_match_results = []
|
|
for cluster in endpoint.in_clusters.values():
|
|
# don't let profiles prevent these channels from being created
|
|
if cluster.cluster_id in NO_SENSOR_CLUSTERS:
|
|
cluster_match_results.append(
|
|
_async_handle_channel_only_cluster_match(
|
|
zha_device,
|
|
cluster,
|
|
is_new_join,
|
|
))
|
|
|
|
if cluster.cluster_id not in profile_clusters[0]:
|
|
cluster_match_results.append(_async_handle_single_cluster_match(
|
|
hass,
|
|
zha_device,
|
|
cluster,
|
|
device_key,
|
|
zha_const.SINGLE_INPUT_CLUSTER_DEVICE_CLASS,
|
|
is_new_join,
|
|
))
|
|
|
|
for cluster in endpoint.out_clusters.values():
|
|
if cluster.cluster_id not in profile_clusters[1]:
|
|
cluster_match_results.append(_async_handle_single_cluster_match(
|
|
hass,
|
|
zha_device,
|
|
cluster,
|
|
device_key,
|
|
zha_const.SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS,
|
|
is_new_join,
|
|
))
|
|
|
|
if cluster.cluster_id in EVENT_RELAY_CLUSTERS:
|
|
_async_create_cluster_channel(
|
|
cluster,
|
|
zha_device,
|
|
is_new_join,
|
|
channel_class=EventRelayChannel
|
|
)
|
|
|
|
for cluster_match in cluster_match_results:
|
|
if cluster_match is not None:
|
|
cluster_matches.append(cluster_match)
|
|
return cluster_matches
|
|
|
|
|
|
@callback
|
|
def _async_handle_channel_only_cluster_match(
|
|
zha_device, cluster, is_new_join):
|
|
"""Handle a channel only cluster match."""
|
|
_async_create_cluster_channel(cluster, zha_device, is_new_join)
|
|
|
|
|
|
@callback
|
|
def _async_handle_single_cluster_match(hass, zha_device, cluster, device_key,
|
|
device_classes, is_new_join):
|
|
"""Dispatch a single cluster match to a HA component."""
|
|
component = None # sub_component = None
|
|
for cluster_type, candidate_component in device_classes.items():
|
|
if isinstance(cluster_type, int):
|
|
if cluster.cluster_id == cluster_type:
|
|
component = candidate_component
|
|
elif isinstance(cluster, cluster_type):
|
|
component = candidate_component
|
|
break
|
|
|
|
if component is None or component not in COMPONENTS:
|
|
return
|
|
channels = []
|
|
_async_create_cluster_channel(cluster, zha_device, is_new_join,
|
|
channels=channels)
|
|
|
|
cluster_key = "{}-{}".format(device_key, cluster.cluster_id)
|
|
discovery_info = {
|
|
'unique_id': cluster_key,
|
|
'zha_device': zha_device,
|
|
'channels': channels,
|
|
'entity_suffix': '_{}'.format(cluster.cluster_id),
|
|
'component': component
|
|
}
|
|
|
|
if component == 'sensor':
|
|
discovery_info.update({
|
|
SENSOR_TYPE: SENSOR_TYPES.get(cluster.cluster_id, GENERIC)
|
|
})
|
|
if component == 'binary_sensor':
|
|
discovery_info.update({
|
|
SENSOR_TYPE: BINARY_SENSOR_TYPES.get(cluster.cluster_id, UNKNOWN)
|
|
})
|
|
|
|
return discovery_info
|
|
|
|
|
|
@callback
|
|
def _async_create_device_entity(zha_device):
|
|
"""Create ZHADeviceEntity."""
|
|
device_entity_channels = []
|
|
if POWER_CONFIGURATION_CHANNEL in zha_device.cluster_channels:
|
|
channel = zha_device.cluster_channels.get(POWER_CONFIGURATION_CHANNEL)
|
|
device_entity_channels.append(channel)
|
|
return ZhaDeviceEntity(zha_device, device_entity_channels)
|
|
|
|
|
|
def establish_device_mappings():
|
|
"""Establish mappings between ZCL objects and HA ZHA objects.
|
|
|
|
These cannot be module level, as importing bellows must be done in a
|
|
in a function.
|
|
"""
|
|
from zigpy import zcl
|
|
from zigpy.profiles import PROFILES, zha, zll
|
|
|
|
if zha.PROFILE_ID not in DEVICE_CLASS:
|
|
DEVICE_CLASS[zha.PROFILE_ID] = {}
|
|
if zll.PROFILE_ID not in DEVICE_CLASS:
|
|
DEVICE_CLASS[zll.PROFILE_ID] = {}
|
|
|
|
EVENT_RELAY_CLUSTERS.append(zcl.clusters.general.LevelControl.cluster_id)
|
|
EVENT_RELAY_CLUSTERS.append(zcl.clusters.general.OnOff.cluster_id)
|
|
|
|
NO_SENSOR_CLUSTERS.append(zcl.clusters.general.Basic.cluster_id)
|
|
NO_SENSOR_CLUSTERS.append(
|
|
zcl.clusters.general.PowerConfiguration.cluster_id)
|
|
BINDABLE_CLUSTERS.append(zcl.clusters.general.LevelControl.cluster_id)
|
|
BINDABLE_CLUSTERS.append(zcl.clusters.general.OnOff.cluster_id)
|
|
|
|
DEVICE_CLASS[zha.PROFILE_ID].update({
|
|
zha.DeviceType.ON_OFF_SWITCH: 'binary_sensor',
|
|
zha.DeviceType.LEVEL_CONTROL_SWITCH: 'binary_sensor',
|
|
zha.DeviceType.REMOTE_CONTROL: 'binary_sensor',
|
|
zha.DeviceType.SMART_PLUG: 'switch',
|
|
zha.DeviceType.LEVEL_CONTROLLABLE_OUTPUT: 'light',
|
|
zha.DeviceType.ON_OFF_LIGHT: 'light',
|
|
zha.DeviceType.DIMMABLE_LIGHT: 'light',
|
|
zha.DeviceType.COLOR_DIMMABLE_LIGHT: 'light',
|
|
zha.DeviceType.ON_OFF_LIGHT_SWITCH: 'binary_sensor',
|
|
zha.DeviceType.DIMMER_SWITCH: 'binary_sensor',
|
|
zha.DeviceType.COLOR_DIMMER_SWITCH: 'binary_sensor',
|
|
})
|
|
|
|
DEVICE_CLASS[zll.PROFILE_ID].update({
|
|
zll.DeviceType.ON_OFF_LIGHT: 'light',
|
|
zll.DeviceType.ON_OFF_PLUGIN_UNIT: 'switch',
|
|
zll.DeviceType.DIMMABLE_LIGHT: 'light',
|
|
zll.DeviceType.DIMMABLE_PLUGIN_UNIT: 'light',
|
|
zll.DeviceType.COLOR_LIGHT: 'light',
|
|
zll.DeviceType.EXTENDED_COLOR_LIGHT: 'light',
|
|
zll.DeviceType.COLOR_TEMPERATURE_LIGHT: 'light',
|
|
zll.DeviceType.COLOR_CONTROLLER: 'binary_sensor',
|
|
zll.DeviceType.COLOR_SCENE_CONTROLLER: 'binary_sensor',
|
|
zll.DeviceType.CONTROLLER: 'binary_sensor',
|
|
zll.DeviceType.SCENE_CONTROLLER: 'binary_sensor',
|
|
zll.DeviceType.ON_OFF_SENSOR: 'binary_sensor',
|
|
})
|
|
|
|
SINGLE_INPUT_CLUSTER_DEVICE_CLASS.update({
|
|
zcl.clusters.general.OnOff: 'switch',
|
|
zcl.clusters.measurement.RelativeHumidity: 'sensor',
|
|
# this works for now but if we hit conflicts we can break it out to
|
|
# a different dict that is keyed by manufacturer
|
|
SMARTTHINGS_HUMIDITY_CLUSTER: 'sensor',
|
|
zcl.clusters.measurement.TemperatureMeasurement: 'sensor',
|
|
zcl.clusters.measurement.PressureMeasurement: 'sensor',
|
|
zcl.clusters.measurement.IlluminanceMeasurement: 'sensor',
|
|
zcl.clusters.smartenergy.Metering: 'sensor',
|
|
zcl.clusters.homeautomation.ElectricalMeasurement: 'sensor',
|
|
zcl.clusters.security.IasZone: 'binary_sensor',
|
|
zcl.clusters.measurement.OccupancySensing: 'binary_sensor',
|
|
zcl.clusters.hvac.Fan: 'fan',
|
|
})
|
|
|
|
SINGLE_OUTPUT_CLUSTER_DEVICE_CLASS.update({
|
|
zcl.clusters.general.OnOff: 'binary_sensor',
|
|
})
|
|
|
|
SENSOR_TYPES.update({
|
|
zcl.clusters.measurement.RelativeHumidity.cluster_id: HUMIDITY,
|
|
SMARTTHINGS_HUMIDITY_CLUSTER: HUMIDITY,
|
|
zcl.clusters.measurement.TemperatureMeasurement.cluster_id:
|
|
TEMPERATURE,
|
|
zcl.clusters.measurement.PressureMeasurement.cluster_id: PRESSURE,
|
|
zcl.clusters.measurement.IlluminanceMeasurement.cluster_id:
|
|
ILLUMINANCE,
|
|
zcl.clusters.smartenergy.Metering.cluster_id: METERING,
|
|
zcl.clusters.homeautomation.ElectricalMeasurement.cluster_id:
|
|
ELECTRICAL_MEASUREMENT,
|
|
})
|
|
|
|
BINARY_SENSOR_TYPES.update({
|
|
zcl.clusters.measurement.OccupancySensing.cluster_id: OCCUPANCY,
|
|
zcl.clusters.security.IasZone.cluster_id: ZONE,
|
|
zcl.clusters.general.OnOff.cluster_id: OPENING
|
|
})
|
|
|
|
CLUSTER_REPORT_CONFIGS.update({
|
|
zcl.clusters.general.Alarms.cluster_id: [],
|
|
zcl.clusters.general.Basic.cluster_id: [],
|
|
zcl.clusters.general.Commissioning.cluster_id: [],
|
|
zcl.clusters.general.Identify.cluster_id: [],
|
|
zcl.clusters.general.Groups.cluster_id: [],
|
|
zcl.clusters.general.Scenes.cluster_id: [],
|
|
zcl.clusters.general.Partition.cluster_id: [],
|
|
zcl.clusters.general.Ota.cluster_id: [],
|
|
zcl.clusters.general.PowerProfile.cluster_id: [],
|
|
zcl.clusters.general.ApplianceControl.cluster_id: [],
|
|
zcl.clusters.general.PollControl.cluster_id: [],
|
|
zcl.clusters.general.GreenPowerProxy.cluster_id: [],
|
|
zcl.clusters.general.OnOffConfiguration.cluster_id: [],
|
|
zcl.clusters.general.OnOff.cluster_id: [{
|
|
'attr': 'on_off',
|
|
'config': REPORT_CONFIG_IMMEDIATE
|
|
}],
|
|
zcl.clusters.general.LevelControl.cluster_id: [{
|
|
'attr': 'current_level',
|
|
'config': REPORT_CONFIG_ASAP
|
|
}],
|
|
zcl.clusters.lighting.Color.cluster_id: [{
|
|
'attr': 'current_x',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}, {
|
|
'attr': 'current_y',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}, {
|
|
'attr': 'color_temperature',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}],
|
|
zcl.clusters.measurement.RelativeHumidity.cluster_id: [{
|
|
'attr': 'measured_value',
|
|
'config': (
|
|
REPORT_CONFIG_MIN_INT,
|
|
REPORT_CONFIG_MAX_INT,
|
|
50
|
|
)
|
|
}],
|
|
zcl.clusters.measurement.TemperatureMeasurement.cluster_id: [{
|
|
'attr': 'measured_value',
|
|
'config': (
|
|
REPORT_CONFIG_MIN_INT,
|
|
REPORT_CONFIG_MAX_INT,
|
|
50
|
|
)
|
|
}],
|
|
zcl.clusters.measurement.PressureMeasurement.cluster_id: [{
|
|
'attr': 'measured_value',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}],
|
|
zcl.clusters.measurement.IlluminanceMeasurement.cluster_id: [{
|
|
'attr': 'measured_value',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}],
|
|
zcl.clusters.smartenergy.Metering.cluster_id: [{
|
|
'attr': 'instantaneous_demand',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}],
|
|
zcl.clusters.homeautomation.ElectricalMeasurement.cluster_id: [{
|
|
'attr': 'active_power',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}],
|
|
zcl.clusters.general.PowerConfiguration.cluster_id: [{
|
|
'attr': 'battery_voltage',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}, {
|
|
'attr': 'battery_percentage_remaining',
|
|
'config': REPORT_CONFIG_DEFAULT
|
|
}],
|
|
zcl.clusters.measurement.OccupancySensing.cluster_id: [{
|
|
'attr': 'occupancy',
|
|
'config': REPORT_CONFIG_IMMEDIATE
|
|
}],
|
|
zcl.clusters.hvac.Fan.cluster_id: [{
|
|
'attr': 'fan_mode',
|
|
'config': REPORT_CONFIG_OP
|
|
}],
|
|
})
|
|
|
|
# A map of hass components to all Zigbee clusters it could use
|
|
for profile_id, classes in DEVICE_CLASS.items():
|
|
profile = PROFILES[profile_id]
|
|
for device_type, component in classes.items():
|
|
if component not in COMPONENT_CLUSTERS:
|
|
COMPONENT_CLUSTERS[component] = (set(), set())
|
|
clusters = profile.CLUSTERS[device_type]
|
|
COMPONENT_CLUSTERS[component][0].update(clusters[0])
|
|
COMPONENT_CLUSTERS[component][1].update(clusters[1])
|