Add storage helper to ZHA and use it for the device node descriptor (#21500)
* node descriptor implementation add info to device info disable pylint rule check for success * review comments * send manufacturer code for get attr value for mfg clusters * ST report configs * do zdo task first * add guard * use faster reporting config * disable false positive pylint
This commit is contained in:
parent
ee6f09dd29
commit
fc07d3a159
5 changed files with 273 additions and 26 deletions
|
@ -71,6 +71,7 @@ OCCUPANCY = 'occupancy'
|
|||
|
||||
ATTR_LEVEL = 'level'
|
||||
|
||||
ZDO_CHANNEL = 'zdo'
|
||||
ON_OFF_CHANNEL = 'on_off'
|
||||
ATTRIBUTE_CHANNEL = 'attribute'
|
||||
BASIC_CHANNEL = 'basic'
|
||||
|
@ -91,6 +92,8 @@ SIGNAL_REMOVE = 'remove'
|
|||
|
||||
QUIRK_APPLIED = 'quirk_applied'
|
||||
QUIRK_CLASS = 'quirk_class'
|
||||
MANUFACTURER_CODE = 'manufacturer_code'
|
||||
POWER_SOURCE = 'power_source'
|
||||
|
||||
|
||||
class RadioType(enum.Enum):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue