Koenkk / zigbee2mqtt

Zigbee 🐝 to MQTT bridge 🌉, get rid of your proprietary Zigbee bridges 🔨
https://www.zigbee2mqtt.io
GNU General Public License v3.0
12.01k stars 1.67k forks source link

Home Assistant error reporting switch as light #11445

Closed ksya closed 2 years ago

ksya commented 2 years ago

What happened?

With the latest version of Home Assistant (2022.2), I get the following error in HA and the light switch is shown as unavailble and cannot be controlled: Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}, {'topic': 'zigbee2mqtt/Hobbykamer/availability'}], 'availability_mode': 'all', 'command_topic': 'zigbee2mqtt/Hobbykamer/set', 'device': {'identifiers': ['zigbee2mqtt_0x804b50fffe0a6717'], 'manufacturer': 'SONOFF', 'model': 'Zigbee two way smart switch (ZBMINI)', 'name': 'Hobbykamer'}, 'json_attributes_topic': 'zigbee2mqtt/Hobbykamer', 'name': 'Hobbykamer', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Hobbykamer', 'unique_id': '0x804b50fffe0a6717_light_zigbee2mqtt', 'value_template': '{{ value_json.state }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration

This is the config I use in devices.yaml: '0x804b50fffe0a6717': friendly_name: Hobbykamer homeassistant: switch: type: light object_id: light

What did you expect to happen?

Light not "unavailable" and controllable

How to reproduce it (minimal and precise)

No response

Zigbee2MQTT version

1.23.0

Adapter firmware version

20200925

Adapter

Slaesh stick

Debug log

No response

Koenkk commented 2 years ago

Duplicate of https://github.com/Koenkk/zigbee2mqtt/issues/11211, fix: https://github.com/Koenkk/zigbee2mqtt/issues/11211#issuecomment-1030147823

adizag commented 2 years ago

@Koenkk seen all the issues for this problem, fixed the code according to your fix (#11211), but still can't get the light entities after upgrading to 2022.2.

What shall I do??

TNX!

HA entities: image

my setup:

  '0xec1bbdfffe2c55be':
    friendly_name: Mamad 2nd
    homeassistant:
      switch_l1:
        type: light
        object_id: mamad_2nd_light_l1
      light_l1:
        name: mamad_2nd_l1
        value_template: null
        state_value_template: '{{ value_json.state_l1 }}'
      switch_l2:
        type: light
        object_id: mamad_2nd_light_l2
      light_l2:
        name: mamad_2nd_l2
        value_template: null
        state_value_template: '{{ value_json.state_l2 }}'

HA log:

Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Stairs Down/l2/set', 'device': {'identifiers': ['zigbee2mqtt_0x5c0272fffe8ef707'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Stairs Down'}, 'json_attributes_topic': 'zigbee2mqtt/Stairs Down', 'name': 'Stairs Down stairs down light 2', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Stairs Down', 'unique_id': '0x5c0272fffe8ef707_stairs_down_light_2_zigbee2mqtt', 'value_template': '{{ value_json.state_l2 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration
Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Mamad 2nd/l1/set', 'device': {'identifiers': ['zigbee2mqtt_0xec1bbdfffe2c55be'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Mamad 2nd'}, 'json_attributes_topic': 'zigbee2mqtt/Mamad 2nd', 'name': 'Mamad 2nd mamad 2nd light l1', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Mamad 2nd', 'unique_id': '0xec1bbdfffe2c55be_mamad_2nd_light_l1_zigbee2mqtt', 'value_template': '{{ value_json.state_l1 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration
Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Mamad 2nd/l2/set', 'device': {'identifiers': ['zigbee2mqtt_0xec1bbdfffe2c55be'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Mamad 2nd'}, 'json_attributes_topic': 'zigbee2mqtt/Mamad 2nd', 'name': 'Mamad 2nd mamad 2nd light l2', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Mamad 2nd', 'unique_id': '0xec1bbdfffe2c55be_mamad_2nd_light_l2_zigbee2mqtt', 'value_template': '{{ value_json.state_l2 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration
Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Mamad/l1/set', 'device': {'identifiers': ['zigbee2mqtt_0x5c0272fffe8ef714'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Mamad'}, 'json_attributes_topic': 'zigbee2mqtt/Mamad', 'name': 'Mamad mamad light 1', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Mamad', 'unique_id': '0x5c0272fffe8ef714_mamad_light_1_zigbee2mqtt', 'value_template': '{{ value_json.state_l1 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration
Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Mamad/l2/set', 'device': {'identifiers': ['zigbee2mqtt_0x5c0272fffe8ef714'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Mamad'}, 'json_attributes_topic': 'zigbee2mqtt/Mamad', 'name': 'Mamad mamad light 2', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Mamad', 'unique_id': '0x5c0272fffe8ef714_mamad_light_2_zigbee2mqtt', 'value_template': '{{ value_json.state_l2 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration

Z2M Logs:

Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f7805b/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a25d21/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f25853/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f25cb9/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a25f66/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/switch/0xec1bbdfffe2c55be/switch_l1/config' with data ''
Zigbee2MQTT:debug 2022-02-16 23:06:12: Received MQTT message on 'homeassistant/switch/0xec1bbdfffe2c55be/switch_l2/config' with data ''
Zigbee2MQTT:debug 2022-02-16 23:06:35: Received MQTT message on 'zigbee2mqtt/Mamad/set' with data '{"state_l1":"OFF"}'
Zigbee2MQTT:debug 2022-02-16 23:06:35: Publishing 'set' 'state' to 'Mamad'
Zigbee2MQTT:info  2022-02-16 23:06:35: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":23,"state_l1":"OFF","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-16 23:06:35: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:35: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:35: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genOnOff', data '{"onOff":0}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:06:35: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"OFF","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-16 23:06:35: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:35: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:36: Received MQTT message on 'zigbee2mqtt/Mamad/set' with data '{"state_l1":"ON"}'
Zigbee2MQTT:debug 2022-02-16 23:06:36: Publishing 'set' 'state' to 'Mamad'
Zigbee2MQTT:info  2022-02-16 23:06:36: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"ON","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-16 23:06:36: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:36: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:36: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genOnOff', data '{"onOff":1}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:06:36: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"ON","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-16 23:06:36: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:36: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:38: Received MQTT message on 'zigbee2mqtt/Mamad/set' with data '{"state_l2":"OFF"}'
Zigbee2MQTT:debug 2022-02-16 23:06:38: Publishing 'set' 'state' to 'Mamad'
Zigbee2MQTT:info  2022-02-16 23:06:38: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"ON","state_l2":"OFF"}'
Zigbee2MQTT:info  2022-02-16 23:06:38: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:38: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:38: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genOnOff', data '{"onOff":0}' from endpoint 2 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:06:38: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"ON","state_l2":"OFF"}'
Zigbee2MQTT:info  2022-02-16 23:06:38: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:38: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:38: Received MQTT message on 'zigbee2mqtt/Mamad/set' with data '{"state_l2":"ON"}'
Zigbee2MQTT:debug 2022-02-16 23:06:38: Publishing 'set' 'state' to 'Mamad'
Zigbee2MQTT:info  2022-02-16 23:06:39: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"ON","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-16 23:06:39: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:39: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:06:39: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genOnOff', data '{"onOff":1}' from endpoint 2 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:06:39: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":26,"state_l1":"ON","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-16 23:06:39: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-16 23:06:39: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:debug 2022-02-16 23:07:06: Received Zigbee message from 'Stairs Down', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:07:18: Received Zigbee message from 'motion_sensor_master_bedroom', type 'attributeReport', cluster 'msIlluminanceMeasurement', data '{"measuredValue":7}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:07:18: MQTT publish: topic 'zigbee2mqtt/motion_sensor_master_bedroom', payload '{"battery":100,"illuminance":7,"illuminance_lux":7,"linkquality":73,"occupancy":true,"temperature":26,"voltage":3055}'
Zigbee2MQTT:debug 2022-02-16 23:07:18: Received Zigbee message from 'motion_sensor_master_bedroom', type 'attributeReport', cluster 'msOccupancySensing', data '{"occupancy":1}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:07:18: MQTT publish: topic 'zigbee2mqtt/motion_sensor_master_bedroom', payload '{"battery":100,"illuminance":7,"illuminance_lux":7,"linkquality":70,"occupancy":true,"temperature":26,"voltage":3055}'
Zigbee2MQTT:debug 2022-02-16 23:08:29: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:08:41: Received Zigbee message from 'Mamad 2nd', type 'attributeReport', cluster 'genBasic', data '{"65506":19,"appVersion":128}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:08:44: Received Zigbee message from 'Stairs Up', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:08:48: MQTT publish: topic 'zigbee2mqtt/motion_sensor_master_bedroom', payload '{"battery":100,"illuminance":7,"illuminance_lux":7,"linkquality":70,"occupancy":false,"temperature":26,"voltage":3055}'
Zigbee2MQTT:debug 2022-02-16 23:09:42: Received Zigbee message from 'motion_sensor_bathroom', type 'attributeReport', cluster 'genBasic', data '{"65281":{"1":3055,"10":0,"100":0,"11":25,"3":25,"4":5032,"5":23,"6":[0,1]}}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:09:42: MQTT publish: topic 'zigbee2mqtt/motion_sensor_bathroom', payload '{"battery":100,"illuminance":25,"illuminance_lux":25,"linkquality":39,"occupancy":false,"temperature":25,"voltage":3055}'
Zigbee2MQTT:debug 2022-02-16 23:10:16: Received Zigbee message from 'Stairs Down', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:11:09: Saving state to file /app/data/state.json
Zigbee2MQTT:debug 2022-02-16 23:11:31: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:11:57: Received Zigbee message from 'Mamad 2nd', type 'attributeReport', cluster 'genBasic', data '{"65506":19,"appVersion":128}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:11:57: Received Zigbee message from 'Stairs Up', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0

bee2MQTT:debug 2022-02-16 23:12:22: Received Zigbee message from 'motion_sensor_shower_horim', type 'attributeReport', cluster 'genBasic', data '{"65281":{"1":3045,"10":0,"100":0,"11":7,"3":24,"4":5032,"5":15,"6":[0,5]}}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:12:22: MQTT publish: topic 'zigbee2mqtt/motion_sensor_shower_horim', payload '{"battery":100,"illuminance":7,"illuminance_lux":7,"linkquality":47,"occupancy":false,"temperature":24,"voltage":3045}'
Zigbee2MQTT:debug 2022-02-16 23:13:32: Received Zigbee message from 'Stairs Down', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-16 23:14:15: Received Zigbee message from 'motion_sensor_girls', type 'attributeReport', cluster 'genBasic', data '{"65281":{"1":3045,"10":45750,"100":0,"11":8,"3":28,"4":5032,"5":26,"6":[0,7]}}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-16 23:14:15: MQTT publish: topic 'zigbee2mqtt/motion_sensor_girls', payload '{"battery":100,"illuminance":8,"illuminance_lux":8,"linkquality":70,"occupancy":false,"temperature":28,"voltage":3045}'
Zigbee2MQTT:debug 2022-02-16 23:14:45: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Koenkk commented 2 years ago

Can you provide the debug log from starting z2m till 10 seconds after that?

adizag commented 2 years ago

@Koenkk , here:

Zigbee2MQTT:debug 2022-02-19 23:52:57: Loaded state from file /app/data/state.json
Zigbee2MQTT:info  2022-02-19 23:52:57: Logging to console and directory: '/app/data/log/2022-02-19.23-52-54' filename: log.txt
Zigbee2MQTT:debug 2022-02-19 23:52:57: Removing old log directory '/app/data/log/2022-02-16.09-47-22'
Zigbee2MQTT:info  2022-02-19 23:52:57: Starting Zigbee2MQTT version 1.23.0 (commit #6ea61ba)
Zigbee2MQTT:info  2022-02-19 23:52:57: Starting zigbee-herdsman (0.14.10)
Zigbee2MQTT:debug 2022-02-19 23:52:57: Using zigbee-herdsman with settings: '{"adapter":{"concurrent":null,"delay":null,"disableLED":false},"backupPath":"/app/data/coordinator_backup.json","databaseBackupPath":"/app/data/database.db.backup","databasePath":"/app/data/database.db","network":{"channelList":[11],"extendedPanID":[221,221,221,221,221,221,221,221],"networkKey":"HIDDEN","panID":6754},"serialPort":{"path":"/dev/ttyACM0"}}'
Zigbee2MQTT:info  2022-02-19 23:52:58: zigbee-herdsman started (resumed)
Zigbee2MQTT:info  2022-02-19 23:52:58: Coordinator firmware version: '{"meta":{"maintrel":3,"majorrel":2,"minorrel":6,"product":0,"revision":20201127,"transportrev":2},"type":"zStack12"}'
Zigbee2MQTT:debug 2022-02-19 23:52:58: Zigbee network parameters: {"channel":11,"extendedPanID":"0x00124b001cdd3b52","panID":6754}
Zigbee2MQTT:info  2022-02-19 23:52:58: Currently 11 devices are joined:
Zigbee2MQTT:info  2022-02-19 23:52:58: Stairs Up (0xbc33acfffec80607): ZM-L03E-Z - Zemismart Smart light switch - 3 gang with neutral wire (Router)
Zigbee2MQTT:info  2022-02-19 23:52:58: Stairs Down (0x5c0272fffe8ef707): TS0002 - TuYa 2 gang switch (Router)
Zigbee2MQTT:info  2022-02-19 23:52:58: Mamad 2nd (0xec1bbdfffe2c55be): TS0002 - TuYa 2 gang switch (Router)
Zigbee2MQTT:info  2022-02-19 23:52:58: Mamad (0x5c0272fffe8ef714): TS0002 - TuYa 2 gang switch (Router)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_master_bedroom (0x00158d0006a261df): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_bathroom (0x00158d0006a157a6): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_shower_horim (0x00158d0006f7805b): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_girls (0x00158d0006a25d21): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_guests_room (0x00158d0006f25853): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_laundry_room (0x00158d0006f25cb9): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:info  2022-02-19 23:52:58: motion_sensor_salon_kitchen (0x00158d0006a25f66): RTCGQ11LM - Xiaomi Aqara human body movement and illuminance sensor (EndDevice)
Zigbee2MQTT:warn  2022-02-19 23:52:58: `permit_join` set to  `true` in configuration.yaml.
Zigbee2MQTT:warn  2022-02-19 23:52:58: Allowing new devices to join.
Zigbee2MQTT:warn  2022-02-19 23:52:58: Set `permit_join` to `false` once you joined all devices.
Zigbee2MQTT:info  2022-02-19 23:52:58: Zigbee: allowing new devices to join.
Zigbee2MQTT:info  2022-02-19 23:52:59: Connecting to MQTT server at mqtt://10.0.0.251
Zigbee2MQTT:debug 2022-02-19 23:52:59: Using MQTT keepalive: 60
Zigbee2MQTT:debug 2022-02-19 23:52:59: Using MQTT anonymous login
Zigbee2MQTT:info  2022-02-19 23:52:59: Connected to MQTT server
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'zigbee2mqtt/bridge/state', payload 'online'
Zigbee2MQTT:debug 2022-02-19 23:52:59: Received MQTT message on 'zigbee2mqtt/bridge/info' with data '{"commit":"6ea61ba","config":{"advanced":{"adapter_concurrent":null,"adapter_delay":null,"availability_blacklist":[],"availability_blocklist":[],"availability_passlist":[],"availability_whitelist":[],"cache_state":true,"cache_state_persistent":true,"cache_state_send_on_startup":true,"channel":11,"elapsed":false,"ext_pan_id":[221,221,221,221,221,221,221,221],"last_seen":"disable","legacy_api":true,"log_directory":"/app/data/log/%TIMESTAMP%","log_file":"log.txt","log_level":"debug","log_output":["console","file"],"log_rotation":true,"log_symlink_current":false,"log_syslog":{},"output":"json","pan_id":6754,"report":false,"soft_reset_timeout":0,"timestamp_format":"YYYY-MM-DD HH:mm:ss"},"blocklist":[],"device_options":{},"devices":{"0x00158d0006a157a6":{"friendly_name":"motion_sensor_bathroom"},"0x00158d0006a25d21":{"friendly_name":"motion_sensor_girls"},"0x00158d0006a25f66":{"friendly_name":"motion_sensor_salon_kitchen","occupancy_timeout":10},"0x00158d0006a261df":{"friendly_name":"motion_sensor_master_bedroom"},"0x00158d0006f25853":{"friendly_name":"motion_sensor_guests_room"},"0x00158d0006f25cb9":{"friendly_name":"motion_sensor_laundry_room"},"0x00158d0006f7805b":{"friendly_name":"motion_sensor_shower_horim"},"0x5c0272fffe8ef707":{"friendly_name":"Stairs Down","homeassistant":{"light_l1":{"name":"stairs_down_light_1","state_value_template":"{{ value_json.state_l1 }}","value_template":null},"light_l2":{"name":"stairs_down_light_2","state_value_template":"{{ value_json.state_l2 }}","value_template":null},"switch_l1":{"object_id":"stairs_down_light_1","type":"light"},"switch_l2":{"object_id":"stairs_down_light_2","type":"light"}}},"0x5c0272fffe8ef714":{"friendly_name":"Mamad","homeassistant":{"light_l1":{"name":"mamad_1","state_value_template":"{{ value_json.state_l1 }}","value_template":null},"light_l2":{"name":"mamad_2","state_value_template":"{{ value_json.state_l2 }}","value_template":null},"switch_l1":{"object_id":"mamad_light_1","type":"light"},"switch_l2":{"object_id":"mamad_light_2","type":"light"}}},"0x847127fffe9e2eda":{"friendly_name":"0x847127fffe9e2eda"},"0xbc33acfffec80607":{"friendly_name":"Stairs Up","homeassistant":{"light_center":{"name":"stairs_down_up_center","state_value_template":"{{ value_json.state_center }}","value_template":null},"light_left":{"name":"stairs_down_up_left","state_value_template":"{{ value_json.state_left }}","value_template":null},"light_right":{"name":"stairs_down_up_right","state_value_template":"{{ value_json.state_right }}","value_template":null},"switch_center":{"object_id":"stairs_up_light_center","type":"light"},"switch_left":{"object_id":"stairs_up_light_left","type":"light"},"switch_right":{"object_id":"stairs_up_light_right","type":"light"}}},"0xec1bbdfffe2c55be":{"friendly_name":"Mamad 2nd","homeassistant":{"light_l1":{"name":"mamad_2nd_l1","state_value_template":"{{ value_json.state_l1 }}","value_template":null},"light_l2":{"name":"mamad_2nd_l2","state_value_template":"{{ value_json.state_l2 }}","value_template":null},"switch_l1":{"object_id":"mamad_2nd_light_l1","type":"light"},"switch_l2":{"object_id":"mamad_2nd_light_l2","type":"light"}}}},"external_converters":[],"frontend":{"host":"0.0.0.0","port":8080},"groups":{},"homeassistant":{"discovery_topic":"homeassistant","legacy_entity_attributes":true,"legacy_triggers":true,"status_topic":"hass/status"},"map_options":{"graphviz":{"colors":{"fill":{"coordinator":"#e04e5d","enddevice":"#fff8ce","router":"#4ea3e0"},"font":{"coordinator":"#ffffff","enddevice":"#000000","router":"#ffffff"},"line":{"active":"#009900","inactive":"#994444"}}}},"mqtt":{"base_topic":"zigbee2mqtt","force_disable_retain":false,"include_device_information":false,"keepalive":60,"reject_unauthorized":true,"server":"mqtt://10.0.0.251","version":4},"ota":{"disable_automatic_update_check":false,"update_check_interval":1440},"passlist":[],"permit_join":true,"serial":{"disable_led":false,"port":"/dev/ttyACM0"}},"config_schema":{"definitions":{"device":{"properties":{"debounce":{"description":"Debounces messages of this device","title":"Debounce","type":"number"},"debounce_ignore":{"description":"Protects unique payload values of specified payload properties from overriding within debounce time","examples":["action"],"items":{"type":"string"},"title":"Ignore debounce","type":"array"},"filtered_attributes":{"description":"Filter attributes from publish payload.","examples":["temperature","battery","action"],"items":{"type":"string"},"title":"Filtered publish attributes","type":"array"},"filtered_optimistic":{"description":"Filter attributes from optimistic publish payload when calling /set. (This has no effect if optimistic is set to false).","examples":["color_mode","color_temp","color"],"items":{"type":"string"},"title":"Filtered optimistic attributes","type":"array"},"friendly_name":{"description":"Used in the MQTT topic of a device. By default this is the device ID","readOnly":true,"title":"Friendly name","type":"string"},"icon":{"description":"The user-defined device icon for the frontend. It can be a link to an image (not a path to a file) or base64 encoded data URL like: image/svg+xml;base64,PHN2ZyB3aW....R0aD","title":"Icon","type":"string"},"optimistic":{"default":true,"description":"Publish optimistic state after set","title":"Optimistic","type":"boolean"},"qos":{"description":"QoS level for MQTT messages of this device","title":"QoS","type":"number"},"retain":{"description":"Retain MQTT messages of this device","title":"Retain","type":"boolean"},"retention":{"description":"Sets the MQTT Message Expiry in seconds, Make sure to set mqtt.version to 5","title":"Retention","type":"number"}},"required":["friendly_name"],"type":"object"},"group":{"properties":{"devices":{"items":{"type":"string"},"type":"array"},"filtered_attributes":{"items":{"type":"string"},"type":"array"},"friendly_name":{"type":"string"},"optimistic":{"type":"boolean"},"qos":{"type":"number"},"retain":{"type":"boolean"}},"required":["friendly_name"],"type":"object"}},"properties":{"advanced":{"properties":{"adapter_concurrent":{"description":"Adapter concurrency (e.g. 2 for CC2531 or 16 for CC26X2R1) (default: null, uses recommended value)","requiresRestart":true,"title":"Adapter concurrency","type":["number","null"]},"adapter_delay":{"description":"Adapter delay","requiresRestart":true,"title":"Adapter delay","type":["number","null"]},"cache_state":{"default":true,"description":"MQTT message payload will contain all attributes, not only changed ones. Has to be true when integrating via Home Assistant","title":"Cache state","type":"boolean"},"cache_state_persistent":{"default":true,"description":"Persist cached state, only used when cache_state: true","title":"Persist cache state","type":"boolean"},"cache_state_send_on_startup":{"default":true,"description":"Send cached state on startup, only used when cache_state: true","title":"Send cached state on startup","type":"boolean"},"channel":{"default":11,"description":"Zigbee channel, changing requires repairing all devices! (Note: use a ZLL channel: 11, 15, 20, or 25 to avoid Problems)","examples":[15,20,25],"maximum":26,"minimum":11,"requiresRestart":true,"title":"ZigBee channel","type":"number"},"elapsed":{"default":false,"description":"Add an elapsed attribute to MQTT messages, contains milliseconds since the previous msg","title":"Elapsed","type":"boolean"},"ext_pan_id":{"description":"Zigbee extended pan ID, changing requires repairing all devices!","items":{"type":"number"},"requiresRestart":true,"title":"Ext Pan ID","type":"array"},"last_seen":{"default":"disable","description":"Add a last_seen attribute to MQTT messages, contains date/time of last Zigbee message","enum":["disable","ISO_8601","ISO_8601_local","epoch"],"title":"Last seen","type":"string"},"legacy_api":{"default":true,"description":"Disables the legacy api (false = disable)","requiresRestart":true,"title":"Legacy API","type":"boolean"},"log_directory":{"description":"Location of log directory","examples":["data/log/%TIMESTAMP%"],"requiresRestart":true,"title":"Log directory","type":"string"},"log_file":{"default":"log.txt","description":"Log file name, can also contain timestamp","examples":["zigbee2mqtt_%TIMESTAMP%.log"],"requiresRestart":true,"title":"Log file","type":"string"},"log_level":{"default":"info","description":"Logging level","enum":["info","warn","error","debug"],"title":"Log level","type":"string"},"log_output":{"description":"Output location of the log, leave empty to suppress logging","items":{"enum":["console","file","syslog"],"type":"string"},"requiresRestart":true,"title":"Log output","type":"array"},"log_rotation":{"default":true,"description":"Log rotation","requiresRestart":true,"title":"Log rotation","type":"boolean"},"log_symlink_current":{"default":false,"description":"Create symlink to current logs in the log directory","requiresRestart":true,"title":"Log symlink current","type":"boolean"},"log_syslog":{"properties":{"app_name":{"default":"Zigbee2MQTT","description":"The name of the application (Default: Zigbee2MQTT).","title":"Localhost","type":"string"},"eol":{"default":"/n","description":"The end of line character to be added to the end of the message (Default: Message without modifications).","title":"eol","type":"string"},"host":{"default":"localhost","description":"The host running syslogd, defaults to localhost.","title":"Host","type":"string"},"localhost":{"default":"localhost","description":"Host to indicate that log messages are coming from (Default: localhost).","title":"Localhost","type":"string"},"path":{"default":"/dev/log","description":"The path to the syslog dgram socket (i.e. /dev/log or /var/run/syslog for OS X).","examples":["/var/run/syslog"],"title":"Path","type":"string"},"pid":{"default":"process.pid","description":"PID of the process that log messages are coming from (Default process.pid).","title":"PID","type":"string"},"port":{"default":123,"description":"The port on the host that syslog is running on, defaults to syslogd's default port.","title":"Port","type":"number"},"protocol":{"default":"tcp4","description":"The network protocol to log over (e.g. tcp4, udp4, tls4, unix, unix-connect, etc).","examples":["udp4","tls4","unix","unix-connect"],"title":"Protocol","type":"string"},"type":{"default":"5424","description":"The type of the syslog protocol to use (Default: BSD, also valid: 5424).","title":"Type","type":"string"}},"title":"syslog","type":"object"},"network_key":{"description":"Network encryption key, changing requires repairing all devices!","oneOf":[{"title":"Network key(string)","type":"string"},{"items":{"type":"number"},"title":"Network key(array)","type":"array"}],"requiresRestart":true,"title":"Network key"},"output":{"description":"Examples when 'state' of a device is published json: topic: 'zigbee2mqtt/my_bulb' payload '{\"state\": \"ON\"}' attribute: topic 'zigbee2mqtt/my_bulb/state' payload 'ON' attribute_and_json: both json and attribute (see above)","enum":["attribute_and_json","attribute","json"],"title":"MQTT output type","type":"string"},"pan_id":{"description":"ZigBee pan ID, changing requires repairing all devices!","oneOf":[{"title":"Pan ID (string)","type":"string"},{"title":"Pan ID (number)","type":"number"}],"requiresRestart":true,"title":"Pan ID"},"timestamp_format":{"description":"Log timestamp format","examples":["YYYY-MM-DD HH:mm:ss"],"requiresRestart":true,"title":"Timestamp format","type":"string"},"transmit_power":{"description":"Transmit power of adapter, only available for Z-Stack (CC253*/CC2652/CC1352) adapters, CC2652 = 5dbm, CC1352 max is = 20dbm (5dbm default)","requiresRestart":true,"title":"Transmit power","type":["number","null"]}},"title":"Advanced","type":"object"},"availability":{"description":"Checks whether devices are online/offline","oneOf":[{"title":"Availability (simple)","type":"boolean"},{"properties":{"active":{"description":"Options for active devices (routers/mains powered)","properties":{"timeout":{"default":10,"description":"Time after which an active device will be marked as offline in minutes","requiresRestart":true,"title":"Timeout","type":"number"}},"requiresRestart":true,"title":"Active","type":"object"},"passive":{"description":"Options for passive devices (mostly battery powered)","properties":{"timeout":{"default":1500,"description":"Time after which an passive device will be marked as offline in minutes","requiresRestart":true,"title":"Timeout","type":"number"}},"requiresRestart":true,"title":"Passive","type":"object"}},"title":"Availability (advanced)","type":"object"}],"requiresRestart":true,"title":"Availability"},"ban":{"items":{"type":"string"},"readOnly":true,"requiresRestart":true,"title":"Ban (deprecated, use blocklist)","type":"array"},"blocklist":{"description":"Block devices from the network (by ieeeAddr)","items":{"type":"string"},"requiresRestart":true,"title":"Blocklist","type":"array"},"device_options":{"title":"Options that are applied to all devices","type":"object"},"devices":{"patternProperties":{"^.*$":{"$ref":"#/definitions/device"}},"propertyNames":{"pattern":"^0x[\\d\\w]{16}$"},"type":"object"},"external_converters":{"description":"You can define external converters to e.g. add support for a DiY device","examples":["DIYRuZ_FreePad.js"],"items":{"type":"string"},"requiresRestart":true,"title":"External converters","type":"array"},"frontend":{"oneOf":[{"title":"Frontend (simple)","type":"boolean"},{"properties":{"auth_token":{"description":"Enables authentication, disabled by default","requiresRestart":true,"title":"Auth token","type":["string","null"]},"host":{"default":"0.0.0.0","description":"Frontend binding host","requiresRestart":true,"title":"Bind host","type":"string"},"port":{"default":8080,"description":"Frontend binding port","requiresRestart":true,"title":"Port","type":"number"},"url":{"description":"URL on which the frontend can be reached, currently only used for the Home Assistant device configuration page","requiresRestart":true,"title":"URL","type":["string","null"]}},"title":"Frontend (advanced)","type":"object"}],"requiresRestart":true,"title":"Frontend"},"groups":{"patternProperties":{"^.*$":{"$ref":"#/definitions/group"}},"propertyNames":{"pattern":"^[\\w].*$"},"type":"object"},"homeassistant":{"default":false,"description":"Home Assistant integration (MQTT discovery)","oneOf":[{"title":"Home Assistant (simple)","type":"boolean"},{"properties":{"discovery_topic":{"description":"Home Assistant discovery topic","examples":["homeassistant"],"requiresRestart":true,"title":"Homeassistant discovery topic","type":"string"},"legacy_entity_attributes":{"default":true,"description":"Home Assistant legacy entity attributes, when enabled Zigbee2MQTT will add state attributes to each entity, additional to the separate entities and devices it already creates","title":"Home Assistant legacy entity attributes","type":"boolean"},"legacy_triggers":{"default":true,"description":"Home Assistant legacy triggers, when enabled Zigbee2mqt will send an empty 'action' or 'click' after one has been send. A 'sensor_action' and 'sensor_click' will be discoverd","title":"Home Assistant legacy triggers","type":"boolean"},"status_topic":{"description":"Home Assistant status topic","examples":["homeassistant/status"],"requiresRestart":true,"title":"Home Assistant status topic","type":"string"}},"title":"Home Assistant (advanced)","type":"object"}],"requiresRestart":true,"title":"Home Assistant integration"},"map_options":{"properties":{"graphviz":{"properties":{"colors":{"properties":{"fill":{"properties":{"coordinator":{"type":"string"},"enddevice":{"type":"string"},"router":{"type":"string"}},"type":"object"},"font":{"properties":{"coordinator":{"type":"string"},"enddevice":{"type":"string"},"router":{"type":"string"}},"type":"object"},"line":{"properties":{"active":{"type":"string"},"inactive":{"type":"string"}},"type":"object"}},"type":"object"}},"type":"object"}},"title":"Networkmap","type":"object"},"mqtt":{"properties":{"base_topic":{"default":"zigbee2mqtt","description":"MQTT base topic for Zigbee2MQTT MQTT messages","examples":["zigbee2mqtt"],"requiresRestart":true,"title":"Base topic","type":"string"},"ca":{"description":"Absolute path to SSL/TLS certificate of CAe used to sign server and client certificates","examples":["/etc/ssl/mqtt-ca.crt"],"requiresRestart":true,"title":"Certificate authority","type":"string"},"cert":{"description":"Absolute path to SSL/TLS certificate for client-authentication","examples":["/etc/ssl/mqtt-client.crt"],"requiresRestart":true,"title":"SSL/TLS certificate","type":"string"},"client_id":{"description":"MQTT client ID","examples":["MY_CLIENT_ID"],"requiresRestart":true,"title":"Client ID","type":"string"},"force_disable_retain":{"default":false,"description":"Disable retain for all send messages. ONLY enable if you MQTT broker doesn't support retained message (e.g. AWS IoT core, Azure IoT Hub, Google Cloud IoT core, IBM Watson IoT Platform). Enabling will break the Home Assistant integration","requiresRestart":true,"title":"Force disable retain","type":"boolean"},"include_device_information":{"default":false,"description":"Include device information to mqtt messages","title":"Include device information","type":"boolean"},"keepalive":{"default":60,"description":"MQTT keepalive in second","requiresRestart":true,"title":"Keepalive","type":"number"},"key":{"description":"Absolute path to SSL/TLS key for client-authentication","examples":["/etc/ssl/mqtt-client.key"],"requiresRestart":true,"title":"SSL/TLS key","type":"string"},"password":{"description":"MQTT server authentication password","examples":["ILOVEPELMENI"],"requiresRestart":true,"title":"Password","type":"string"},"reject_unauthorized":{"default":true,"description":"Disable self-signed SSL certificate","requiresRestart":true,"title":"Reject unauthorized","type":"boolean"},"server":{"description":"MQTT server URL (use mqtts:// for SSL/TLS connection)","examples":["mqtt://localhost:1883"],"requiresRestart":true,"title":"MQTT server","type":"string"},"user":{"description":"MQTT server authentication user","examples":["johnnysilverhand"],"requiresRestart":true,"title":"User","type":"string"},"version":{"default":4,"description":"MQTT protocol version","examples":[5],"requiresRestart":true,"title":"Version","type":["number","null"]}},"required":["server"],"title":"MQTT","type":"object"},"ota":{"properties":{"disable_automatic_update_check":{"default":false,"description":"Zigbee devices may request a firmware update, and do so frequently, causing Zigbee2MQTT to reach out to third party servers. If you disable these device initiated checks, you can still initiate a firmware update check manually.","title":"Disable automatic update check","type":"boolean"},"ikea_ota_use_test_url":{"default":false,"description":"Use IKEA TRADFRI OTA test server, see OTA updates documentation","requiresRestart":true,"title":"IKEA TRADFRI OTA use test url","type":"boolean"},"update_check_interval":{"default":1440,"description":"Your device may request a check for a new firmware update. This value determines how frequently third party servers may actually be contacted to look for firmware updates. The value is set in minutes, and the default is 1 day.","title":"Update check interval","type":"number"},"zigbee_ota_override_index_location":{"description":"Location of override OTA index file","examples":["index.json"],"requiresRestart":true,"title":"OTA index override file name","type":"string"}},"title":"OTA updates","type":"object"},"passlist":{"description":"Allow only certain devices to join the network (by ieeeAddr). Note that all devices not on the passlist will be removed from the network!","items":{"type":"string"},"requiresRestart":true,"title":"Passlist","type":"array"},"permit_join":{"default":false,"description":"Allow new devices to join (re-applied at restart)","title":"Permit join","type":"boolean"},"serial":{"properties":{"adapter":{"default":"auto","description":"Adapter type, not needed unless you are experiencing problems","enum":["deconz","zstack","zigate","ezsp","auto"],"requiresRestart":true,"title":"Adapter","type":["string"]},"baudrate":{"description":"Baud rate speed for serial port, this can be anything firmware support but default is 115200 for Z-Stack and EZSP, 38400 for Deconz, however note that some EZSP firmware need 57600","examples":[38400,57600,115200],"requiresRestart":true,"title":"Baudrate","type":"number"},"disable_led":{"default":false,"description":"Disable LED of the adapter if supported","requiresRestart":true,"title":"Disable led","type":"boolean"},"port":{"description":"Location of the adapter. To autodetect the port, set null","examples":["/dev/ttyACM0"],"requiresRestart":true,"title":"Port","type":["string","null"]},"rtscts":{"description":"RTS / CTS Hardware Flow Control for serial port","requiresRestart":true,"title":"RTS / CTS","type":"boolean"}},"title":"Serial","type":"object"},"whitelist":{"items":{"type":"string"},"readOnly":true,"requiresRestart":true,"title":"Whitelist (deprecated, use passlist)","type":"array"}},"required":["mqtt"],"type":"object"},"coordinator":{"ieee_address":"0x00124b001cdd3b52","meta":{"maintrel":3,"majorrel":2,"minorrel":6,"product":0,"revision":20201127,"transportrev":2},"type":"zStack12"},"log_level":"debug","network":{"channel":11,"extended_pan_id":"0x00124b001cdd3b52","pan_id":6754},"permit_join":true,"restart_required":false,"version":"1.23.0"}'
Zigbee2MQTT:debug 2022-02-19 23:52:59: Received MQTT message on 'zigbee2mqtt/bridge/devices' with data '[{"definition":null,"endpoints":{"1":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"10":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"11":{"bindings":[],"clusters":{"input":["ssIasAce"],"output":["ssIasZone","ssIasWd"]},"configured_reportings":[],"scenes":[]},"110":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"12":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"13":{"bindings":[],"clusters":{"input":["genOta"],"output":[]},"configured_reportings":[],"scenes":[]},"2":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"242":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"3":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"4":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"47":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"5":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"6":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]},"8":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]}},"friendly_name":"Coordinator","ieee_address":"0x00124b001cdd3b52","interview_completed":true,"interviewing":false,"network_address":0,"supported":false,"type":"Coordinator"},{"date_code":"","definition":{"description":"Smart light switch - 3 gang with neutral wire","exposes":[{"endpoint":"left","features":[{"access":7,"description":"On/off state of the switch","endpoint":"left","name":"state","property":"state_left","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"endpoint":"center","features":[{"access":7,"description":"On/off state of the switch","endpoint":"center","name":"state","property":"state_center","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"endpoint":"right","features":[{"access":7,"description":"On/off state of the switch","endpoint":"right","name":"state","property":"state_right","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"ZM-L03E-Z","options":[],"supports_ota":false,"vendor":"Zemismart"},"endpoints":{"1":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genBasic","genTime","genGroups","genScenes","genOnOff"],"output":["genOta"]},"configured_reportings":[],"scenes":[]},"2":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genGroups","genScenes","genOnOff"],"output":[]},"configured_reportings":[],"scenes":[]},"3":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genGroups","genScenes","genOnOff"],"output":[]},"configured_reportings":[],"scenes":[]}},"friendly_name":"Stairs Up","ieee_address":"0xbc33acfffec80607","interview_completed":true,"interviewing":false,"manufacturer":"_TZ3000_ahnes6zm","model_id":"TS0003","network_address":45750,"power_source":"Mains (single phase)","supported":true,"type":"Router"},{"date_code":"","definition":{"description":"2 gang switch","exposes":[{"endpoint":"l1","features":[{"access":7,"description":"On/off state of the switch","endpoint":"l1","name":"state","property":"state_l1","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"endpoint":"l2","features":[{"access":7,"description":"On/off state of the switch","endpoint":"l2","name":"state","property":"state_l2","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"TS0002","options":[],"supports_ota":false,"vendor":"TuYa"},"endpoints":{"1":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genBasic","genTime","genGroups","genScenes","genOnOff"],"output":["genOta"]},"configured_reportings":[],"scenes":[]},"2":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genGroups","genScenes","genOnOff"],"output":[]},"configured_reportings":[],"scenes":[]}},"friendly_name":"Stairs Down","ieee_address":"0x5c0272fffe8ef707","interview_completed":true,"interviewing":false,"manufacturer":"_TZ3000_jki3ox0o","model_id":"TS0002","network_address":698,"power_source":"Mains (single phase)","supported":true,"type":"Router"},{"date_code":"","definition":{"description":"2 gang switch","exposes":[{"endpoint":"l1","features":[{"access":7,"description":"On/off state of the switch","endpoint":"l1","name":"state","property":"state_l1","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"endpoint":"l2","features":[{"access":7,"description":"On/off state of the switch","endpoint":"l2","name":"state","property":"state_l2","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"TS0002","options":[],"supports_ota":false,"vendor":"TuYa"},"endpoints":{"1":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genBasic","genTime","genGroups","genScenes","genOnOff"],"output":["genOta"]},"configured_reportings":[],"scenes":[]},"2":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genGroups","genScenes","genOnOff"],"output":[]},"configured_reportings":[],"scenes":[]}},"friendly_name":"Mamad 2nd","ieee_address":"0xec1bbdfffe2c55be","interview_completed":true,"interviewing":false,"manufacturer":"_TYZB01_blfkemfm","model_id":"TS0002","network_address":5647,"power_source":"Mains (single phase)","supported":true,"type":"Router"},{"date_code":"","definition":{"description":"2 gang switch","exposes":[{"endpoint":"l1","features":[{"access":7,"description":"On/off state of the switch","endpoint":"l1","name":"state","property":"state_l1","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"endpoint":"l2","features":[{"access":7,"description":"On/off state of the switch","endpoint":"l2","name":"state","property":"state_l2","type":"binary","value_off":"OFF","value_on":"ON","value_toggle":"TOGGLE"}],"type":"switch"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"TS0002","options":[],"supports_ota":false,"vendor":"TuYa"},"endpoints":{"1":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genBasic","genTime","genGroups","genScenes","genOnOff"],"output":["genOta"]},"configured_reportings":[],"scenes":[]},"2":{"bindings":[{"cluster":"genOnOff","target":{"endpoint":1,"ieee_address":"0x00124b001cdd3b52","type":"endpoint"}}],"clusters":{"input":["genGroups","genScenes","genOnOff"],"output":[]},"configured_reportings":[],"scenes":[]}},"friendly_name":"Mamad","ieee_address":"0x5c0272fffe8ef714","interview_completed":true,"interviewing":false,"manufacturer":"_TZ3000_jki3ox0o","model_id":"TS0002","network_address":9482,"power_source":"Mains (single phase)","supported":true,"type":"Router"},{"date_code":"20170627","definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":["genBasic","65535","msOccupancySensing","msIlluminanceMeasurement","ssIasZone","genPowerCfg","genIdentify"],"output":["genBasic","genOta"]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_master_bedroom","ieee_address":"0x00158d0006a261df","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":26384,"power_source":"Battery","software_build_id":"3000-0001","supported":true,"type":"EndDevice"},{"date_code":"20170627","definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":["genBasic","65535","msOccupancySensing","msIlluminanceMeasurement","ssIasZone","genPowerCfg","genIdentify"],"output":["genBasic","genOta"]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_bathroom","ieee_address":"0x00158d0006a157a6","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":60133,"power_source":"Battery","software_build_id":"3000-0001","supported":true,"type":"EndDevice"},{"date_code":"20170627","definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"descripti@on":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":["genBasic","65535","msOccupancySensing","msIlluminanceMeasurement","ssIasZone","genPowerCfg","genIdentify"],"output":["genBasic","genOta"]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_shower_horim","ieee_address":"0x00158d0006f7805b","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":16809,"power_source":"Battery","software_build_id":"3000-0001","supported":true,"type":"EndDevice"},{"date_code":"20170627","definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":["genBasic","65535","msOccupancySensing","msIlluminanceMeasurement","ssIasZone","genPowerCfg","genIdentify"],"output":["genBasic","genOta"]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_girls","ieee_address":"0x00158d0006a25d21","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":17695,"power_source":"Battery","software_build_id":"3000-0001","supported":true,"type":"EndDevice"},{"date_code":"20170627","definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":["genBasic","65535","msOccupancySensing","msIlluminanceMeasurement","ssIasZone","genPowerCfg","genIdentify"],"output":["genBasic","genOta"]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_guests_room","ieee_address":"0x00158d0006f25853","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":19201,"power_source":"Battery","software_build_id":"3000-0001","supported":true,"type":"EndDevice"},{"date_code":"20170627","definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":["genBasic","65535","msOccupancySensing","msIlluminanceMeasurement","ssIasZone","genPowerCfg","genIdentify"],"output":["genBasic","genOta"]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_laundry_room","ieee_address":"0x00158d0006f25cb9","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":43020,"power_source":"Battery","software_build_id":"3000-0001","supported":true,"type":"EndDevice"},{"definition":{"description":"Aqara human body movement and illuminance sensor","exposes":[{"access":1,"description":"Remaining battery in %","name":"battery","property":"battery","type":"numeric","unit":"%","value_max":100,"value_min":0},{"access":1,"description":"Indicates whether the device detected occupancy","name":"occupancy","property":"occupancy","type":"binary","value_off":false,"value_on":true},{"access":1,"description":"Measured temperature value","name":"temperature","property":"temperature","type":"numeric","unit":"°C"},{"access":1,"description":"Voltage of the battery in millivolts","name":"voltage","property":"voltage","type":"numeric","unit":"mV"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance_lux","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Measured illuminance in lux","name":"illuminance","property":"illuminance","type":"numeric","unit":"lx"},{"access":1,"description":"Link quality (signal strength)","name":"linkquality","property":"linkquality","type":"numeric","unit":"lqi","value_max":255,"value_min":0}],"model":"RTCGQ11LM","options":[{"access":2,"description":"Time in seconds after which occupancy is cleared after detecting it (default 90 seconds).","name":"occupancy_timeout","property":"occupancy_timeout","type":"numeric","value_min":0},{"access":2,"description":"Sends a message the last time occupancy was detected. When setting this for example to [10, 60] a `{\"no_occupancy_since\": 10}` will be send after 10 seconds and a `{\"no_occupancy_since\": 60}` after 60 seconds.","item_type":"number","name":"no_occupancy_since","property":"no_occupancy_since","type":"list"},{"access":2,"description":"Number of digits after decimal point for illuminance, takes into effect on next report of device.","name":"illuminance_precision","property":"illuminance_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance value (percentual offset), takes into effect on next report of device.","name":"illuminance_calibration","property":"illuminance_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for illuminance_lux, takes into effect on next report of device.","name":"illuminance_lux_precision","property":"illuminance_lux_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the illuminance_lux value (percentual offset), takes into effect on next report of device.","name":"illuminance_lux_calibration","property":"illuminance_lux_calibration","type":"numeric"},{"access":2,"description":"Number of digits after decimal point for temperature, takes into effect on next report of device.","name":"temperature_precision","property":"temperature_precision","type":"numeric","value_max":3,"value_min":0},{"access":2,"description":"Calibrates the temperature value (absolute offset), takes into effect on next report of device.","name":"temperature_calibration","property":"temperature_calibration","type":"numeric"}],"supports_ota":false,"vendor":"Xiaomi"},"endpoints":{"1":{"bindings":[],"clusters":{"input":[],"output":[]},"configured_reportings":[],"scenes":[]}},"friendly_name":"motion_sensor_salon_kitchen","ieee_address":"0x00158d0006a25f66","interview_completed":true,"interviewing":false,"manufacturer":"LUMI","model_id":"lumi.sensor_motion.aq2","network_address":63476,"power_source":"Battery","supported":true,"type":"EndDevice"}]'
Zigbee2MQTT:debug 2022-02-19 23:52:59: Received MQTT message on 'zigbee2mqtt/bridge/groups' with data '[]'
Zigbee2MQTT:debug 2022-02-19 23:52:59: Received MQTT message on 'zigbee2mqtt/bridge/extensions' with data '[]'
Zigbee2MQTT:debug 2022-02-19 23:52:59: Received MQTT message on 'zigbee2mqtt/bridge/config' with data '{"commit":"6ea61ba","coordinator":{"meta":{"maintrel":3,"majorrel":2,"minorrel":6,"product":0,"revision":20201127,"transportrev":2},"type":"zStack12"},"log_level":"debug","network":{"channel":11,"extendedPanID":"0x00124b001cdd3b52","panID":6754},"permit_join":true,"version":"1.23.0"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: Started frontend on port 0.0.0.0:8080
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'zigbee2mqtt/bridge/config', payload '{"commit":"6ea61ba","coordinator":{"meta":{"maintrel":3,"majorrel":2,"minorrel":6,"product":0,"revision":20201127,"transportrev":2},"type":"zStack12"},"log_level":"debug","network":{"channel":11,"extendedPanID":"0x00124b001cdd3b52","panID":6754},"permit_join":true,"version":"1.23.0"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_left/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/left/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light left","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_left_zigbee2mqtt","value_template":"{{ value_json.state_left }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_center/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/center/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light center","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_center_zigbee2mqtt","value_template":"{{ value_json.state_center }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_right/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/right/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light right","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_right_zigbee2mqtt","value_template":"{{ value_json.state_right }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0xbc33acfffec80607/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0x5c0272fffe8ef707/stairs_down_light_1/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Down/l1/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down stairs down light 1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_stairs_down_light_1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0x5c0272fffe8ef707/stairs_down_light_2/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Down/l2/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down stairs down light 2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_stairs_down_light_2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0x5c0272fffe8ef707/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0xec1bbdfffe2c55be/mamad_2nd_light_l1/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad 2nd/l1/set","device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd mamad 2nd light l1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_mamad_2nd_light_l1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0xec1bbdfffe2c55be/mamad_2nd_light_l2/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad 2nd/l2/set","device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd mamad 2nd light l2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_mamad_2nd_light_l2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0xec1bbdfffe2c55be/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0x5c0272fffe8ef714/mamad_light_1/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad/l1/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad mamad light 1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_mamad_light_1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/light/0x5c0272fffe8ef714/mamad_light_2/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad/l2/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad mamad light 2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_mamad_light_2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0x5c0272fffe8ef714/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a261df/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006a261df/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a261df/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a261df/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:52:59: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a261df/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a261df/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a261df/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a157a6/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006a157a6/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'

Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a157a6/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a157a6/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a157a6/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'

Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a157a6/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a157a6/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f7805b/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006f7805b/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f7805b/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f7805b/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f7805b/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f7805b/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f7805b/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'

bee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25d21/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006a25d21/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25d21/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25d21/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25d21/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25d21/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25d21/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25853/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006f25853/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25853/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25853/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25853/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25853/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25853/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25cb9/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006f25cb9/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25cb9/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25cb9/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25cb9/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25cb9/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006f25cb9/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25f66/battery/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/binary_sensor/0x00158d0006a25f66/occupancy/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25f66/temperature/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25f66/voltage/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25f66/illuminance_lux/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25f66/illuminance/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'homeassistant/sensor/0x00158d0006a25f66/linkquality/config', payload '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Up', payload '{"linkquality":null,"state_center":"OFF","state_left":"OFF","state_right":"ON"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Down', payload '{"linkquality":null,"state_l1":"ON","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Mamad', payload '{"linkquality":null,"state_l1":"ON","state_l2":"ON"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_master_bedroom', payload '{"battery":100,"illuminance":55,"illuminance_lux":55,"linkquality":null,"occupancy":false,"temperature":26,"voltage":3055}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_bathroom', payload '{"battery":100,"illuminance":25,"illuminance_lux":25,"linkquality":null,"occupancy":false,"temperature":25,"voltage":3055}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_shower_horim', payload '{"battery":100,"illuminance":142,"illuminance_lux":142,"linkquality":null,"occupancy":true,"temperature":24,"voltage":3045}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_girls', payload '{"battery":100,"illuminance":3,"illuminance_lux":3,"linkquality":null,"occupancy":false,"temperature":28,"voltage":3055}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_guests_room', payload '{"battery":100,"illuminance":8,"illuminance_lux":8,"linkquality":null,"occupancy":false,"temperature":28,"voltage":3035}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_laundry_room', payload '{"battery":100,"illuminance":40,"illuminance_lux":40,"linkquality":null,"occupancy":false,"temperature":25,"voltage":3035}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/motion_sensor_salon_kitchen', payload '{"battery":100,"illuminance":36,"illuminance_lux":36,"linkquality":null,"occupancy":false,"temperature":23,"voltage":3085}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Up/left', payload '{"state":"OFF"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Down/1', payload '{}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Mamad/1', payload '{}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Up/center', payload '{"state":"OFF"}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Down/2', payload '{}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Mamad/2', payload '{}'
Zigbee2MQTT:info  2022-02-19 23:53:00: MQTT publish: topic 'zigbee2mqtt/Stairs Up/right', payload '{"state":"ON"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_left/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/left/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light left","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_left_zigbee2mqtt","value_template":"{{ value_json.state_left }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_center/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/center/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light center","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_center_zigbee2mqtt","value_template":"{{ value_json.state_center }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_right/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/right/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light right","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_right_zigbee2mqtt","value_template":"{{ value_json.state_right }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xec1bbdfffe2c55be/mamad_2nd_light_l1/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad 2nd/l1/set","device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd mamad 2nd light l1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_mamad_2nd_light_l1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xec1bbdfffe2c55be/mamad_2nd_light_l2/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad 2nd/l2/set","device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd mamad 2nd light l2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_mamad_2nd_light_l2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef714/mamad_light_1/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad/l1/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad mamad light 1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_mamad_light_1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef714/mamad_light_2/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad/l2/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad mamad light 2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_mamad_light_2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef707/stairs_down_light_1/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Down/l1/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down stairs down light 1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_stairs_down_light_1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef707/stairs_down_light_2/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Down/l2/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down stairs down light 2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_stairs_down_light_2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0xbc33acfffec80607/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x5c0272fffe8ef707/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0xec1bbdfffe2c55be/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x5c0272fffe8ef714/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a261df/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a157a6/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f7805b/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a25d21/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f25853/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f25cb9/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a25f66/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_left/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/left/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light left","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_left_zigbee2mqtt","value_template":"{{ value_json.state_left }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_center/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/center/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light center","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_center_zigbee2mqtt","value_template":"{{ value_json.state_center }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xbc33acfffec80607/stairs_up_light_right/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Up/right/set","device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up stairs up light right","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_stairs_up_light_right_zigbee2mqtt","value_template":"{{ value_json.state_right }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0xbc33acfffec80607/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0xbc33acfffec80607"],"manufacturer":"Zemismart","model":"Smart light switch - 3 gang with neutral wire (ZM-L03E-Z)","name":"Stairs Up"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Stairs Up","name":"Stairs Up linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Stairs Up","unique_id":"0xbc33acfffec80607_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef707/stairs_down_light_1/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Down/l1/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down stairs down light 1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_stairs_down_light_1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef707/stairs_down_light_2/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Stairs Down/l2/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down stairs down light 2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_stairs_down_light_2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x5c0272fffe8ef707/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef707"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Stairs Down"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Stairs Down","name":"Stairs Down linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Stairs Down","unique_id":"0x5c0272fffe8ef707_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xec1bbdfffe2c55be/mamad_2nd_light_l1/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad 2nd/l1/set","device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd mamad 2nd light l1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_mamad_2nd_light_l1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0xec1bbdfffe2c55be/mamad_2nd_light_l2/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad 2nd/l2/set","device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd mamad 2nd light l2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_mamad_2nd_light_l2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0xec1bbdfffe2c55be/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0xec1bbdfffe2c55be"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad 2nd"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Mamad 2nd","name":"Mamad 2nd linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Mamad 2nd","unique_id":"0xec1bbdfffe2c55be_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef714/mamad_light_1/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad/l1/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad mamad light 1","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_mamad_light_1_zigbee2mqtt","value_template":"{{ value_json.state_l1 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/light/0x5c0272fffe8ef714/mamad_light_2/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"command_topic":"zigbee2mqtt/Mamad/l2/set","device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad mamad light 2","payload_off":"OFF","payload_on":"ON","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_mamad_light_2_zigbee2mqtt","value_template":"{{ value_json.state_l2 }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x5c0272fffe8ef714/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x5c0272fffe8ef714"],"manufacturer":"TuYa","model":"2 gang switch (TS0002)","name":"Mamad"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/Mamad","name":"Mamad linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/Mamad","unique_id":"0x5c0272fffe8ef714_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a261df/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a261df/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a261df"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_master_bedroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_master_bedroom","name":"motion_sensor_master_bedroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_master_bedroom","unique_id":"0x00158d0006a261df_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a157a6/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a157a6/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a157a6"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_bathroom","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_bathroom","name":"motion_sensor_bathroom_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_bathroom","unique_id":"0x00158d0006a157a6_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f7805b/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f7805b/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f7805b"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_shower_horim","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_shower_horim","name":"motion_sensor_shower_horim_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_shower_horim","unique_id":"0x00158d0006f7805b_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a25d21/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25d21/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25d21"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_girls","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_girls","name":"motion_sensor_girls_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_girls","unique_id":"0x00158d0006a25d21_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f25853/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25853/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25853"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_guests_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_guests_room","name":"motion_sensor_guests_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_guests_room","unique_id":"0x00158d0006f25853_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006f25cb9/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006f25cb9/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006f25cb9"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_laundry_room","sw_version":"3000-0001"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_laundry_room","name":"motion_sensor_laundry_room_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_laundry_room","unique_id":"0x00158d0006f25cb9_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/battery/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"battery","enabled_by_default":true,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_battery","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_battery_zigbee2mqtt","unit_of_measurement":"%","value_template":"{{ value_json.battery }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/binary_sensor/0x00158d0006a25f66/occupancy/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"motion","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_occupancy","payload_off":false,"payload_on":true,"state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_occupancy_zigbee2mqtt","value_template":"{{ value_json.occupancy }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/temperature/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"temperature","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_temperature","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_temperature_zigbee2mqtt","unit_of_measurement":"°C","value_template":"{{ value_json.temperature }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/voltage/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"voltage","enabled_by_default":false,"entity_category":"diagnostic","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_voltage","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_voltage_zigbee2mqtt","unit_of_measurement":"mV","value_template":"{{ value_json.voltage }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/illuminance_lux/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":true,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance_lux","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_lux_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/illuminance/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"device_class":"illuminance","enabled_by_default":false,"json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_illuminance","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_illuminance_zigbee2mqtt","unit_of_measurement":"lx","value_template":"{{ value_json.illuminance }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:00: Received MQTT message on 'homeassistant/sensor/0x00158d0006a25f66/linkquality/config' with data '{"availability":[{"topic":"zigbee2mqtt/bridge/state"}],"device":{"identifiers":["zigbee2mqtt_0x00158d0006a25f66"],"manufacturer":"Xiaomi","model":"Aqara human body movement and illuminance sensor (RTCGQ11LM)","name":"motion_sensor_salon_kitchen"},"enabled_by_default":false,"entity_category":"diagnostic","icon":"mdi:signal","json_attributes_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","name":"motion_sensor_salon_kitchen_linkquality","state_class":"measurement","state_topic":"zigbee2mqtt/motion_sensor_salon_kitchen","unique_id":"0x00158d0006a25f66_linkquality_zigbee2mqtt","unit_of_measurement":"lqi","value_template":"{{ value_json.linkquality }}"}'
Zigbee2MQTT:debug 2022-02-19 23:53:05: Received Zigbee message from 'motion_sensor_master_bedroom', type 'attributeReport', cluster 'msIlluminanceMeasurement', data '{"measuredValue":55}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-19 23:53:05: MQTT publish: topic 'zigbee2mqtt/motion_sensor_master_bedroom', payload '{"battery":100,"illuminance":55,"illuminance_lux":55,"linkquality":76,"occupancy":true,"temperature":26,"voltage":3055}'
Zigbee2MQTT:debug 2022-02-19 23:53:05: Received Zigbee message from 'motion_sensor_master_bedroom', type 'attributeReport', cluster 'msOccupancySensing', data '{"occupancy":1}' from endpoint 1 with groupID 0
Zigbee2MQTT:info  2022-02-19 23:53:05: MQTT publish: topic 'zigbee2mqtt/motion_sensor_master_bedroom', payload '{"battery":100,"illuminance":55,"illuminance_lux":55,"linkquality":76,"occupancy":true,"temperature":26,"voltage":3055}'
Zigbee2MQTT:debug 2022-02-19 23:53:25: Received Zigbee message from 'Mamad 2nd', type 'attributeReport', cluster 'genBasic', data '{"65506":19,"appVersion":128}' from endpoint 1 with groupID 0
Zigbee2MQTT:debug 2022-02-19 23:53:28: Received Zigbee message from 'Mamad', type 'attributeReport', cluster 'genBasic', data '{"65506":27,"appVersion":66}' from endpoint 1 with groupID 0
Koenkk commented 2 years ago

Can you try with the following config:

  '0xec1bbdfffe2c55be':
    friendly_name: Mamad 2nd
    homeassistant:
      switch_l1:
        type: light
        object_id: mamad_2nd_light_l1
        value_template: null
        state_value_template: '{{ value_json.state_l1 }}'
      light_l1:
        name: mamad_2nd_l1
        value_template: null
        state_value_template: '{{ value_json.state_l1 }}'
      switch_l2:
        type: light
        object_id: mamad_2nd_light_l2
        value_template: null
        state_value_template: '{{ value_json.state_l2 }}'
      light_l2:
        name: mamad_2nd_l2
        value_template: null
        state_value_template: '{{ value_json.state_l2 }}'
adizag commented 2 years ago

unfortunately not working. not recognized in HA.

HA logs:

Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Mamad 2nd/l1/set', 'device': {'identifiers': ['zigbee2mqtt_0xec1bbdfffe2c55be'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Mamad 2nd'}, 'json_attributes_topic': 'zigbee2mqtt/Mamad 2nd', 'name': 'Mamad 2nd mamad 2nd light l1', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Mamad 2nd', 'unique_id': '0xec1bbdfffe2c55be_mamad_2nd_light_l1_zigbee2mqtt', 'value_template': '{{ value_json.state_l1 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration
Exception in async_discover when dispatching 'mqtt_discovery_new_light_mqtt': ({'availability': [{'topic': 'zigbee2mqtt/bridge/state'}], 'command_topic': 'zigbee2mqtt/Mamad 2nd/l2/set', 'device': {'identifiers': ['zigbee2mqtt_0xec1bbdfffe2c55be'], 'manufacturer': 'TuYa', 'model': '2 gang switch (TS0002)', 'name': 'Mamad 2nd'}, 'json_attributes_topic': 'zigbee2mqtt/Mamad 2nd', 'name': 'Mamad 2nd mamad 2nd light l2', 'payload_off': 'OFF', 'payload_on': 'ON', 'state_topic': 'zigbee2mqtt/Mamad 2nd', 'unique_id': '0xec1bbdfffe2c55be_mamad_2nd_light_l2_zigbee2mqtt', 'value_template': '{{ value_json.state_l2 }}', 'platform': 'mqtt'},) Traceback (most recent call last): File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/helpers/config_validation.py", line 813, in validator raise vol.Invalid(warning % arguments) voluptuous.error.Invalid: The 'value_template' option has been removed, please remove it from your configuration During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/mqtt/mixins.py", line 211, in async_discover config = schema(discovery_payload) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 272, in __call__ return self._compiled([], data) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 817, in validate_callable return schema(data) File "/usr/src/homeassistant/homeassistant/components/mqtt/light/__init__.py", line 41, in validate_mqtt_light_discovery return schemas[value[CONF_SCHEMA]](value) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 218, in __call__ return self._exec((Schema(val) for val in self.validators), v) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 341, in _exec raise e if self.msg is None else AllInvalid(self.msg, path=path) File "/usr/local/lib/python3.9/site-packages/voluptuous/validators.py", line 337, in _exec v = func(v) File "/usr/local/lib/python3.9/site-packages/voluptuous/schema_builder.py", line 276, in __call__ raise er.MultipleInvalid([e]) voluptuous.error.MultipleInvalid: The 'value_template' option has been removed, please remove it from your configuration
Koenkk commented 2 years ago

I see your config is wrong, object_id: mamad_2nd_light_l1 should be object_id: light_l1;

devices:
  '0xec1bbdfffe2c55be':
    friendly_name: Mamad 2nd
    homeassistant:
      switch_l1:
        type: light
        object_id: light_l1
      light_l1:
        name: mamad_2nd_l1
        value_template: null
        state_value_template: '{{ value_json.state_l1 }}'
      switch_l2:
        type: light
        object_id: light_l2
      light_l2:
        name: mamad_2nd_l2
        value_template: null
        state_value_template: '{{ value_json.state_l2 }}'
adizag commented 2 years ago

Working! Strange thing - how could that work in the former version of HA...? anyway, thanks. maybe better to have a more clear explanation about the headers and variables in the WIKI for the coding-amateurs like me?

tnx again!