zigpy / zha-device-handlers

ZHA device handlers bridge the functionality gap created when manufacturers deviate from the ZCL specification, handling deviations and exceptions by parsing custom messages to and from Zigbee devices.
Apache License 2.0
723 stars 671 forks source link

[Device Support Request] TS0601 _TZE200_a4bpgplm tuya trv #1159

Closed joaoasilva closed 10 months ago

joaoasilva commented 2 years ago

Is your feature request related to a problem? Please describe. Bought this thermostat from AliExpress looking at this https://zigbee.blakadder.com/Haozee_TRV601.html that says it works with ZHA but it doesn't. It's possible to get the temperature and set but most of the stuff doesn't work.

Describe the solution you'd like For it to work ex: window status, schedule, turn on/off.

Someone already converted it successfully to work on HA but I don't understand how can I port that to ZHA here: https://github.com/Koenkk/zigbee-herdsman-converters/blob/245fc8273e3afac8d71ec196d0e3ae71e413cba9/lib/tuya.js#L426

Please help. Thanks

MattWestb commented 2 years ago

Flame and off button is making clima component system mode heating and the device is 110% off so its not working.

Use presets that you can also using for automations.

pascal-t commented 2 years ago

Hi I also got this thermostat, and wanted to try the fix from https://github.com/zigpy/zha-device-handlers/issues/1159#issuecomment-993827080, however the portainer addon referenced in https://github.com/zigpy/zha-device-handlers/issues/1159#issuecomment-990136649 is no longer available. How can I access the /usr/src/homeassistant directory without the addon? Or can I somehow install the addon without using the addon store?

pascal-t commented 2 years ago

To answer my own question: I found this guide which told my how to access the host over ssh. That's not exacly what I wanted to do but it helped. I also followed this guide on how to get a shell in a docker container.

Instructions if you have HA running as a VM in Proxmox:

  1. Access the Console of the VM
  2. login as root
  3. type login to access the shell of the host
  4. type docker ps to list the running containers, note the CONTAINER ID of the Container with the name homeassistant
  5. type docer exec -it <CONTAINER ID HERE> /bin/bash for example docer exec -it ecb0b18858c8 /bin/bash
  6. now you can acces the file you need to modify. I copied the climate.py in a directory called zha_test
  7. type cp /usr/src/homeassistant/homeassistant/components/zha/climate.py /config/zha_test/homeassistant.climate.py.bak to make a backup of the original file
  8. type cp /config/zha_test/climate.py /usr/src/homeassistant/homeassistant/components/zha/climate.py to copy the modified file

Screenshot of the output of steps 4 and 5 grafik

Edit: I also needed to add the ts0601_trv.py file to a custom_zha_quirks directory and edit it, as described in https://github.com/zigpy/zha-device-handlers/issues/1159#issuecomment-973156740

jacekk015 commented 2 years ago

I have a Portainer installed via Home Assistant Community Add-ons It's easier to access it like that when you have HASSIO on Proxmox

You didn't mention thermostat model, but if it's a4bpgplm then below is the latest version: ts0601_trv_rtitek.py.zip

pascal-t commented 2 years ago

@jacekk015 thank you very much. Yes it also is a _TZE200_a4bpgplm TS0601 Thermostat. With your configuration it seems to work. It's my first Zigbee device and I have to say it's quite overwhelming.

thebasti314 commented 2 years ago

Needed to change the update from device as well. This sets preset correctly and updates if i change on TRV as well: rtitek preset climate.zip

Hey you,

it seems that you all doing a great job here. First: Thanks for your work.

I replaced the climate.py - File in the zha-component Folder. After restarting my homeassistant i'm getting this message:

Error occurred loading configuration flow for integration zha: cannot import name 'DATA_ZHA_DISPATCHERS' from 'homeassistant.components.zha.core.const' (/usr/src/homeassistant/homeassistant/components/zha/core/const.py)

MattWestb commented 2 years ago

I think you must patching the climate.py then is some changes made in HA 2022.02 in both files and if you is using one old its not working. Its the last part in the file that need being added and the rest shall being OK.

thebasti314 commented 2 years ago

I think you must patching the climate.py then is some changes made in HA 2022.02 in both files and if you is using one old its not working. Its the last part in the file that need being added and the rest shall being OK.

Ah, you're right. i updatet to HA 2022.02 this morning.

thebasti314 commented 2 years ago

I think you must patching the climate.py then is some changes made in HA 2022.02 in both files and if you is using one old its not working. Its the last part in the file that need being added and the rest shall being OK.

You talk about "both" files. Witch files do you mean? The climate.py and?

MattWestb commented 2 years ago

const.py is also updated. But use the new climate.py (from HA 2022.2) and adding the last part for your TRV and all shall being right.

maurominella commented 2 years ago

So sorry, I forgot to mention that it "works" getting the temperature and set because I've added it exactly there. 😅 But can't turn it off/on, get the window detection or schedule and sometimes it goes crazy and I can't set it anymore, have to restart again for it to work. Battery status doesn't work also it takes 3xAA size. It's not really usable. Is it easy to patch based on https://github.com/Koenkk/zigbee-herdsman-converters/blob/245fc8273e3afac8d71ec196d0e3ae71e413cba9/lib/tuya.js#L426 ?

This seems to be the difference between them. Screenshot 2021-11-18 at 18 54 12

@joaoasilva @MattWestb Could you elaborate this point, please? I have exactly the same model (and problem) that @joaoasilva described. But I can't catch where I should check and fix the constants listed in the file mentioned by @joaoasilva (). Thank you

joaoasilva commented 2 years ago

Hi @MattWestb,

With the latest update, because of manufacturer_attributes the file stopped working.

I've updated the file to ts0601_trv_rtitek.py.zip And it seems to be working again.

Is there any reason why this thermostat was never added to the master branch?

Thanks

anlu85 commented 2 years ago

Hi, run in the same issue after the update - but I can confirm that it is working again with the changes from @joaoasilva. THX!

jacekk015 commented 2 years ago

Check in the logs - you should see there errors for local_temp updates For 99% room temp isn't updated. That's because local_temp cluster was renamed to local_temperature

Also all attridx should be modified: Old:

self.attridx["programing_oper_mode"]

New:

self.attributes_by_name["programing_oper_mode"].id
joaoasilva commented 2 years ago

Thanks @jacekk015 Updated here: ts0601_trv_rtitek.py.zip

Do you have any idea why this thermostat isn't on master and released yet?

jacekk015 commented 2 years ago

No one made the test - that's needed to commit a PR I've made so many quirks here, but since November 2021 PR stuck. Don't have time and power to fight over that.

Happy I could help.

MattWestb commented 2 years ago

@jacekk015 have cooking quirks for around 40 tuya TRVs but we was not getting the test done and many users is using those quirk for getting good function on there devices.

Some other devs have starting looking getting device one by one working test so can getting the merged in the main branch but its taking time and all is doing it on free time like Jakke and other users have doing with testing.

If some more with knowledge of writing the test code and have time to spending is very welcome helping implanting it for all our devices and also testing the final work so we can getting "native" support for our devices in ZHA.

anlu85 commented 2 years ago

@MattWestb Is there any guidline / wiki about what has to be done for testing?

MattWestb commented 2 years ago

I have not seen one but i can pinging @rforro and @challs that have that knowledge and have doing coding on your TRVs and i think they can sharing it for getting more TRVs being merged.

rforro commented 2 years ago

Look this PR https://github.com/zigpy/zha-device-handlers/pull/1459 there is code including tests. But basically you have to simulate the trv by sending zigbee frames and checking if the quirk done the action you are expecting

anlu85 commented 2 years ago

Thanks! I'll have a look on it and check if I can help support you!

anlu85 commented 2 years ago

~~After the lastest update it seems like the current temperature is not updated anymore (only this device with the new quirk). Does anybody else observed this behavior? I had a quick look in the logs while noticing the following: zhaquirks.tuya] [0x9e5e:1:0xef00] Received value [0, 0, 0, 210] for attribute 0x0203 (command 0x0001) 2022-04-10 09:00:19 WARNING (MainThread) [zigpy.util] Error calling listener.temperature_change: 'local_temp'~~

Sry, just found @jacekk015 comment about...

avdmr commented 2 years ago

Today I installed the TRV 602 version and added the latest quirk to my hassio installation. But besides setting the temperature and the battery info, the other sensors and settings don't seem to work. They just show as "number" and return "none" when using the cluster settings to retrieve their attribute. I was wondering if anyone has the same problem or if there is a way to fix this?

afbeelding

Chez-Nico commented 1 year ago

Today I installed the TRV 602 version and added the latest quirk to my hassio installation. But besides setting the temperature and the battery info, the other sensors and settings don't seem to work. They just show as "number" and return "none" when using the cluster settings to retrieve their attribute. I was wondering if anyone has the same problem or if there is a way to fix this?

afbeelding

I have exactly the same issue. Did you find a solution?

MattWestb commented 1 year ago

For getting the "numbers" populated i think its easiest taking the battery out for one minute and putting it back so the tuya MCU is getting one power reset and sending all attributes / commands is supporting and ZHA shall updating all it can handling (we have found and implanted). The TRV must being OK paired for this to working or the system is not getting the updated DPs.

I dont have the device only some Siterwells but the basic function is the same.

avdmr commented 1 year ago

I haven't found a solution yet. I just use the basic functionality (setting the temperature) but hope to be able to use the other options in the future. So if anyone has a fix, please post it.

Thank you for the suggestion @MattWestb! Unfortunately for me it didn't work.

@Chez-Nico Did MattWestb's suggestion work for you?

tszyszko commented 1 year ago

I have the same issue since updating HA, but for at least one of them I am unable to change the temp. I can't see any errors being spat out in the log.

On another note, I haven't touched many of these TRVs since March and have found that 6 of them have broken (permanent clicking - on disassembly seems the internal plastic has snapped and motor is popping up and down)

MattWestb commented 1 year ago

So only getting basic function and cant configure basic debug longing and posting the logs then re-powe the device so the devs can looking for the functions and matching then to the system ?

Sorry..

avdmr commented 1 year ago

Will try to post a debug log tomorrow. Haven't done that yet because I initially wasn't sure if I just had a faulty device.

jacekk015 commented 1 year ago
  1. Temporary remove the quirk
  2. Remove device from HA
  3. Add to configuration.yaml
    logger:
    default: info
    logs:
    homeassistant.components.zha: debug
    zigpy: debug
    zhaquirks: debug
  4. Restart HA
  5. Pair the device, and still wait for min. 5 minutes - device is still talking with HA after pairing
  6. Post here full logs from HA[not pairing window!!!] - it can be attached as a TXT file
  7. Post here device signature
Chez-Nico commented 1 year ago

Sorry for the delay

I have tested what @MattWestb recommended but it did not work. It is maybe important, i have read there is a difference between 2 almost identical TRV's I have 3 of these: 51DjOwd7JKL _AC_SX679_

@jacekk015, i followed the steps and have attached the logs. I hope this is good, i have filtered out some personal things so i hope i did not filtered out too much: TRV log.txt

avdmr commented 1 year ago

Here's my log as well.

{ "node_descriptor": "NodeDescriptor(logical_type=<LogicalType.EndDevice: 2>, complex_descriptor_available=0, user_descriptor_available=0, reserved=0, aps_flags=0, frequency_band=<FrequencyBand.Freq2400MHz: 8>, mac_capability_flags=<MACCapabilityFlags.AllocateAddress: 128>, manufacturer_code=4098, maximum_buffer_size=82, maximum_incoming_transfer_size=82, server_mask=11264, maximum_outgoing_transfer_size=82, descriptor_capability_field=<DescriptorCapability.NONE: 0>, *allocate_address=True, *is_alternate_pan_coordinator=False, *is_coordinator=False, *is_end_device=True, *is_full_function_device=False, *is_mains_powered=False, *is_receiver_on_when_idle=False, *is_router=False, *is_security_capable=False)", "endpoints": { "1": { "profile_id": 260, "device_type": "0x0051", "in_clusters": [ "0x0000", "0x0004", "0x0005", "0xef00" ], "out_clusters": [ "0x000a", "0x0019" ] } }, "manufacturer": "_TZE200_a4bpgplm", "model": "TS0601", "class": "zigpy.device.Device" }

log removed

jacekk015 commented 1 year ago

Please check the quirk below: ts0601_trv_rtitek.py.zip

Chez-Nico commented 1 year ago

Thx @jacekk015 , but i am getting following error with this quirk:

TypeError: manufacturer_attributes is deprecated. Copy the parent class's attributes dictionary and update it with your manufacturer-specific attributes. Make sure to specify that it is manufacturer-specific through the appropriate constructor or tuple!

Chez-Nico commented 1 year ago

Allright it is working.

I replaced following from your quirk: manufacturer_attributes = {
0x4002: ("operation_preset", Preset), }

With this from the previous working quirk and i get the numbers now: attributes = Thermostat.attributes.copy() attributes.update( { 0x4002: ("operation_preset", Preset), } )

image

Thank you @jacekk015 !

I'd like to use these devices with some automations to turn on/off but it looks like the operation mode Heat/Off seems to not register the current state correctly. Altough it seems to send the state when selected, i will do further testing.

Changing the Valve Position percentage also returns an error: image

image

Can you check if you have the same issues @avdmr ? Also, you do have the same devices as i have?

jacekk015 commented 1 year ago

Corrected attributes BUG Valve position now should be sent to TRV - there is no certainty that TRV will do this if it wasn't implemented in the TRV software itself. In case of errors I need to see HA debug logs from that operation. ts0601_trv_rtitek.py.zip

[edit] But hold on... I see that Presets where implemented here. What do you see when you click Thermostat?? I do have two presets there. If you don't have any, that means that your TRV should be added to HA code image

Chez-Nico commented 1 year ago

Thx,

valve position is not throwing an error anymore but when changing the percentage it will reset to the previous value. I suppose the it is not implemented in the TRV software itself then.

I do see 2 operation modes, Heat and Off. image

When the TRV is turned on i can see it with a flame: image and the TRV will say Heating (Heat) image

If i then select operation Off, the TRV will close and the icon will change to a clock image and the TRV will say Idle (Heat) image But the operation stays on Heat

also when using the climate.turn_off service on the device it will toggle between on and of instead of just turning the device off.

avdmr commented 1 year ago

Thank you @jacekk015! I have the same device as @Chez-Nico and it works great now!

Is there a (detailed) guide somewhere how to fix problems like these? I would like to learn, so I can mod/create quirks as well.

jacekk015 commented 1 year ago

@Chez-Nico I've corrected quirk a bit - check if it's OK for you. [edit] new quirk file ts0601_trv_rtitek.py.zip

Chez-Nico commented 1 year ago

Hi @jacekk015,

Sorry if i was not clear in my explanation :) You changed exactly what i needed, i can turn the TRV Off now. I will implement it in my automations and if i encounter an issue i will let you know. But this seems to be the solution, thank you very much.

Tobiti commented 1 year ago

Does someone know how I can turn off the daily schedule, because currently it's automatically turning itself up to 20°C every morning at 7am And in the quirk there is no schedule values

tszyszko commented 1 year ago

Sorry for late reply, have been away.

I've just tried @jacekk015 's most recent quirk and TRV appears to be now responding correctly !

Many thanks !

BlackBadPinguin commented 1 year ago

Hello, I wanted to test the quirk, however i get the following Error: Traceback (most recent call last):

  File "/usr/src/homeassistant/homeassistant/config_entries.py", line 365, in async_setup
    result = await component.async_setup_entry(hass, self)
  File "/usr/src/homeassistant/homeassistant/components/zha/__init__.py", line 101, in async_setup_entry
    setup_quirks(config)
  File "/usr/local/lib/python3.10/site-packages/zhaquirks/__init__.py", line 409, in setup
    importer.find_module(modname).load_module(modname)
  File "<frozen importlib._bootstrap_external>", line 548, in _check_name_wrapper
  File "<frozen importlib._bootstrap_external>", line 1063, in load_module
  File "<frozen importlib._bootstrap_external>", line 888, in load_module
  File "<frozen importlib._bootstrap>", line 290, in _load_module_shim
  File "<frozen importlib._bootstrap>", line 719, in _load
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/config/custom_zha_quirks/ts0601_trv_rtitek.py", line 249, in <module>
    class RtiThermostat(TuyaThermostatCluster):
  File "/usr/local/lib/python3.10/site-packages/zigpy/zcl/__init__.py", line 84, in __init_subclass__
    raise TypeError(
TypeError: `manufacturer_attributes` is deprecated. Copy the parent class's `attributes` dictionary and update it with your manufacturer-specific `attributes`. Make sure to specify that it is manufacturer-specific through the  appropriate constructor or tuple!
Chez-Nico commented 1 year ago

@BlackBadPinguin, it seems you are not using the latest quirk. If you look at my previous comments i adressed this issue and it was fixed by @jacekk015

@Tobiti, i am just seeing your question. I do not have this issue, i changed every TRV to manual mode on the TRV themselves (the little hand on the display, see user manual for more info), maybe this is the solution?

alessioprescenzo commented 1 year ago

Hi, I've bought this unit with ID: _TZE200_z1tyspqw TS0601, that appears to me as the same hardware as the RtiTek, I've tried to use the same quirk, which gives promising result, though my unit doesn't seem to cooperate with ZHA very well. When I try to add it to my ZigBee network it shows up as added and passes some entities (through the latest quirk above) but the device itself remains in a "binding" state and if I restart the device it shows no connection, and the Homeassistant entities stop responding. Is it a faulty unit?

Edit: Seems that connecting it with Z2M (installed just to see if this works) fixed my ZHA connection issues, I suspect something with the time set in the device (z2m autoconfigured time etc.). Anyway, now I can see the device updating its values in HA if I move the knob manually but I still cannot change anything from HA itself. Attaching log hopes this helps:

2022-12-10 14:40:13.600 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Received ZCL frame: b'\t\x0b$\xdb\x00'
2022-12-10 14:40:13.601 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, *is_cluster=True, *is_general=False, *is_reply=True), tsn=11, command_id=36, *direction=<Direction.Client_to_Server: 1>, *is_reply=True)
2022-12-10 14:40:13.602 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Decoded ZCL frame: RtiManufCluster:set_time_request(param=[219, 0])
2022-12-10 14:40:13.602 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Received command 0x24 (TSN 11): set_time_request(param=[219, 0])
2022-12-10 14:40:13.603 DEBUG (MainThread) [zhaquirks.tuya] [0x6aa4:1:0xef00] Got set time request (command 0x0024)
2022-12-10 14:40:13.604 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Sending reply header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=False, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, *is_cluster=False, *is_general=True, *is_reply=True), tsn=11, command_id=<GeneralCommand.Default_Response: 11>, *direction=<Direction.Client_to_Server: 1>, *is_reply=True)
2022-12-10 14:40:13.604 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Sending reply: Default_Response(command_id=36, status=<Status.SUCCESS: 0>)
2022-12-10 14:40:13.610 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Sending request header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=True, direction=<Direction.Server_to_Client: 0>, disable_default_response=0, reserved=0, *is_cluster=True, *is_general=False, *is_reply=False), manufacturer=4417, tsn=70, command_id=36, *direction=<Direction.Server_to_Client: 0>, *is_reply=False)
2022-12-10 14:40:13.610 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Sending request: set_time(param=[99, 148, 140, 61, 99, 148, 154, 77])
2022-12-10 14:40:13.808 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x6AA4), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=80, profile_id=260, cluster_id=61184, data=Serialized[b'\x18F\x0b$\x83'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=116, rssi=-71)
2022-12-10 14:40:13.808 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Received ZCL frame: b'\x18F\x0b$\x83'
2022-12-10 14:40:13.809 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, *is_cluster=False, *is_general=True, *is_reply=True), tsn=70, command_id=11, *direction=<Direction.Client_to_Server: 1>, *is_reply=True)
2022-12-10 14:40:13.810 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Decoded ZCL frame: RtiManufCluster:Default_Response(command_id=36, status=<Status.UNSUP_MANUF_CLUSTER_COMMAND: 131>)
2022-12-10 14:40:28.151 DEBUG (MainThread) [zhaquirks.tuya] [0x6aa4:1:0x0201] Mapping standard occupied_heating_setpoint (0x0012) with value 2150 to custom {514: 215.0}
2022-12-10 14:40:28.153 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Sending request header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=True, direction=<Direction.Server_to_Client: 0>, disable_default_response=0, reserved=0, *is_cluster=True, *is_general=False, *is_reply=False), manufacturer=4417, tsn=72, command_id=0, *direction=<Direction.Server_to_Client: 0>, *is_reply=False)
2022-12-10 14:40:28.154 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Sending request: set_data(param=Command(status=0, tsn=72, command_id=514, function=0, data=[4, 0, 0, 0, 215]))
2022-12-10 14:40:28.308 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0x8AE7](multi): Device seen - marking the device available and resetting counter
2022-12-10 14:40:28.309 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0x8AE7](multi): Update device availability -  device available: True - new availability: True - changed: False
2022-12-10 14:40:28.330 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x6AA4), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=81, profile_id=260, cluster_id=61184, data=Serialized[b'\x18H\x0b\x00\x83'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=120, rssi=-70)
2022-12-10 14:40:28.330 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Received ZCL frame: b'\x18H\x0b\x00\x83'
2022-12-10 14:40:28.331 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, *is_cluster=False, *is_general=True, *is_reply=True), tsn=72, command_id=11, *direction=<Direction.Client_to_Server: 1>, *is_reply=True)
2022-12-10 14:40:28.331 DEBUG (MainThread) [zigpy.zcl] [0x6AA4:1:0xef00] Decoded ZCL frame: RtiManufCluster:Default_Response(command_id=0, status=<Status.UNSUP_MANUF_CLUSTER_COMMAND: 131>)
2022-12-10 14:40:28.333 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x6AA4:1:0x0201]: wrote {'occupied_heating_setpoint': 2150} attrs, Status: [[WriteAttributesStatusRecord(status=<Status.SUCCESS: 0>)]]
jacekk015 commented 1 year ago

Enable debug level logging in configuration.yaml and restart HA

logger:
  default: info
  logs:
    homeassistant.components.zha: debug
    zigpy: debug
    zhaquirks: debug

Remove device and re-pair it. Post the full HA logs from pairing time and 10 minutes after. Don't cut anything.

joaoasilva commented 1 year ago

Hello With the latest HA update I'm getting this:

File "/config/zha_custom_quirks/ts0601_trv_rtitek.py", line 55, in <module>
class CustomTuyaOnOff(LocalDataCluster, OnOff):
File "/config/zha_custom_quirks/ts0601_trv_rtitek.py", line 115, in CustomTuyaOnOff
command_id: Union[foundation.Command, int, t.uint8_t],
AttributeError: module 'zigpy.zcl.foundation' has no attribute 'Command'
MattWestb commented 1 year ago

Temporary fix for getting ZHA loading in https://github.com/zigpy/zha-device-handlers/issues/1061#issuecomment-1375212509.

jacekk015 commented 1 year ago

Quirk corrected ts0601_trv_rtitek.py.zip

berowicz commented 1 year ago

Hello, I have the same problem with my TRV (sold as TRV606 / with OLED display) It doesnt show the temperature and no functions are available.

Device info:

{ "home_assistant": { "installation_type": "Home Assistant OS", "version": "2023.4.5", "dev": false, "hassio": true, "virtualenv": false, "python_version": "3.10.10", "docker": true, "arch": "aarch64", "timezone": "Europe/Berlin", "os_name": "Linux", "os_version": "6.1.21-v8", "supervisor": "2023.04.0", "host_os": "Home Assistant OS 10.0", "docker_version": "23.0.3", "chassis": "embedded", "run_as_root": true }, "custom_components": {}, "integration_manifest": { "domain": "zha", "name": "Zigbee Home Automation", "after_dependencies": [ "onboarding", "usb" ], "codeowners": [ "@dmulcahey", "@adminiuga", "@puddly" ], "config_flow": true, "dependencies": [ "file_upload" ], "documentation": "https://www.home-assistant.io/integrations/zha", "iot_class": "local_polling", "loggers": [ "aiosqlite", "bellows", "crccheck", "pure_pcapy3", "zhaquirks", "zigpy", "zigpy_deconz", "zigpy_xbee", "zigpy_zigate", "zigpy_znp" ], "requirements": [ "bellows==0.35.1", "pyserial==3.5", "pyserial-asyncio==0.6", "zha-quirks==0.0.97", "zigpy-deconz==0.20.0", "zigpy==0.54.1", "zigpy-xbee==0.17.0", "zigpy-zigate==0.10.3", "zigpy-znp==0.10.0" ], "usb": [ { "vid": "10C4", "pid": "EA60", "description": "2652", "known_devices": [ "slae.sh cc2652rb stick" ] }, { "vid": "1A86", "pid": "55D4", "description": "sonoffplus", "known_devices": [ "sonoff zigbee dongle plus v2" ] }, { "vid": "10C4", "pid": "EA60", "description": "sonoffplus", "known_devices": [ "sonoff zigbee dongle plus" ] }, { "vid": "10C4", "pid": "EA60", "description": "tubeszb", "known_devices": [ "TubesZB Coordinator" ] }, { "vid": "1A86", "pid": "7523", "description": "tubeszb", "known_devices": [ "TubesZB Coordinator" ] }, { "vid": "1A86", "pid": "7523", "description": "zigstar", "known_devices": [ "ZigStar Coordinators" ] }, { "vid": "1CF1", "pid": "0030", "description": "conbee", "known_devices": [ "Conbee II" ] }, { "vid": "10C4", "pid": "8A2A", "description": "zigbee", "known_devices": [ "Nortek HUSBZB-1" ] }, { "vid": "0403", "pid": "6015", "description": "zigate", "known_devices": [ "ZiGate+" ] }, { "vid": "10C4", "pid": "EA60", "description": "zigate", "known_devices": [ "ZiGate" ] }, { "vid": "10C4", "pid": "8B34", "description": "bv 2010/10", "known_devices": [ "Bitron Video AV2010/10" ] } ], "zeroconf": [ { "type": "_esphomelib._tcp.local.", "name": "tube" }, { "type": "_zigate-zigbee-gateway._tcp.local.", "name": "zigate" }, { "type": "_zigstar_gw._tcp.local.", "name": "zigstar" }, { "type": "_slzb-06._tcp.local.", "name": "slzb-06" } ], "is_built_in": true }, "data": { "ieee": "REDACTED", "nwk": 1796, "manufacturer": "_TZE200_z1tyspqw", "model": "TS0601", "name": "_TZE200_z1tyspqw TS0601", "quirk_applied": false, "quirk_class": "zigpy.device.Device", "manufacturer_code": 4417, "power_source": "Battery or Unknown", "lqi": 224, "rssi": -44, "last_seen": "2023-04-18T22:18:41", "available": true, "device_type": "EndDevice", "signature": { "node_descriptor": "NodeDescriptor(logical_type=<LogicalType.EndDevice: 2>, complex_descriptor_available=0, user_descriptor_available=0, reserved=0, aps_flags=0, frequency_band=<FrequencyBand.Freq2400MHz: 8>, mac_capability_flags=<MACCapabilityFlags.AllocateAddress: 128>, manufacturer_code=4417, maximum_buffer_size=66, maximum_incoming_transfer_size=66, server_mask=10752, maximum_outgoing_transfer_size=66, descriptor_capability_field=<DescriptorCapability.NONE: 0>, allocate_address=True, is_alternate_pan_coordinator=False, is_coordinator=False, is_end_device=True, is_full_function_device=False, is_mains_powered=False, is_receiver_on_when_idle=False, is_router=False, *is_security_capable=False)", "endpoints": { "1": { "profile_id": 260, "device_type": "0x0051", "in_clusters": [ "0x0000", "0x0004", "0x0005", "0xef00" ], "out_clusters": [ "0x000a", "0x0019" ] } } }, "active_coordinator": false, "entities": [], "neighbors": [], "routes": [], "endpoint_names": [ { "name": "SMART_PLUG" } ], "user_given_name": "Heizung", "device_reg_id": "237e35d8d42b0d1982131a9c714ea5a2", "area_id": "schlafzimmer", "cluster_details": { "1": { "device_type": { "name": "SMART_PLUG", "id": 81 }, "profile_id": 260, "in_clusters": { "0x0004": { "endpoint_attribute": "groups", "attributes": {}, "unsupported_attributes": {} }, "0x0005": { "endpoint_attribute": "scenes", "attributes": {}, "unsupported_attributes": {} }, "0xef00": { "endpoint_attribute": null, "attributes": {}, "unsupported_attributes": {} }, "0x0000": { "endpoint_attribute": "basic", "attributes": { "0x0001": { "attribute_name": "app_version", "value": 72 }, "0x0004": { "attribute_name": "manufacturer", "value": "_TZE200_z1tyspqw" }, "0x0005": { "attribute_name": "model", "value": "TS0601" } }, "unsupported_attributes": {} } }, "out_clusters": { "0x0019": { "endpoint_attribute": "ota", "attributes": {}, "unsupported_attributes": {} }, "0x000a": { "endpoint_attribute": "time", "attributes": {}, "unsupported_attributes": {} } } } } } }

Here is my log:

2023-04-18 22:07:09.362 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.Broadcast: 15>, address=<BroadcastAddress.ALL_ROUTERS_AND_COORDINATOR: 65532>), dst_ep=0, source_route=None, extended_timeout=False, tsn=43, profile_id=0, cluster_id=<ZDOCmd.Mgmt_Permit_Joining_req: 0x0036>, data=Serialized[b'+\xfe\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:09.364 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendBroadcast: (0xfffc, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=43), 0, 44, b'+\xfe\x00') 2023-04-18 22:07:09.368 DEBUG (MainThread) [bellows.ezsp.protocol] Send command addTransientLinkKey: (ff:ff:ff:ff:ff:ff:ff:ff, [90, 105, 103, 66, 101, 101, 65, 108, 108, 105, 97, 110, 99, 101, 48, 57]) 2023-04-18 22:07:09.371 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'67ff21a9622ae94d59947c25aa5592489c4e0cabc1cd4c75fdba5b7e' 2023-04-18 22:07:09.391 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'77ffa1a9622a15f3138c7e' 2023-04-18 22:07:09.391 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:09.395 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'70fc21a9fb2aea4da66bb5da55aac820fb0c42ceaca20be29ca800eccc4762a37e' 2023-04-18 22:07:09.396 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendBroadcast: [<EmberStatus.SUCCESS: 0>, 65] 2023-04-18 22:07:09.398 DEBUG (MainThread) [bellows.ezsp.protocol] Send command permitJoining: (254,) 2023-04-18 22:07:09.401 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'07ffb5a94d2a891e2d7e' 2023-04-18 22:07:09.402 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:09.404 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'17ffb1a9112a10b259a24a25aa5593499c0fd8abedce9874feed9d89f1e67e' 2023-04-18 22:07:09.405 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:09.407 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received stackStatusHandler: [<EmberStatus.NETWORK_OPENED: 156>] 2023-04-18 22:07:09.407 DEBUG (MainThread) [bellows.zigbee.application] Received stackStatusHandler frame with [<EmberStatus.NETWORK_OPENED: 156>] 2023-04-18 22:07:09.409 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_BROADCAST_LOOPBACK: 5>, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=65), 255, 0, 0x0000, 255, 255, b'+\xfe\x00'] 2023-04-18 22:07:09.410 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_BROADCAST_LOOPBACK: 5>, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=65), 255, 0, 0x0000, 255, 255, b'+\xfe\x00'] 2023-04-18 22:07:09.411 DEBUG (MainThread) [bellows.zigbee.application] Ignoring message type: <EmberIncomingMessageType.INCOMING_BROADCAST_LOOPBACK: 5> 2023-04-18 22:07:09.417 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'20fca1a9fb2a1524497e' 2023-04-18 22:07:09.417 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:09.421 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received addTransientLinkKey: [<EmberStatus.SUCCESS: 0>] 2023-04-18 22:07:09.422 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'03fd21a9762aeb82977e' 2023-04-18 22:07:09.424 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setPolicy: (<EzspPolicyId.TRUST_CENTER_POLICY: 0>, <EzspDecisionBitmask.ALLOW_UNSECURED_REJOINS|ALLOW_JOINS: 3>) 2023-04-18 22:07:09.430 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'31fda1a9762a1597f87e' 2023-04-18 22:07:09.431 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:09.433 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'148221a9012a15b15961de7e' 2023-04-18 22:07:09.435 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received permitJoining: [<EmberStatus.SUCCESS: 0>] 2023-04-18 22:07:09.442 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'4282a1a9012a15161c7e' 2023-04-18 22:07:09.443 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:09.445 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setPolicy: [<EzspStatus.SUCCESS: 0>] 2023-04-18 22:07:10.368 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'5282b1a96b2a134ea6944a13aa5592499d4e27eac1ce6730247e' 2023-04-18 22:07:10.369 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:10.379 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_BROADCAST: 6>, 65532, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=65), 44, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:10.380 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_BROADCAST: 6>, 65532, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=65), 44, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:10.381 DEBUG (MainThread) [bellows.zigbee.application] Unexpected message send notification tag: 44 2023-04-18 22:07:11.234 DEBUG (MainThread) [bellows.ezsp.protocol] Send command readCounters: () 2023-04-18 22:07:11.239 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'268321a9a52a7faf7e' 2023-04-18 22:07:11.260 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'6383a1a9a52a25b269946125935592499d4e23abe9ce688bf6c66e89f07e3ba7e9cddf6f8fffc6dbd5d2698c4623a9ec763ba5ea758241984c2613b1e070381c0e07bbe5ca658a459a4d9e4f9ff7c3d9d46a35a2519048246fba7e' 2023-04-18 22:07:11.261 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:11.266 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received readCounters: [[48, 48, 43, 57, 0, 1, 4, 4, 15, 11, 13, 12, 4, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]] 2023-04-18 22:07:11.269 DEBUG (MainThread) [bellows.ezsp.protocol] Send command getValue: (<EzspValueId.VALUE_FREE_BUFFERS: 3>,) 2023-04-18 22:07:11.274 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'378021a9fe2a16bd4a7e' 2023-04-18 22:07:11.283 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'7480a1a9fe2a15b3ae1e917e' 2023-04-18 22:07:11.284 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:11.287 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received getValue: [<EzspStatus.SUCCESS: 0>, b'\xf7'] 2023-04-18 22:07:11.288 DEBUG (MainThread) [bellows.zigbee.application] Free buffers status EzspStatus.SUCCESS, value: 247 2023-04-18 22:07:11.288 DEBUG (MainThread) [bellows.zigbee.application] ezsp_counters: [MAC_RX_BROADCAST = 48, MAC_TX_BROADCAST = 48, MAC_RX_UNICAST = 43, MAC_TX_UNICAST_SUCCESS = 57, MAC_TX_UNICAST_RETRY = 0, MAC_TX_UNICAST_FAILED = 1, APS_DATA_RX_BROADCAST = 4, APS_DATA_TX_BROADCAST = 4, APS_DATA_RX_UNICAST = 15, APS_DATA_TX_UNICAST_SUCCESS = 11, APS_DATA_TX_UNICAST_RETRY = 13, APS_DATA_TX_UNICAST_FAILED = 12, ROUTE_DISCOVERY_INITIATED = 4, NEIGHBOR_ADDED = 2, NEIGHBOR_REMOVED = 1, NEIGHBOR_STALE = 0, JOIN_INDICATION = 1, CHILD_REMOVED = 0, ASH_OVERFLOW_ERROR = 0, ASH_FRAMING_ERROR = 0, ASH_OVERRUN_ERROR = 0, NWK_FRAME_COUNTER_FAILURE = 0, APS_FRAME_COUNTER_FAILURE = 0, UTILITY = 0, APS_LINK_KEY_NOT_AUTHORIZED = 0, NWK_DECRYPTION_FAILURE = 0, APS_DECRYPTION_FAILURE = 0, ALLOCATE_PACKET_BUFFER_FAILURE = 0, RELAYED_UNICAST = 0, PHY_TO_MAC_QUEUE_LIMIT_REACHED = 0, PACKET_VALIDATE_LIBRARY_DROPPED_COUNT = 0, TYPE_NWK_RETRY_OVERFLOW = 0, PHY_CCA_FAIL_COUNT = 0, BROADCAST_TABLE_FULL = 0, PTA_LO_PRI_REQUESTED = 0, PTA_HI_PRI_REQUESTED = 0, PTA_LO_PRI_DENIED = 0, PTA_HI_PRI_DENIED = 0, PTA_LO_PRI_TX_ABORTED = 0, PTA_HI_PRI_TX_ABORTED = 0, ADDRESS_CONFLICT_SENT = 0, EZSP_FREE_BUFFERS = 247] 2023-04-18 22:07:21.292 DEBUG (MainThread) [bellows.ezsp.protocol] Send command readCounters: () 2023-04-18 22:07:21.298 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'408121a9a52ae9d57e' 2023-04-18 22:07:21.319 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'0581a1a9a52a27b268946625905592499d4e23abe9ce688bf6c66e89f07e3ba7e9cddf6f8fffc6dbd5d2698c4623a9ec763ba5ea758241984c2613b1e070381c0e07bbe5ca658a459a4d9e4f9ff7c3d9d46a35a25190482493327e' 2023-04-18 22:07:21.320 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:21.326 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received readCounters: [[50, 49, 44, 58, 0, 1, 4, 4, 15, 11, 13, 12, 4, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]] 2023-04-18 22:07:21.332 DEBUG (MainThread) [bellows.ezsp.protocol] Send command getValue: (<EzspValueId.VALUE_FREE_BUFFERS: 3>,) 2023-04-18 22:07:21.337 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'518621a9fe2a1622947e' 2023-04-18 22:07:21.345 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'1686a1a9fe2a15b3aea0187e' 2023-04-18 22:07:21.346 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:21.350 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received getValue: [<EzspStatus.SUCCESS: 0>, b'\xf7'] 2023-04-18 22:07:21.352 DEBUG (MainThread) [bellows.zigbee.application] Free buffers status EzspStatus.SUCCESS, value: 247 2023-04-18 22:07:21.353 DEBUG (MainThread) [bellows.zigbee.application] ezsp_counters: [MAC_RX_BROADCAST = 50, MAC_TX_BROADCAST = 49, MAC_RX_UNICAST = 44, MAC_TX_UNICAST_SUCCESS = 58, MAC_TX_UNICAST_RETRY = 0, MAC_TX_UNICAST_FAILED = 1, APS_DATA_RX_BROADCAST = 4, APS_DATA_TX_BROADCAST = 4, APS_DATA_RX_UNICAST = 15, APS_DATA_TX_UNICAST_SUCCESS = 11, APS_DATA_TX_UNICAST_RETRY = 13, APS_DATA_TX_UNICAST_FAILED = 12, ROUTE_DISCOVERY_INITIATED = 4, NEIGHBOR_ADDED = 2, NEIGHBOR_REMOVED = 1, NEIGHBOR_STALE = 0, JOIN_INDICATION = 1, CHILD_REMOVED = 0, ASH_OVERFLOW_ERROR = 0, ASH_FRAMING_ERROR = 0, ASH_OVERRUN_ERROR = 0, NWK_FRAME_COUNTER_FAILURE = 0, APS_FRAME_COUNTER_FAILURE = 0, UTILITY = 0, APS_LINK_KEY_NOT_AUTHORIZED = 0, NWK_DECRYPTION_FAILURE = 0, APS_DECRYPTION_FAILURE = 0, ALLOCATE_PACKET_BUFFER_FAILURE = 0, RELAYED_UNICAST = 0, PHY_TO_MAC_QUEUE_LIMIT_REACHED = 0, PACKET_VALIDATE_LIBRARY_DROPPED_COUNT = 0, TYPE_NWK_RETRY_OVERFLOW = 0, PHY_CCA_FAIL_COUNT = 0, BROADCAST_TABLE_FULL = 0, PTA_LO_PRI_REQUESTED = 0, PTA_HI_PRI_REQUESTED = 0, PTA_LO_PRI_DENIED = 0, PTA_HI_PRI_DENIED = 0, PTA_LO_PRI_TX_ABORTED = 0, PTA_HI_PRI_TX_ABORTED = 0, ADDRESS_CONFLICT_SENT = 0, EZSP_FREE_BUFFERS = 247] 2023-04-18 22:07:23.035 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'2686b1a9702a11b53ac33f7ff26d53ed9d4e27aba9ff7e' 2023-04-18 22:07:23.036 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:23.042 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received trustCenterJoinHandler: [0x0704, a4:c1:38:58:5a:75:57:63, <EmberDeviceUpdate.STANDARD_SECURITY_UNSECURED_JOIN: 1>, <EmberJoinDecision.USE_PRECONFIGURED_KEY: 0>, 0x0000] 2023-04-18 22:07:23.043 DEBUG (MainThread) [bellows.zigbee.application] Received trustCenterJoinHandler frame with [0x0704, a4:c1:38:58:5a:75:57:63, <EmberDeviceUpdate.STANDARD_SECURITY_UNSECURED_JOIN: 1>, <EmberJoinDecision.USE_PRECONFIGURED_KEY: 0>, 0x0000] 2023-04-18 22:07:23.045 INFO (MainThread) [zigpy.application] New device 0x0704 (a4:c1:38:58:5a:75:57:63) joined the network 2023-04-18 22:07:23.052 DEBUG (MainThread) [zigpy.device] [0x0704] Scheduling initialization 2023-04-18 22:07:23.055 DEBUG (MainThread) [bellows.ezsp.protocol] Send command findKeyTableEntry: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:23.057 DEBUG (MainThread) [zigpy.util] Tries remaining: 3 2023-04-18 22:07:23.058 INFO (MainThread) [zigpy.device] [0x0704] Requesting 'Node Descriptor' 2023-04-18 22:07:23.059 DEBUG (MainThread) [zigpy.util] Tries remaining: 2 2023-04-18 22:07:23.062 DEBUG (MainThread) [zigpy.device] [0x0704] Extending timeout for 0x2d request 2023-04-18 22:07:23.063 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=0, source_route=None, extended_timeout=True, tsn=45, profile_id=0, cluster_id=<ZDOCmd.Node_Desc_req: 0x0002>, data=Serialized[b'-\x04\x07'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:23.065 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setExtendedTimeout: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:23.068 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'638721a9212a76e52cce121d6bf19307397e' 2023-04-18 22:07:23.092 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'3787a1a9212aea30ed7e' 2023-04-18 22:07:23.093 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:23.094 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received findKeyTableEntry: [255] 2023-04-18 22:07:23.097 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'748421a92a2a76e52cce121d6bf19366f37e' 2023-04-18 22:07:23.105 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'4084a1a92a2a1c1c7e' 2023-04-18 22:07:23.106 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:23.107 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setExtendedTimeout: [] 2023-04-18 22:07:23.109 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=45), 46, b'-\x04\x07') 2023-04-18 22:07:23.115 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'058521a9602a15b65e944a27aa5592499d4e2786c3cd4a8ffad5a47e' 2023-04-18 22:07:23.130 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'5185a1a9602a15f1522a7e' 2023-04-18 22:07:23.131 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:23.133 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 67] 2023-04-18 22:07:23.630 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'6185b1a9112a11b259874a25aa5592499c68fb78e9c99874f1c6678e9f294afdb3f51fcb0f2fb17e' 2023-04-18 22:07:23.630 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:23.636 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_BROADCAST: 4>, EmberApsFrame(profileId=0, clusterId=19, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=38), 220, -45, 0x0704, 255, 255, b'\x00\x04\x07cWuZX8\xc1\xa4\x80'] 2023-04-18 22:07:23.637 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_BROADCAST: 4>, EmberApsFrame(profileId=0, clusterId=19, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=38), 220, -45, 0x0704, 255, 255, b'\x00\x04\x07cWuZX8\xc1\xa4\x80'] 2023-04-18 22:07:23.639 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.Broadcast: 15>, address=<BroadcastAddress.ALL_ROUTERS_AND_COORDINATOR: 65532>), dst_ep=0, source_route=None, extended_timeout=False, tsn=38, profile_id=0, cluster_id=19, data=Serialized[b'\x00\x04\x07cWuZX8\xc1\xa4\x80'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:07:23.642 INFO (MainThread) [zigpy.application] Device 0x0704 (a4:c1:38:58:5a:75:57:63) joined the network 2023-04-18 22:07:23.644 DEBUG (MainThread) [zigpy.device] [0x0704] Scheduling initialization 2023-04-18 22:07:23.646 DEBUG (MainThread) [zigpy.device] [0x0704] Canceling old initialize call 2023-04-18 22:07:23.647 DEBUG (MainThread) [zigpy.application] Received frame on uninitialized device from ep 0 to ep 0, cluster 19: b'\x00\x04\x07cWuZX8\xc1\xa4\x80' 2023-04-18 22:07:23.649 DEBUG (MainThread) [zigpy.zdo] [0x0704:zdo] ZDO request ZDOCmd.Device_annce: [0x0704, a4:c1:38:58:5a:75:57:63, 128] 2023-04-18 22:07:23.653 DEBUG (MainThread) [zigpy.util] Tries remaining: 3 2023-04-18 22:07:23.655 INFO (MainThread) [zigpy.device] [0x0704] Requesting 'Node Descriptor' 2023-04-18 22:07:23.655 DEBUG (MainThread) [zigpy.util] Tries remaining: 2 2023-04-18 22:07:23.656 DEBUG (MainThread) [zigpy.device] [0x0704] Extending timeout for 0x2f request 2023-04-18 22:07:23.658 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=0, source_route=None, extended_timeout=True, tsn=47, profile_id=0, cluster_id=<ZDOCmd.Node_Desc_req: 0x0002>, data=Serialized[b'/\x04\x07'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:23.660 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setExtendedTimeout: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:23.661 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'7185b1a9772a14b35d932972df0fca715dea23d3c37e' 2023-04-18 22:07:23.661 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:23.670 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received childJoinHandler: [1, <Bool.true: 1>, 0x0704, a4:c1:38:58:5a:75:57:63, <EmberNodeType.SLEEPY_END_DEVICE: 4>] 2023-04-18 22:07:23.670 DEBUG (MainThread) [bellows.zigbee.application] Received childJoinHandler frame with [1, <Bool.true: 1>, 0x0704, a4:c1:38:58:5a:75:57:63, <EmberNodeType.SLEEPY_END_DEVICE: 4>] 2023-04-18 22:07:23.672 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'108a21a92a2a76e52cce121d6bf193aa507e' 2023-04-18 22:07:23.684 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'028aa1a92a2a32e47e' 2023-04-18 22:07:23.685 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:23.687 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setExtendedTimeout: [] 2023-04-18 22:07:23.689 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=47), 48, b'/\x04\x07') 2023-04-18 22:07:23.694 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'218b21a9602a15b65e944a27aa5592499d4e2784ddcd488ffad03c7e' 2023-04-18 22:07:23.710 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'138ba1a9602a15f669337e' 2023-04-18 22:07:23.711 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:23.712 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 68] 2023-04-18 22:07:23.758 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'238bb1a96b2a15b65e944a27aa5592499d4e27efddce67313b7e' 2023-04-18 22:07:23.759 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:23.765 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=68), 48, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:23.767 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=68), 48, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:23.773 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'338bb1a9112a15b25996ca25aa1593499c69ff79e9c99874ece9638dfb7c7f27aadc9c2d8fffed99d5d26bd3357e' 2023-04-18 22:07:23.774 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:23.776 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32770, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=39), 216, -46, 0x0704, 255, 255, b'/\x00\x04\x07\x02@\x80A\x11BB\x00\x00B\x00\x00'] 2023-04-18 22:07:23.778 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32770, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=39), 216, -46, 0x0704, 255, 255, b'/\x00\x04\x07\x02@\x80A\x11BB\x00\x00B\x00\x00'] 2023-04-18 22:07:23.779 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=0, source_route=None, extended_timeout=False, tsn=39, profile_id=0, cluster_id=32770, data=Serialized[b'/\x00\x04\x07\x02@\x80A\x11BB\x00\x00B\x00\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:07:23.785 DEBUG (MainThread) [zigpy.application] Received frame on uninitialized device from ep 0 to ep 0, cluster 32770: b'/\x00\x04\x07\x02@\x80A\x11BB\x00\x00B\x00\x00' 2023-04-18 22:07:23.791 INFO (MainThread) [zigpy.device] [0x0704] Got Node Descriptor: NodeDescriptor(logical_type=<LogicalType.EndDevice: 2>, complex_descriptor_available=0, user_descriptor_available=0, reserved=0, aps_flags=0, frequency_band=<FrequencyBand.Freq2400MHz: 8>, mac_capability_flags=<MACCapabilityFlags.AllocateAddress: 128>, manufacturer_code=4417, maximum_buffer_size=66, maximum_incoming_transfer_size=66, server_mask=10752, maximum_outgoing_transfer_size=66, descriptor_capability_field=<DescriptorCapability.NONE: 0>, allocate_address=True, is_alternate_pan_coordinator=False, is_coordinator=False, is_end_device=True, is_full_function_device=False, is_mains_powered=False, is_receiver_on_when_idle=False, is_router=False, *is_security_capable=False) 2023-04-18 22:07:23.794 INFO (MainThread) [zigpy.device] [0x0704] Discovering endpoints 2023-04-18 22:07:23.796 DEBUG (MainThread) [zigpy.util] Tries remaining: 3 2023-04-18 22:07:23.797 DEBUG (MainThread) [zigpy.device] [0x0704] Extending timeout for 0x31 request 2023-04-18 22:07:23.798 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=0, source_route=None, extended_timeout=True, tsn=49, profile_id=0, cluster_id=<ZDOCmd.Active_EP_req: 0x0005>, data=Serialized[b'1\x04\x07'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:23.800 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setExtendedTimeout: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:23.805 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'348821a92a2a76e52cce121d6bf1935a347e' 2023-04-18 22:07:23.817 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'4488a1a92a2a91967e' 2023-04-18 22:07:23.817 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:23.820 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setExtendedTimeout: [] 2023-04-18 22:07:23.822 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=0, clusterId=5, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=49), 50, b'1\x04\x07') 2023-04-18 22:07:23.827 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'458921a9602a15b65e944a20aa5592499d4e279adfcd568ffa16937e' 2023-04-18 22:07:23.839 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'5589a1a9602a15f76fea7e' 2023-04-18 22:07:23.840 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:23.843 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 69] 2023-04-18 22:07:23.882 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'6589b1a96b2a15b65e944a20aa5592499d4e27eedfce6775d77e' 2023-04-18 22:07:23.883 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:23.890 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=5, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=69), 50, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:23.892 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=5, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=69), 50, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:23.898 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'7589b1a9112a15b25991ca25aa1593499c66e366e9c99874fbf7638dfb7f3ea545707e' 2023-04-18 22:07:23.899 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:23.904 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32773, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=40), 196, -51, 0x0704, 255, 255, b'1\x00\x04\x07\x01\x01'] 2023-04-18 22:07:23.905 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32773, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=40), 196, -51, 0x0704, 255, 255, b'1\x00\x04\x07\x01\x01'] 2023-04-18 22:07:23.906 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=0, source_route=None, extended_timeout=False, tsn=40, profile_id=0, cluster_id=32773, data=Serialized[b'1\x00\x04\x07\x01\x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=196, rssi=-51) 2023-04-18 22:07:23.910 DEBUG (MainThread) [zigpy.application] Received frame on uninitialized device from ep 0 to ep 0, cluster 32773: b'1\x00\x04\x07\x01\x01' 2023-04-18 22:07:23.914 INFO (MainThread) [zigpy.device] [0x0704] Discovered endpoints: [1] 2023-04-18 22:07:23.915 INFO (MainThread) [zigpy.device] [0x0704] Initializing endpoints [<Endpoint id=1 in=[] out=[] status=<Status.NEW: 0>>] 2023-04-18 22:07:23.916 INFO (MainThread) [zigpy.endpoint] [0x0704:1] Discovering endpoint information 2023-04-18 22:07:23.917 DEBUG (MainThread) [zigpy.util] Tries remaining: 3 2023-04-18 22:07:23.918 DEBUG (MainThread) [zigpy.device] [0x0704] Extending timeout for 0x33 request 2023-04-18 22:07:23.920 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=0, source_route=None, extended_timeout=True, tsn=51, profile_id=0, cluster_id=<ZDOCmd.Simple_Desc_req: 0x0004>, data=Serialized[b'3\x04\x07\x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:23.922 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setExtendedTimeout: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:23.925 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'508e21a92a2a76e52cce121d6bf1937d5dfc7e' 2023-04-18 22:07:23.937 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'068ea1a92a2abd437e' 2023-04-18 22:07:23.938 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:23.940 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setExtendedTimeout: [] 2023-04-18 22:07:23.941 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=0, clusterId=4, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=51), 52, b'3\x04\x07\x01') 2023-04-18 22:07:23.948 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'618f21a9602a15b65e944a21aa5592499d4e2798d9ca548ffac753f57e' 2023-04-18 22:07:23.962 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'178fa1a9602a15f487da7e' 2023-04-18 22:07:23.963 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:23.966 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 70] 2023-04-18 22:07:24.004 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'278fb1a96b2a15b65e944a21aa5592499d4e27edd9ce6728e17e' 2023-04-18 22:07:24.005 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:24.010 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=4, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=70), 52, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.011 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=4, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=70), 52, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.021 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'378fb1a9112a15b25990ca25aa1593499c67f77be9c99874e4f5638dfb6a3ea3ea9cde6e8bfbc7ded5d2868c4621b0ec7c3ba70d677e' 2023-04-18 22:07:24.022 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:24.025 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32772, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=41), 208, -48, 0x0704, 255, 255, b'3\x00\x04\x07\x14\x01\x04\x01Q\x00\x01\x04\x04\x00\x05\x00\x00\xef\x00\x00\x02\x19\x00\n\x00'] 2023-04-18 22:07:24.026 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32772, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=41), 208, -48, 0x0704, 255, 255, b'3\x00\x04\x07\x14\x01\x04\x01Q\x00\x01\x04\x04\x00\x05\x00\x00\xef\x00\x00\x02\x19\x00\n\x00'] 2023-04-18 22:07:24.027 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=0, source_route=None, extended_timeout=False, tsn=41, profile_id=0, cluster_id=32772, data=Serialized[b'3\x00\x04\x07\x14\x01\x04\x01Q\x00\x01\x04\x04\x00\x05\x00\x00\xef\x00\x00\x02\x19\x00\n\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=208, rssi=-48) 2023-04-18 22:07:24.032 DEBUG (MainThread) [zigpy.application] Received frame on uninitialized device from ep 0 to ep 0, cluster 32772: b'3\x00\x04\x07\x14\x01\x04\x01Q\x00\x01\x04\x04\x00\x05\x00\x00\xef\x00\x00\x02\x19\x00\n\x00' 2023-04-18 22:07:24.036 INFO (MainThread) [zigpy.endpoint] [0x0704:1] Discovered endpoint information: SizePrefixedSimpleDescriptor(endpoint=1, profile=260, device_type=81, device_version=1, input_clusters=[4, 5, 61184, 0], output_clusters=[25, 10]) 2023-04-18 22:07:24.038 DEBUG (MainThread) [zigpy.zcl] Unknown cluster 0xEF00 2023-04-18 22:07:24.045 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending request header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=False, direction=<Direction.Server_to_Client: 0>, disable_default_response=0, reserved=0, is_cluster=False, is_general=True), tsn=53, command_id=<GeneralCommand.Read_Attributes: 0>, direction=<Direction.Server_to_Client: 0>) 2023-04-18 22:07:24.049 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending request: Read_Attributes(attribute_ids=[4, 5]) 2023-04-18 22:07:24.051 DEBUG (MainThread) [zigpy.device] [0x0704] Extending timeout for 0x35 request 2023-04-18 22:07:24.054 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=1, source_route=None, extended_timeout=True, tsn=53, profile_id=260, cluster_id=0, data=Serialized[b'\x005\x00\x04\x00\x05\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:24.056 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setExtendedTimeout: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:24.059 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'748c21a92a2a76e52cce121d6bf1938d987e' 2023-04-18 22:07:24.069 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'408ca1a92a2a1e317e' 2023-04-18 22:07:24.070 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:24.072 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setExtendedTimeout: [] 2023-04-18 22:07:24.075 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=53), 54, b'\x005\x00\x04\x00\x05\x00') 2023-04-18 22:07:24.082 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'058d21a9602a15b65e904b25aa5493499d4e279edbc967befdc2638cfc71f77e' 2023-04-18 22:07:24.094 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'518da1a9602a15f581037e' 2023-04-18 22:07:24.094 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:24.096 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 71] 2023-04-18 22:07:24.118 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'618db1a96b2a15b65e904b25aa5493499d4e27ecdbce6755327e' 2023-04-18 22:07:24.119 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:24.121 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=71), 54, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.122 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=71), 54, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.139 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'718db1a9112a15b658944a24ab1593499c64ff79e9c99874dede5688f87e3fe5fb928a35cacdf7eb8aa858f83f50d99d013ea5ea378415cb7c102380e2e1b27e' 2023-04-18 22:07:24.139 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:24.145 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=42), 216, -46, 0x0704, 255, 255, b'\x185\x01\x04\x00\x00B\x10_TZE200_z1tyspqw\x05\x00\x00B\x06TS0601'] 2023-04-18 22:07:24.146 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=42), 216, -46, 0x0704, 255, 255, b'\x185\x01\x04\x00\x00B\x10_TZE200_z1tyspqw\x05\x00\x00B\x06TS0601'] 2023-04-18 22:07:24.148 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=42, profile_id=260, cluster_id=0, data=Serialized[b'\x185\x01\x04\x00\x00B\x10_TZE200_z1tyspqw\x05\x00\x00B\x06TS0601'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:07:24.151 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received ZCL frame: b'\x185\x01\x04\x00\x00B\x10_TZE200_z1tyspqw\x05\x00\x00B\x06TS0601' 2023-04-18 22:07:24.154 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, is_cluster=False, is_general=True), tsn=53, command_id=1, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:24.161 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame: Basic:Read_Attributes_rsp(status_records=[ReadAttributeRecord(attrid=0x0004, status=<Status.SUCCESS: 0>, value=TypeValue(type=CharacterString, value='_TZE200_z1tyspqw')), ReadAttributeRecord(attrid=0x0005, status=<Status.SUCCESS: 0>, value=TypeValue(type=CharacterString, value='TS0601'))]) 2023-04-18 22:07:24.167 INFO (MainThread) [zigpy.device] [0x0704] Read model 'TS0601' and manufacturer '_TZE200_z1tyspqw' from <Endpoint id=1 in=[groups:0x0004, scenes:0x0005, None:0xEF00, basic:0x0000] out=[ota:0x0019, time:0x000A] status=<Status.ZDO_INIT: 1>> 2023-04-18 22:07:24.168 INFO (MainThread) [zigpy.device] [0x0704] Discovered basic device information for 2023-04-18 22:07:24.171 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'018db1a96b2a134fa6944a36aa5592499c4e278d12ce6765627e' 2023-04-18 22:07:24.171 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:24.169 DEBUG (MainThread) [zigpy.application] Device is initialized 2023-04-18 22:07:24.177 DEBUG (MainThread) [zigpy.quirks.registry] Checking quirks for _TZE200_z1tyspqw TS0601 (a4:c1:38:58:5a:75:57:63) 2023-04-18 22:07:24.181 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.xiaomi.aqara.opple_switch.XiaomiOpple2ButtonSwitchFace2'> 2023-04-18 22:07:24.182 DEBUG (MainThread) [zigpy.quirks.registry] Fail because endpoint list mismatch: {1, 2, 242} {1} 2023-04-18 22:07:24.182 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.xiaomi.aqara.opple_switch.XiaomiOpple2ButtonSwitchFace1'> 2023-04-18 22:07:24.183 DEBUG (MainThread) [zigpy.quirks.registry] Fail because endpoint list mismatch: {1, 2, 41, 42, 242, 51, 21, 31} {1} 2023-04-18 22:07:24.184 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.xbee.xbee_io.XBeeSensor'> 2023-04-18 22:07:24.186 DEBUG (MainThread) [zigpy.quirks.registry] Fail because endpoint list mismatch: {232, 230} {1} 2023-04-18 22:07:24.187 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.xbee.xbee3_io.XBee3Sensor'> 2023-04-18 22:07:24.188 DEBUG (MainThread) [zigpy.quirks.registry] Fail because endpoint list mismatch: {232, 230} {1} 2023-04-18 22:07:24.188 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.tuya.ts0201.MoesTemperatureHumidtySensorWithScreen'> 2023-04-18 22:07:24.189 DEBUG (MainThread) [zigpy.quirks.registry] Fail because device_type mismatch on at least one endpoint 2023-04-18 22:07:24.191 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.smartthings.tag_v4.SmartThingsTagV4'> 2023-04-18 22:07:24.192 DEBUG (MainThread) [zigpy.quirks.registry] Fail because device_type mismatch on at least one endpoint 2023-04-18 22:07:24.193 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.smartthings.multi.SmartthingsMultiPurposeSensor'> 2023-04-18 22:07:24.194 DEBUG (MainThread) [zigpy.quirks.registry] Fail because device_type mismatch on at least one endpoint 2023-04-18 22:07:24.195 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.netvox.z308e3ed.Z308E3ED'> 2023-04-18 22:07:24.198 DEBUG (MainThread) [zigpy.quirks.registry] Fail because device_type mismatch on at least one endpoint 2023-04-18 22:07:24.199 DEBUG (MainThread) [zigpy.quirks.registry] Considering <class 'zhaquirks.gledopto.soposhgu10.SoposhGU10'> 2023-04-18 22:07:24.200 DEBUG (MainThread) [zigpy.quirks.registry] Fail because endpoint list mismatch: {11, 13} {1} 2023-04-18 22:07:24.205 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_BROADCAST: 6>, 65533, EmberApsFrame(profileId=0, clusterId=19, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=38), 255, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.206 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_BROADCAST: 6>, 65533, EmberApsFrame(profileId=0, clusterId=19, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=38), 255, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.207 DEBUG (MainThread) [bellows.zigbee.application] Unexpected message send notification tag: 255 2023-04-18 22:07:24.223 DEBUG (MainThread) [homeassistant.components.zha.core.discovery] 'sensor' component -> 'RSSISensor' using ['basic'] 2023-04-18 22:07:24.224 DEBUG (MainThread) [homeassistant.components.zha.core.discovery] 'sensor' component -> 'LQISensor' using ['basic'] 2023-04-18 22:07:24.234 DEBUG (MainThread) [homeassistant.components.zha.core.gateway] device - 0x0704:a4:c1:38:58:5a:75:57:63 entering async_device_initialized - is_new_join: True 2023-04-18 22:07:24.240 DEBUG (MainThread) [homeassistant.components.zha.core.gateway] device - 0x0704:a4:c1:38:58:5a:75:57:63 has joined the ZHA zigbee network 2023-04-18 22:07:24.242 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: started configuration 2023-04-18 22:07:24.243 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] 0x0704:ZDO: 'async_configure' stage succeeded 2023-04-18 22:07:24.256 DEBUG (MainThread) [zigpy.appdb] Error handling '_save_attribute' event with (a4:c1:38:58:5a:75:57:63, 1, 0, 4, '_TZE200_z1tyspqw') params: FOREIGN KEY constraint failed 2023-04-18 22:07:24.258 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0000]: Configuring cluster attribute reporting 2023-04-18 22:07:24.260 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0000]: finished channel configuration 2023-04-18 22:07:24.261 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: Performing cluster binding 2023-04-18 22:07:24.264 DEBUG (MainThread) [zigpy.device] [0x0704] Extending timeout for 0x37 request 2023-04-18 22:07:24.266 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=0, source_route=None, extended_timeout=True, tsn=55, profile_id=0, cluster_id=<ZDOCmd.Bind_req: 0x0021>, data=Serialized[b'7cWuZX8\xc1\xa4\x01\x00\xef\x03q\x86%\xfe\xff\x95\x8e\xdc\x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:24.269 DEBUG (MainThread) [bellows.ezsp.protocol] Send command setExtendedTimeout: (a4:c1:38:58:5a:75:57:63, True) 2023-04-18 22:07:24.272 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0019]: finished channel configuration 2023-04-18 22:07:24.276 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'7d319221a92a2a76e52cce121d6bf19329307e' 2023-04-18 22:07:24.280 DEBUG (MainThread) [zigpy.appdb] Error handling '_save_attribute' event with (a4:c1:38:58:5a:75:57:63, 1, 0, 5, 'TS0601') params: FOREIGN KEY constraint failed 2023-04-18 22:07:24.288 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'1292a1a92a2a2e177e' 2023-04-18 22:07:24.289 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:24.292 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received setExtendedTimeout: [] 2023-04-18 22:07:24.293 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=0, clusterId=33, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=55), 56, b'7cWuZX8\xc1\xa4\x01\x00\xef\x03q\x86%\xfe\xff\x95\x8e\xdc\x01') 2023-04-18 22:07:24.302 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'229321a9602a15b65e944a04aa5592499d4e279cd5d850e8aab339d1c4bf9ba6eb22dd1e09da3924405cb58d39637e' 2023-04-18 22:07:24.316 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'2393a1a9602a15fa4ab57e' 2023-04-18 22:07:24.317 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:24.320 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 72] 2023-04-18 22:07:24.485 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'3393b1a96b2a15b65e944a04aa5592499d4e27e3d5ce676f047e' 2023-04-18 22:07:24.485 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:24.492 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=33, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=72), 56, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.493 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=33, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=72), 56, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:24.512 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'4393b1a9112a15b259b5ca25aa1593499c65cf7de9c99874fff1638b03af7e' 2023-04-18 22:07:24.513 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:24.517 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32801, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=43), 232, -42, 0x0704, 255, 255, b'7\x00'] 2023-04-18 22:07:24.519 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=32801, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=43), 232, -42, 0x0704, 255, 255, b'7\x00'] 2023-04-18 22:07:24.522 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=0, source_route=None, extended_timeout=False, tsn=43, profile_id=0, cluster_id=32801, data=Serialized[b'7\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:07:24.527 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: bound 'None' cluster: Status.SUCCESS 2023-04-18 22:07:24.528 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: Configuring cluster attribute reporting 2023-04-18 22:07:24.529 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: finished channel configuration 2023-04-18 22:07:24.542 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0000]: 'async_configure' stage succeeded 2023-04-18 22:07:24.543 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: 'async_configure' stage succeeded 2023-04-18 22:07:24.544 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0019]: 'async_configure' stage succeeded 2023-04-18 22:07:24.550 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: completed configuration 2023-04-18 22:07:24.551 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: started initialization 2023-04-18 22:07:24.552 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] 0x0704:ZDO: 'async_initialize' stage succeeded 2023-04-18 22:07:24.560 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0000]: initializing channel: from_cache: False 2023-04-18 22:07:24.561 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0000]: finished channel initialization 2023-04-18 22:07:24.562 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: initializing channel: from_cache: False 2023-04-18 22:07:24.563 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: finished channel initialization 2023-04-18 22:07:24.565 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0019]: initializing channel: from_cache: False 2023-04-18 22:07:24.566 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0019]: finished channel initialization 2023-04-18 22:07:24.570 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0000]: 'async_initialize' stage succeeded 2023-04-18 22:07:24.571 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0xef00]: 'async_initialize' stage succeeded 2023-04-18 22:07:24.572 DEBUG (MainThread) [homeassistant.components.zha.core.channels.base] [0x0704:1:0x0019]: 'async_initialize' stage succeeded 2023-04-18 22:07:24.577 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: power source: Battery or Unknown 2023-04-18 22:07:24.578 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: completed initialization 2023-04-18 22:07:24.593 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.zha entity: sensor.tze200_z1tyspqw_ts0601_rssi 2023-04-18 22:07:24.604 INFO (MainThread) [homeassistant.helpers.entity_registry] Registered new sensor.zha entity: sensor.tze200_z1tyspqw_ts0601_lqi 2023-04-18 22:07:24.730 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'5393b1a96b2a15b65e944a27aa5592499c4e27e8c3a867533e7e' 2023-04-18 22:07:24.731 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:24.738 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=67), 46, <EmberStatus.DELIVERY_FAILED: 102>, b''] 2023-04-18 22:07:24.739 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=67), 46, <EmberStatus.DELIVERY_FAILED: 102>, b''] 2023-04-18 22:07:24.740 DEBUG (MainThread) [bellows.zigbee.application] Unexpected message send notification tag: 46 2023-04-18 22:07:24.762 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'6393b1a9112a15b259964a25aa1593499c62fb78e9c99874fec76389fec74f7e' 2023-04-18 22:07:24.763 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:24.768 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=44), 220, -45, 0x0704, 255, 255, b'\x01\x00\x00'] 2023-04-18 22:07:24.770 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=0, clusterId=2, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=44), 220, -45, 0x0704, 255, 255, b'\x01\x00\x00'] 2023-04-18 22:07:24.771 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=0, source_route=None, extended_timeout=False, tsn=44, profile_id=0, cluster_id=2, data=Serialized[b'\x01\x00\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:07:24.775 DEBUG (MainThread) [zigpy.zdo] [0x0704:zdo] ZDO request ZDOCmd.Node_Desc_req: [0x0000] 2023-04-18 22:07:24.776 DEBUG (MainThread) [zigpy.zdo] [0x0704:zdo] No handler for ZDO request:ZDOCmd.Node_Desc_req([0x0000]) 2023-04-18 22:07:24.893 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'7393b1a9cf2a76e52cce121d6bf194956d7e' 2023-04-18 22:07:24.893 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:24.899 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received zigbeeKeyEstablishmentHandler: [a4:c1:38:58:5a:75:57:63, <EmberKeyStatus.TC_RESPONDED_TO_KEY_REQUEST: 6>] 2023-04-18 22:07:24.900 DEBUG (MainThread) [bellows.zigbee.application] Received zigbeeKeyEstablishmentHandler frame with [a4:c1:38:58:5a:75:57:63, <EmberKeyStatus.TC_RESPONDED_TO_KEY_REQUEST: 6>] 2023-04-18 22:07:24.938 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'0393b1a9cf2a76e52cce121d6bf1a67aeb7e' 2023-04-18 22:07:24.939 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:24.943 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received zigbeeKeyEstablishmentHandler: [a4:c1:38:58:5a:75:57:63, <EmberKeyStatus.TC_REQUESTER_VERIFY_KEY_SUCCESS: 52>] 2023-04-18 22:07:24.944 DEBUG (MainThread) [bellows.zigbee.application] Received zigbeeKeyEstablishmentHandler frame with [a4:c1:38:58:5a:75:57:63, <EmberKeyStatus.TC_REQUESTER_VERIFY_KEY_SUCCESS: 52>] 2023-04-18 22:07:25.068 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'1393b1a9112a11b259a24a25aa5592499c61ff79e9c99874fec4d788fe650f7e' 2023-04-18 22:07:25.069 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:25.077 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_BROADCAST: 4>, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=47), 216, -46, 0x0704, 255, 255, b'\x02\xb4\x01'] 2023-04-18 22:07:25.078 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_BROADCAST: 4>, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=47), 216, -46, 0x0704, 255, 255, b'\x02\xb4\x01'] 2023-04-18 22:07:25.079 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.Broadcast: 15>, address=<BroadcastAddress.ALL_ROUTERS_AND_COORDINATOR: 65532>), dst_ep=0, source_route=None, extended_timeout=False, tsn=47, profile_id=0, cluster_id=54, data=Serialized[b'\x02\xb4\x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:07:25.084 DEBUG (MainThread) [zigpy.zdo] [0x0704:zdo] ZDO request ZDOCmd.Mgmt_Permit_Joining_req: [180, <Bool.true: 1>] 2023-04-18 22:07:25.559 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'2393b1a96b2a134ea6944a13aa5592499c4e278412ce676bde7e' 2023-04-18 22:07:25.560 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:25.566 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_BROADCAST: 6>, 65532, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=47), 255, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:25.568 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_BROADCAST: 6>, 65532, EmberApsFrame(profileId=0, clusterId=54, sourceEndpoint=0, destinationEndpoint=0, options=<EmberApsOption.APS_OPTION_NONE: 0>, groupId=0, sequence=47), 255, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:25.570 DEBUG (MainThread) [bellows.zigbee.application] Unexpected message send notification tag: 255 2023-04-18 22:07:29.688 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'3393b1a9112a15b65894a524ab5593499c7ecf7de9c99874f8cf9dadf17e3dfe347e' 2023-04-18 22:07:29.689 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:29.697 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=48), 232, -42, 0x0704, 255, 255, b'\t\xfe$\r\x00'] 2023-04-18 22:07:29.698 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=48), 232, -42, 0x0704, 255, 255, b'\t\xfe$\r\x00'] 2023-04-18 22:07:29.701 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=48, profile_id=260, cluster_id=61184, data=Serialized[b'\t\xfe$\r\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:07:29.704 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\xfe$\r\x00' 2023-04-18 22:07:29.708 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=254, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:29.711 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\r\x00' 2023-04-18 22:07:29.764 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 254): b'\r\x00' 2023-04-18 22:07:29.765 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\r\x00' 2023-04-18 22:07:30.139 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'4393b1a9112a15b65894a524ab5593499c7fcf7de9c99874f8cf9dadf17e3dbfbc7e' 2023-04-18 22:07:30.140 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:30.147 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=49), 232, -42, 0x0704, 255, 255, b'\t\xfe$\r\x00'] 2023-04-18 22:07:30.149 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=49), 232, -42, 0x0704, 255, 255, b'\t\xfe$\r\x00'] 2023-04-18 22:07:30.152 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=49, profile_id=260, cluster_id=61184, data=Serialized[b'\t\xfe$\r\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:07:30.155 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\xfe$\r\x00' 2023-04-18 22:07:30.158 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=254, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:30.162 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\r\x00' 2023-04-18 22:07:30.182 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 254): b'\r\x00' 2023-04-18 22:07:30.183 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\r\x00' 2023-04-18 22:07:30.591 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'5393b1a9112a15b65894a524ab5593499c7cc37ee9c99874f8cf9dadf17e3d5aef7e' 2023-04-18 22:07:30.592 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:30.598 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=50), 228, -43, 0x0704, 255, 255, b'\t\xfe$\r\x00'] 2023-04-18 22:07:30.599 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=50), 228, -43, 0x0704, 255, 255, b'\t\xfe$\r\x00'] 2023-04-18 22:07:30.600 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=50, profile_id=260, cluster_id=61184, data=Serialized[b'\t\xfe$\r\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=228, rssi=-43) 2023-04-18 22:07:30.605 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\xfe$\r\x00' 2023-04-18 22:07:30.608 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=254, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:30.611 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\r\x00' 2023-04-18 22:07:30.629 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 254): b'\r\x00' 2023-04-18 22:07:30.630 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\r\x00' 2023-04-18 22:07:31.357 DEBUG (MainThread) [bellows.ezsp.protocol] Send command readCounters: () 2023-04-18 22:07:31.362 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'369021a9a52a8fa37e' 2023-04-18 22:07:31.384 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'6490a1a9a52a23b261943725e75592499d4e21abebce7f8bedc66d89f17e3aa7e8cddc6f8fffc5dbd5d2698c4623a9ec763ba5ea758241984c2613b1e070381c0e07bbe5ca658a459a4d9e4f9ff7c3d9d46a35a251904824ea557e' 2023-04-18 22:07:31.384 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:31.389 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received readCounters: [[54, 56, 125, 77, 0, 1, 6, 6, 24, 16, 14, 13, 5, 3, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]] 2023-04-18 22:07:31.394 DEBUG (MainThread) [bellows.ezsp.protocol] Send command getValue: (<EzspValueId.VALUE_FREE_BUFFERS: 3>,) 2023-04-18 22:07:31.398 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'479121a9fe2a16660f7e' 2023-04-18 22:07:31.407 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'7591a1a9fe2a15b3ae8fd57e' 2023-04-18 22:07:31.408 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:31.411 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received getValue: [<EzspStatus.SUCCESS: 0>, b'\xf7'] 2023-04-18 22:07:31.415 DEBUG (MainThread) [bellows.zigbee.application] Free buffers status EzspStatus.SUCCESS, value: 247 2023-04-18 22:07:31.415 DEBUG (MainThread) [bellows.zigbee.application] ezsp_counters: [MAC_RX_BROADCAST = 54, MAC_TX_BROADCAST = 56, MAC_RX_UNICAST = 125, MAC_TX_UNICAST_SUCCESS = 77, MAC_TX_UNICAST_RETRY = 0, MAC_TX_UNICAST_FAILED = 1, APS_DATA_RX_BROADCAST = 6, APS_DATA_TX_BROADCAST = 6, APS_DATA_RX_UNICAST = 24, APS_DATA_TX_UNICAST_SUCCESS = 16, APS_DATA_TX_UNICAST_RETRY = 14, APS_DATA_TX_UNICAST_FAILED = 13, ROUTE_DISCOVERY_INITIATED = 5, NEIGHBOR_ADDED = 3, NEIGHBOR_REMOVED = 2, NEIGHBOR_STALE = 0, JOIN_INDICATION = 2, CHILD_REMOVED = 0, ASH_OVERFLOW_ERROR = 0, ASH_FRAMING_ERROR = 0, ASH_OVERRUN_ERROR = 0, NWK_FRAME_COUNTER_FAILURE = 0, APS_FRAME_COUNTER_FAILURE = 0, UTILITY = 0, APS_LINK_KEY_NOT_AUTHORIZED = 0, NWK_DECRYPTION_FAILURE = 0, APS_DECRYPTION_FAILURE = 0, ALLOCATE_PACKET_BUFFER_FAILURE = 0, RELAYED_UNICAST = 0, PHY_TO_MAC_QUEUE_LIMIT_REACHED = 0, PACKET_VALIDATE_LIBRARY_DROPPED_COUNT = 0, TYPE_NWK_RETRY_OVERFLOW = 0, PHY_CCA_FAIL_COUNT = 0, BROADCAST_TABLE_FULL = 0, PTA_LO_PRI_REQUESTED = 0, PTA_HI_PRI_REQUESTED = 0, PTA_LO_PRI_DENIED = 0, PTA_HI_PRI_DENIED = 0, PTA_LO_PRI_TX_ABORTED = 0, PTA_HI_PRI_TX_ABORTED = 0, ADDRESS_CONFLICT_SENT = 0, EZSP_FREE_BUFFERS = 247] 2023-04-18 22:07:31.494 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'0591b1a9112a15b65894a524ab5593499c7dc77fe9c99874fbcf9c98fc78bda5f96c7e' 2023-04-18 22:07:31.495 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:31.501 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=51), 224, -44, 0x0704, 255, 255, b'\t\xff\x11\x00\x06\x82'] 2023-04-18 22:07:31.502 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=51), 224, -44, 0x0704, 255, 255, b'\t\xff\x11\x00\x06\x82'] 2023-04-18 22:07:31.506 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=51, profile_id=260, cluster_id=61184, data=Serialized[b'\t\xff\x11\x00\x06\x82'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:31.508 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\xff\x11\x00\x06\x82' 2023-04-18 22:07:31.512 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=255, command_id=17, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:31.516 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 17 b'\x00\x06\x82' 2023-04-18 22:07:31.535 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x11 (TSN 255): b'\x00\x06\x82' 2023-04-18 22:07:31.536 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x11: b'\x00\x06\x82' 2023-04-18 22:07:32.634 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'1591b1a9112a15b658944a24ab5593499c7ac77fe9c99874f2ce6383fd7e1fef0932fe576b00e7dad757b67e' 2023-04-18 22:07:32.635 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:32.641 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=52), 224, -44, 0x0704, 255, 255, b'\x08\x00\n\x01\x00 H\xe2\xff 8\xe4\xff \x01'] 2023-04-18 22:07:32.642 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=52), 224, -44, 0x0704, 255, 255, b'\x08\x00\n\x01\x00 H\xe2\xff 8\xe4\xff \x01'] 2023-04-18 22:07:32.644 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=52, profile_id=260, cluster_id=0, data=Serialized[b'\x08\x00\n\x01\x00 H\xe2\xff 8\xe4\xff \x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:32.647 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received ZCL frame: b'\x08\x00\n\x01\x00 H\xe2\xff 8\xe4\xff \x01' 2023-04-18 22:07:32.649 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=False, is_general=True), tsn=0, command_id=10, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:32.654 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame: Basic:Report_Attributes(attribute_reports=[Attribute(attrid=0x0001, value=TypeValue(type=uint8_t, value=72)), Attribute(attrid=0xFFE2, value=TypeValue(type=uint8_t, value=56)), Attribute(attrid=0xFFE4, value=TypeValue(type=uint8_t, value=1))]) 2023-04-18 22:07:32.660 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received command 0x0A (TSN 0): Report_Attributes(attribute_reports=[Attribute(attrid=0x0001, value=TypeValue(type=uint8_t, value=72)), Attribute(attrid=0xFFE2, value=TypeValue(type=uint8_t, value=56)), Attribute(attrid=0xFFE4, value=TypeValue(type=uint8_t, value=1))]) 2023-04-18 22:07:32.664 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Attribute report received: app_version=72, 0xFFE2=56, 0xFFE4=1 2023-04-18 22:07:32.668 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending reply header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=False, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, is_cluster=False, is_general=True), tsn=0, command_id=<GeneralCommand.Default_Response: 11>, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:32.672 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending reply: Default_Response(command_id=10, status=<Status.SUCCESS: 0>) 2023-04-18 22:07:32.674 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=1, source_route=None, extended_timeout=False, tsn=0, profile_id=260, cluster_id=0, data=Serialized[b'\x18\x00\x0b\n\x00'], tx_options=<TransmitOptions.ACK: 1>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:32.676 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=0), 57, b'\x18\x00\x0b\n\x00') 2023-04-18 22:07:32.684 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'529621a9602a15b65e904b25aa5493099d4e27abd4cb7f8bf6cc63eb5b7e' 2023-04-18 22:07:32.697 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'2696a1a9602a15fe3b287e' 2023-04-18 22:07:32.698 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'83401b7e' 2023-04-18 22:07:32.700 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 76] 2023-04-18 22:07:32.739 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'3696b1a96b2a15b65e904b25aa5493099d4e27e7d4ce671eff7e' 2023-04-18 22:07:32.740 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8430fc7e' 2023-04-18 22:07:32.744 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=76), 57, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:32.746 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=260, clusterId=0, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=76), 57, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:32.757 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'4696b1a9112a15b6589e4a24ab5593499c7bc37ee9c99874f8c66289fb7e3db92a7e' 2023-04-18 22:07:32.757 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8520dd7e' 2023-04-18 22:07:32.761 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=10, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=53), 228, -43, 0x0704, 255, 255, b'\x00\x01\x00\x07\x00'] 2023-04-18 22:07:32.762 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=10, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=53), 228, -43, 0x0704, 255, 255, b'\x00\x01\x00\x07\x00'] 2023-04-18 22:07:32.763 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=53, profile_id=260, cluster_id=10, data=Serialized[b'\x00\x01\x00\x07\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=228, rssi=-43) 2023-04-18 22:07:32.766 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x000a] Received ZCL frame: b'\x00\x01\x00\x07\x00' 2023-04-18 22:07:32.769 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x000a] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Server_to_Client: 0>, disable_default_response=0, reserved=0, is_cluster=False, is_general=True), tsn=1, command_id=0, direction=<Direction.Server_to_Client: 0>) 2023-04-18 22:07:32.773 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x000a] Decoded ZCL frame: Time:Read_Attributes(attribute_ids=[7]) 2023-04-18 22:07:32.775 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x000a] Received command 0x00 (TSN 1): Read_Attributes(attribute_ids=[7]) 2023-04-18 22:07:32.782 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x000a] Sending reply header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=False, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, is_cluster=False, is_general=True), tsn=1, command_id=<GeneralCommand.Read_Attributes_rsp: 1>, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:32.788 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x000a] Sending reply: Read_Attributes_rsp(status_records=[ReadAttributeRecord(attrid=0x0007, status=<Status.SUCCESS: 0>, value=TypeValue(type=LocalTime, value=735170852))]) 2023-04-18 22:07:32.791 DEBUG (MainThread) [bellows.zigbee.application] Sending packet ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), dst_ep=1, source_route=None, extended_timeout=False, tsn=1, profile_id=260, cluster_id=10, data=Serialized[b'\x18\x01\x01\x07\x00\x00#$\xd1\xd1+'], tx_options=<TransmitOptions.ACK: 1>, radius=0, non_member_radius=0, lqi=None, rssi=None) 2023-04-18 22:07:32.793 DEBUG (MainThread) [bellows.ezsp.protocol] Send command sendUnicast: (<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 0x0704, EmberApsFrame(profileId=260, clusterId=10, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=1), 58, b'\x18\x01\x01\x07\x00\x00#$\xd1\xd1+') 2023-04-18 22:07:32.798 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'659721a9602a15b65e904b2faa5493099d4e27aad7c57f8afcc16389df5aee76c0780c7e' 2023-04-18 22:07:32.813 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'5797a1a9602a15ff64b77e' 2023-04-18 22:07:32.814 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8610be7e' 2023-04-18 22:07:32.816 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received sendUnicast: [<EmberStatus.SUCCESS: 0>, 77] 2023-04-18 22:07:32.866 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'6797b1a96b2a15b65e904b2faa5493099d4e27e6d7ce67d5247e' 2023-04-18 22:07:32.867 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'87009f7e' 2023-04-18 22:07:32.874 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received messageSentHandler: [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=260, clusterId=10, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=77), 58, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:32.876 DEBUG (MainThread) [bellows.zigbee.application] Received messageSentHandler frame with [<EmberOutgoingMessageType.OUTGOING_DIRECT: 0>, 1796, EmberApsFrame(profileId=260, clusterId=10, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY|APS_OPTION_RETRY: 320>, groupId=0, sequence=77), 58, <EmberStatus.SUCCESS: 0>, b''] 2023-04-18 22:07:32.883 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'7797b1a9112a15b65894a524ab5593499c78c77fe9c99874f7cf618bfc713ea3ebccdf6d6f407e' 2023-04-18 22:07:32.884 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8070787e' 2023-04-18 22:07:32.887 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=54), 224, -44, 0x0704, 255, 255, b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01'] 2023-04-18 22:07:32.888 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=54), 224, -44, 0x0704, 255, 255, b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01'] 2023-04-18 22:07:32.889 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=54, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:32.891 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:32.894 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=2, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:32.898 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:32.924 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 2): b'\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:32.925 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:33.884 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'0797b1a9112a15b65894a524ab5593499c79c77fe9c99874f7cf618bfc713ea3ebccdf6d8c827e' 2023-04-18 22:07:33.885 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'8160597e' 2023-04-18 22:07:33.890 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=55), 224, -44, 0x0704, 255, 255, b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01'] 2023-04-18 22:07:33.892 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=55), 224, -44, 0x0704, 255, 255, b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01'] 2023-04-18 22:07:33.893 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=55, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:33.896 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x02\x02\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:33.899 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=2, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:33.903 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:33.922 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 2): b'\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:33.924 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x0f\x01\x04\x00\x01\x01' 2023-04-18 22:07:35.895 DEBUG (bellows.thread_0) [bellows.uart] Data frame: b'1797b1a9112a15b65894a524ab5593499c76c77fe9c99874f0cf608bfc6e3da5ebc9de6f8f69c54ffd7e' 2023-04-18 22:07:35.896 DEBUG (bellows.thread_0) [bellows.uart] Sending: b'82503a7e' 2023-04-18 22:07:35.902 DEBUG (MainThread) [bellows.ezsp.protocol] Application frame received incomingMessageHandler: [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=56), 224, -44, 0x0704, 255, 255, b'\t\x03\x02\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96'] 2023-04-18 22:07:35.903 DEBUG (MainThread) [bellows.zigbee.application] Received incomingMessageHandler frame with [<EmberIncomingMessageType.INCOMING_UNICAST: 0>, EmberApsFrame(profileId=260, clusterId=61184, sourceEndpoint=1, destinationEndpoint=1, options=<EmberApsOption.APS_OPTION_ENABLE_ROUTE_DISCOVERY: 256>, groupId=0, sequence=56), 224, -44, 0x0704, 255, 255, b'\t\x03\x02\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96'] 2023-04-18 22:07:35.905 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=56, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x03\x02\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:35.908 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x03\x02\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96' 2023-04-18 22:07:35.910 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=3, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:35.916 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96' 2023-04-18 22:07:35.932 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 3): b'\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96' 2023-04-18 22:07:35.933 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x10\x02\x02\x00\x04\x00\x00\x00\x96' 2023-04-18 22:07:37.907 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=57, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x04\x02\x00\x11\x03\x02\x00\x04\x00\x00\x00\xd4'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:37.909 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x04\x02\x00\x11\x03\x02\x00\x04\x00\x00\x00\xd4' 2023-04-18 22:07:37.915 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=4, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:37.917 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x11\x03\x02\x00\x04\x00\x00\x00\xd4' 2023-04-18 22:07:37.926 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 4): b'\x00\x11\x03\x02\x00\x04\x00\x00\x00\xd4' 2023-04-18 22:07:37.927 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x11\x03\x02\x00\x04\x00\x00\x00\xd4' 2023-04-18 22:07:39.916 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=58, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x05\x02\x00\x12\x04\x01\x00\x01\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:39.918 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x05\x02\x00\x12\x04\x01\x00\x01\x00' 2023-04-18 22:07:39.923 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=5, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:39.926 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x12\x04\x01\x00\x01\x00' 2023-04-18 22:07:39.934 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 5): b'\x00\x12\x04\x01\x00\x01\x00' 2023-04-18 22:07:39.935 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x12\x04\x01\x00\x01\x00' 2023-04-18 22:07:40.968 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:07:40.969 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:07:41.926 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=59, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x06\x02\x00\x13\x06\x04\x00\x01\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:41.928 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x06\x02\x00\x13\x06\x04\x00\x01\x00' 2023-04-18 22:07:41.934 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=6, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:41.936 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x13\x06\x04\x00\x01\x00' 2023-04-18 22:07:41.946 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 6): b'\x00\x13\x06\x04\x00\x01\x00' 2023-04-18 22:07:41.947 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x13\x06\x04\x00\x01\x00' 2023-04-18 22:07:43.935 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=60, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x07\x02\x00\x14\x07\x04\x00\x01\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:43.937 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x07\x02\x00\x14\x07\x04\x00\x01\x00' 2023-04-18 22:07:43.943 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=7, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:43.945 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x14\x07\x04\x00\x01\x00' 2023-04-18 22:07:43.955 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 7): b'\x00\x14\x07\x04\x00\x01\x00' 2023-04-18 22:07:43.956 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x14\x07\x04\x00\x01\x00' 2023-04-18 22:07:45.944 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=61, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x08\x02\x00\x15\x08\x01\x00\x01\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:45.946 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x08\x02\x00\x15\x08\x01\x00\x01\x00' 2023-04-18 22:07:45.952 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=8, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:45.954 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x15\x08\x01\x00\x01\x00' 2023-04-18 22:07:45.964 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 8): b'\x00\x15\x08\x01\x00\x01\x00' 2023-04-18 22:07:45.965 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x15\x08\x01\x00\x01\x00' 2023-04-18 22:07:47.955 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=62, profile_id=260, cluster_id=61184, data=Serialized[b'\t\t\x02\x00\x16\x0c\x01\x00\x01\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:47.960 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\t\x02\x00\x16\x0c\x01\x00\x01\x00' 2023-04-18 22:07:47.963 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=9, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:47.966 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x16\x0c\x01\x00\x01\x00' 2023-04-18 22:07:47.977 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 9): b'\x00\x16\x0c\x01\x00\x01\x00' 2023-04-18 22:07:47.977 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x16\x0c\x01\x00\x01\x00' 2023-04-18 22:07:49.964 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=63, profile_id=260, cluster_id=61184, data=Serialized[b'\t\n\x02\x00\x17\r\x02\x00\x04\x00\x00\x00d'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=228, rssi=-43) 2023-04-18 22:07:49.966 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\n\x02\x00\x17\r\x02\x00\x04\x00\x00\x00d' 2023-04-18 22:07:49.971 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=10, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:49.974 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x17\r\x02\x00\x04\x00\x00\x00d' 2023-04-18 22:07:49.984 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 10): b'\x00\x17\r\x02\x00\x04\x00\x00\x00d' 2023-04-18 22:07:49.984 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x17\r\x02\x00\x04\x00\x00\x00d' 2023-04-18 22:07:51.972 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=64, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x0b\x02\x00\x18\x0f\x02\x00\x04\x00\x00\x002'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:51.974 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x0b\x02\x00\x18\x0f\x02\x00\x04\x00\x00\x002' 2023-04-18 22:07:51.979 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=11, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:51.981 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x18\x0f\x02\x00\x04\x00\x00\x002' 2023-04-18 22:07:51.992 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 11): b'\x00\x18\x0f\x02\x00\x04\x00\x00\x002' 2023-04-18 22:07:51.993 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x18\x0f\x02\x00\x04\x00\x00\x002' 2023-04-18 22:07:53.982 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=65, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x0c\x02\x00\x19\x10\x02\x00\x04\x00\x00\x01,'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:53.984 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x0c\x02\x00\x19\x10\x02\x00\x04\x00\x00\x01,' 2023-04-18 22:07:53.989 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=12, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:53.992 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00\x19\x10\x02\x00\x04\x00\x00\x01,' 2023-04-18 22:07:54.002 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 12): b'\x00\x19\x10\x02\x00\x04\x00\x00\x01,' 2023-04-18 22:07:54.003 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00\x19\x10\x02\x00\x04\x00\x00\x01,' 2023-04-18 22:07:55.943 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:07:55.944 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:07:55.994 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=66, profile_id=260, cluster_id=61184, data=Serialized[b'\t\r\x02\x00&\x11\x00\x00\x11\x01\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:55.996 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\r\x02\x00&\x11\x00\x00\x11\x01\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:07:56.001 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=13, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:56.003 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00&\x11\x00\x00\x11\x01\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:07:56.014 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 13): b'\x00&\x11\x00\x00\x11\x01\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:07:56.014 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00&\x11\x00\x00\x11\x01\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:07:58.002 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=67, profile_id=260, cluster_id=61184, data=Serialized[b"\t\x0e\x02\x00'\x12\x00\x00\x11\x02\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96"], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:07:58.005 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b"\t\x0e\x02\x00'\x12\x00\x00\x11\x02\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96" 2023-04-18 22:07:58.010 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=14, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:07:58.012 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b"\x00'\x12\x00\x00\x11\x02\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96" 2023-04-18 22:07:58.023 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 14): b"\x00'\x12\x00\x00\x11\x02\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96" 2023-04-18 22:07:58.023 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b"\x00'\x12\x00\x00\x11\x02\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96" 2023-04-18 22:08:00.008 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=68, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x0f$-\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:00.010 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x0f$-\x00' 2023-04-18 22:08:00.016 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=15, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:00.018 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'-\x00' 2023-04-18 22:08:00.026 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 15): b'-\x00' 2023-04-18 22:08:00.026 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'-\x00' 2023-04-18 22:08:02.010 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=69, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x10$.\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:02.012 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x10$.\x00' 2023-04-18 22:08:02.017 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=16, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:02.019 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'.\x00' 2023-04-18 22:08:02.030 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 16): b'.\x00' 2023-04-18 22:08:02.030 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'.\x00' 2023-04-18 22:08:04.012 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=70, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x11$/\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:04.014 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x11$/\x00' 2023-04-18 22:08:04.020 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=17, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:04.022 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'/\x00' 2023-04-18 22:08:04.031 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 17): b'/\x00' 2023-04-18 22:08:04.032 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'/\x00' 2023-04-18 22:08:06.017 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=71, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x12$0\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=228, rssi=-43) 2023-04-18 22:08:06.019 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x12$0\x00' 2023-04-18 22:08:06.024 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=18, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:06.028 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'0\x00' 2023-04-18 22:08:06.037 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 18): b'0\x00' 2023-04-18 22:08:06.038 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'0\x00' 2023-04-18 22:08:08.019 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=72, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x13$1\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:08.021 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x13$1\x00' 2023-04-18 22:08:08.026 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=19, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:08.028 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'1\x00' 2023-04-18 22:08:08.038 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 19): b'1\x00' 2023-04-18 22:08:08.039 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'1\x00' 2023-04-18 22:08:10.024 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=73, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x14$2\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=228, rssi=-43) 2023-04-18 22:08:10.026 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x14$2\x00' 2023-04-18 22:08:10.031 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=20, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:10.033 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'2\x00' 2023-04-18 22:08:10.043 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 20): b'2\x00' 2023-04-18 22:08:10.044 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'2\x00' 2023-04-18 22:08:12.027 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=74, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x15$3\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:12.029 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x15$3\x00' 2023-04-18 22:08:12.035 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=21, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:12.038 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'3\x00' 2023-04-18 22:08:12.047 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 21): b'3\x00' 2023-04-18 22:08:12.048 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'3\x00' 2023-04-18 22:08:14.030 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=75, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x16$4\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:14.032 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x16$4\x00' 2023-04-18 22:08:14.037 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=22, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:14.039 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'4\x00' 2023-04-18 22:08:14.044 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 22): b'4\x00' 2023-04-18 22:08:14.045 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'4\x00' 2023-04-18 22:08:16.032 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=76, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x17$5\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:16.034 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x17$5\x00' 2023-04-18 22:08:16.039 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=23, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:16.041 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'5\x00' 2023-04-18 22:08:16.052 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 23): b'5\x00' 2023-04-18 22:08:16.052 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'5\x00' 2023-04-18 22:08:18.035 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=77, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x18$6\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:18.037 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x18$6\x00' 2023-04-18 22:08:18.041 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=24, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:18.043 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'6\x00' 2023-04-18 22:08:18.055 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 24): b'6\x00' 2023-04-18 22:08:18.055 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'6\x00' 2023-04-18 22:08:20.038 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=78, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x19$7\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:20.040 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x19$7\x00' 2023-04-18 22:08:20.045 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=25, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:20.048 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'7\x00' 2023-04-18 22:08:20.058 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 25): b'7\x00' 2023-04-18 22:08:20.059 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'7\x00' 2023-04-18 22:08:22.041 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=79, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x1a$8\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:22.043 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x1a$8\x00' 2023-04-18 22:08:22.049 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=26, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:22.054 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'8\x00' 2023-04-18 22:08:22.062 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 26): b'8\x00' 2023-04-18 22:08:22.063 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'8\x00' 2023-04-18 22:08:23.857 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0xF611), src_ep=0, dst=AddrModeAddress(addr_mode=<AddrMode.Broadcast: 15>, address=<BroadcastAddress.ALL_ROUTERS_AND_COORDINATOR: 65532>), dst_ep=0, source_route=None, extended_timeout=False, tsn=165, profile_id=0, cluster_id=6, data=Serialized[b'\x01\xfd\xff\x04\x01\x01\x19\x00\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:08:23.860 DEBUG (MainThread) [zigpy.zdo] [0xf611:zdo] ZDO request ZDOCmd.Match_Desc_req: [0xFFFD, 260, [25], []] 2023-04-18 22:08:24.044 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=80, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x1b$9\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:24.046 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x1b$9\x00' 2023-04-18 22:08:24.051 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=27, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:24.053 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'9\x00' 2023-04-18 22:08:24.063 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 27): b'9\x00' 2023-04-18 22:08:24.063 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'9\x00' 2023-04-18 22:08:25.914 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0xF611), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=166, profile_id=260, cluster_id=25, data=Serialized[b'\x01\x08\x01\x01\x89\x11\x11\x00\x011\x10\x00\xe3\r'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:08:25.916 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] Received ZCL frame: b'\x01\x08\x01\x01\x89\x11\x11\x00\x011\x10\x00\xe3\r' 2023-04-18 22:08:25.922 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Server_to_Client: 0>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=8, command_id=1, direction=<Direction.Server_to_Client: 0>) 2023-04-18 22:08:25.925 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] Decoded ZCL frame: Ota:QueryNextImageCommand(field_control=<FieldControl.HardwareVersion: 1>, manufacturer_code=4489, image_type=17, current_file_version=1061121, hardware_version=3555) 2023-04-18 22:08:25.927 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] Received command 0x01 (TSN 8): QueryNextImageCommand(field_control=<FieldControl.HardwareVersion: 1>, manufacturer_code=4489, image_type=17, current_file_version=1061121, hardware_version=3555) 2023-04-18 22:08:25.931 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] OTA query_next_image handler for 'LEDVANCE CLA60 RGBW Z3': field_control=FieldControl.HardwareVersion, manufacturer_id=4489, image_type=17, current_file_version=1061121, hardware_version=3555, model='CLA60 RGBW Z3' 2023-04-18 22:08:25.932 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] No OTA image is available 2023-04-18 22:08:25.934 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] Sending reply header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=False, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, is_cluster=True, is_general=False), tsn=8, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:25.938 DEBUG (MainThread) [zigpy.zcl] [0xF611:1:0x0019] Sending reply: query_next_image_response(status=<Status.NO_IMAGE_AVAILABLE: 152>, manufacturer_code=None, image_type=None, file_version=None, image_size=None) 2023-04-18 22:08:26.045 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=81, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x1c$:\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:26.047 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x1c$:\x00' 2023-04-18 22:08:26.053 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=28, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:26.055 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b':\x00' 2023-04-18 22:08:26.064 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 28): b':\x00' 2023-04-18 22:08:26.064 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b':\x00' 2023-04-18 22:08:28.050 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=82, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x1d$;\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:28.052 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x1d$;\x00' 2023-04-18 22:08:28.057 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=29, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:28.059 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b';\x00' 2023-04-18 22:08:28.070 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 29): b';\x00' 2023-04-18 22:08:28.070 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b';\x00' 2023-04-18 22:08:30.054 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=83, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x1e$<\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:30.056 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x1e$<\x00' 2023-04-18 22:08:30.061 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=30, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:30.064 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'<\x00' 2023-04-18 22:08:30.073 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 30): b'<\x00' 2023-04-18 22:08:30.074 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'<\x00' 2023-04-18 22:08:32.058 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=84, profile_id=260, cluster_id=61184, data=Serialized[b'\t\x1f$=\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:32.060 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\x1f$=\x00' 2023-04-18 22:08:32.065 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=31, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:32.068 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'=\x00' 2023-04-18 22:08:32.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 31): b'=\x00' 2023-04-18 22:08:32.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'=\x00' 2023-04-18 22:08:34.061 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=85, profile_id=260, cluster_id=61184, data=Serialized[b'\t $>\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:34.063 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t $>\x00' 2023-04-18 22:08:34.067 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=32, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:34.070 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'>\x00' 2023-04-18 22:08:34.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 32): b'>\x00' 2023-04-18 22:08:34.081 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'>\x00' 2023-04-18 22:08:36.064 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=86, profile_id=260, cluster_id=61184, data=Serialized[b'\t!$?\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:36.066 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t!$?\x00' 2023-04-18 22:08:36.071 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=33, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:36.074 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'?\x00' 2023-04-18 22:08:36.085 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 33): b'?\x00' 2023-04-18 22:08:36.085 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'?\x00' 2023-04-18 22:08:38.067 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=87, profile_id=260, cluster_id=61184, data=Serialized[b'\t"$@\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:38.069 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t"$@\x00' 2023-04-18 22:08:38.074 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=34, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:38.076 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'@\x00' 2023-04-18 22:08:38.082 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 34): b'@\x00' 2023-04-18 22:08:38.083 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'@\x00' 2023-04-18 22:08:40.069 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=88, profile_id=260, cluster_id=61184, data=Serialized[b'\t#$A\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:40.071 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t#$A\x00' 2023-04-18 22:08:40.076 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=35, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:40.078 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'A\x00' 2023-04-18 22:08:40.089 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 35): b'A\x00' 2023-04-18 22:08:40.090 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'A\x00' 2023-04-18 22:08:42.072 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=89, profile_id=260, cluster_id=61184, data=Serialized[b'\t$$B\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:42.075 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t$$B\x00' 2023-04-18 22:08:42.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=36, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:42.085 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'B\x00' 2023-04-18 22:08:42.093 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 36): b'B\x00' 2023-04-18 22:08:42.093 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'B\x00' 2023-04-18 22:08:44.075 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=90, profile_id=260, cluster_id=61184, data=Serialized[b'\t%$C\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:44.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t%$C\x00' 2023-04-18 22:08:44.083 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=37, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:44.085 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'C\x00' 2023-04-18 22:08:44.096 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 37): b'C\x00' 2023-04-18 22:08:44.097 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'C\x00' 2023-04-18 22:08:44.212 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:08:44.213 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:08:45.697 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=91, profile_id=260, cluster_id=61184, data=Serialized[b'\t&$D\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:45.698 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t&$D\x00' 2023-04-18 22:08:45.704 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=38, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:45.706 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'D\x00' 2023-04-18 22:08:45.715 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 38): b'D\x00' 2023-04-18 22:08:45.716 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'D\x00' 2023-04-18 22:08:48.737 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=92, profile_id=260, cluster_id=61184, data=Serialized[b"\t'$E\x00"], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:48.739 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b"\t'$E\x00" 2023-04-18 22:08:48.745 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=39, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:48.747 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'E\x00' 2023-04-18 22:08:48.757 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 39): b'E\x00' 2023-04-18 22:08:48.758 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'E\x00' 2023-04-18 22:08:50.879 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=93, profile_id=260, cluster_id=0, data=Serialized[b'\x08(\n\xdf\xffB<0\xd1\xd1+i2\xd1\xd1+i4\xd1\xd1+i>\xd1\xd1+i\x0c\xca\xd1+f\r\xca\xd1+\x12$\xd1\xd1+i$\xd1\xd1+i$\xd1\xd1+i%\xd1\xd1+i%\xd1\xd1+i&\xd1\xd1+i'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:50.881 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received ZCL frame: b'\x08(\n\xdf\xffB<0\xd1\xd1+i2\xd1\xd1+i4\xd1\xd1+i>\xd1\xd1+i\x0c\xca\xd1+f\r\xca\xd1+\x12$\xd1\xd1+i$\xd1\xd1+i$\xd1\xd1+i%\xd1\xd1+i%\xd1\xd1+i&\xd1\xd1+i' 2023-04-18 22:08:50.887 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=False, is_general=True), tsn=40, command_id=10, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:50.890 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame: Basic:Report_Attributes(attribute_reports=[Attribute(attrid=0xFFDF, value=TypeValue(type=CharacterString, value='0��+i2��+i4��+i>��+i\x0c��+f\r��+\x12$��+i$��+i$��+i%��+i%��+i&��+i'))]) 2023-04-18 22:08:50.892 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received command 0x0A (TSN 40): Report_Attributes(attribute_reports=[Attribute(attrid=0xFFDF, value=TypeValue(type=CharacterString, value='0��+i2��+i4��+i>��+i\x0c��+f\r��+\x12$��+i$��+i$��+i%��+i%��+i&��+i'))]) 2023-04-18 22:08:50.893 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Attribute report received: 0xFFDF='0��+i2��+i4��+i>��+i\x0c��+f\r��+\x12$��+i$��+i$��+i%��+i%��+i&��+i' 2023-04-18 22:08:50.897 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending reply header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=False, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, is_cluster=False, is_general=True), tsn=40, command_id=<GeneralCommand.Default_Response: 11>, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:50.898 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending reply: Default_Response(command_id=10, status=<Status.SUCCESS: 0>) 2023-04-18 22:08:51.010 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=94, profile_id=260, cluster_id=0, data=Serialized[b'\x08)\n\xdf\xffB((\xd1\xd1+i\xd1\xd1+i,\xd1\xd1+i.\xd1\xd1+i6\xd1\xd1+i8\xd1\xd1+i:\xd1\xd1+i<\xd1\xd1+i'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:51.012 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received ZCL frame: b'\x08)\n\xdf\xffB((\xd1\xd1+i\xd1\xd1+i,\xd1\xd1+i.\xd1\xd1+i6\xd1\xd1+i8\xd1\xd1+i:\xd1\xd1+i<\xd1\xd1+i' 2023-04-18 22:08:51.017 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=False, is_general=True), tsn=41, command_id=10, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:51.020 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Decoded ZCL frame: Basic:Report_Attributes(attribute_reports=[Attribute(attrid=0xFFDF, value=TypeValue(type=CharacterString, value='(��+i��+i,��+i.��+i6��+i8��+i:��+i<��+i'))]) 2023-04-18 22:08:51.022 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Received command 0x0A (TSN 41): Report_Attributes(attribute_reports=[Attribute(attrid=0xFFDF, value=TypeValue(type=CharacterString, value='(��+i��+i,��+i.��+i6��+i8��+i:��+i<��+i'))]) 2023-04-18 22:08:51.024 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Attribute report received: 0xFFDF='(��+i��+i,��+i.��+i6��+i8��+i:��+i<��+i' 2023-04-18 22:08:51.028 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending reply header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.GLOBAL_COMMAND: 0>, is_manufacturer_specific=False, direction=<Direction.Client_to_Server: 1>, disable_default_response=1, reserved=0, is_cluster=False, is_general=True), tsn=41, command_id=<GeneralCommand.Default_Response: 11>, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:51.029 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0x0000] Sending reply: Default_Response(command_id=10, status=<Status.SUCCESS: 0>) 2023-04-18 22:08:51.777 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=95, profile_id=260, cluster_id=61184, data=Serialized[b'\t$F\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:51.779 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t$F\x00' 2023-04-18 22:08:51.781 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=42, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:51.785 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'F\x00' 2023-04-18 22:08:51.798 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 42): b'F\x00' 2023-04-18 22:08:51.799 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'F\x00' 2023-04-18 22:08:54.818 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=96, profile_id=260, cluster_id=61184, data=Serialized[b'\t+$G\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:54.820 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t+$G\x00' 2023-04-18 22:08:54.826 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=43, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:54.828 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'G\x00' 2023-04-18 22:08:54.839 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 43): b'G\x00' 2023-04-18 22:08:54.839 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'G\x00' 2023-04-18 22:08:55.969 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:08:55.971 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:08:57.857 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=97, profile_id=260, cluster_id=61184, data=Serialized[b'\t,$H\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:08:57.859 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t,$H\x00' 2023-04-18 22:08:57.865 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=44, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:08:57.868 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'H\x00' 2023-04-18 22:08:57.878 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 44): b'H\x00' 2023-04-18 22:08:57.878 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'H\x00' 2023-04-18 22:09:00.898 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=98, profile_id=260, cluster_id=61184, data=Serialized[b'\t-$I\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:00.900 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t-$I\x00' 2023-04-18 22:09:00.905 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=45, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:00.908 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'I\x00' 2023-04-18 22:09:00.918 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 45): b'I\x00' 2023-04-18 22:09:00.919 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'I\x00' 2023-04-18 22:09:00.944 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:09:00.945 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:09:03.936 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=99, profile_id=260, cluster_id=61184, data=Serialized[b'\t.$J\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:03.938 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t.$J\x00' 2023-04-18 22:09:03.944 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=46, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:03.946 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'J\x00' 2023-04-18 22:09:03.957 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 46): b'J\x00' 2023-04-18 22:09:03.957 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'J\x00' 2023-04-18 22:09:06.977 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=100, profile_id=260, cluster_id=61184, data=Serialized[b'\t/$K\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:06.979 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t/$K\x00' 2023-04-18 22:09:06.984 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=47, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:06.987 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'K\x00' 2023-04-18 22:09:06.998 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 47): b'K\x00' 2023-04-18 22:09:06.998 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'K\x00' 2023-04-18 22:09:10.019 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=101, profile_id=260, cluster_id=61184, data=Serialized[b'\t0$L\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:10.021 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t0$L\x00' 2023-04-18 22:09:10.026 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=48, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:10.029 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'L\x00' 2023-04-18 22:09:10.040 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 48): b'L\x00' 2023-04-18 22:09:10.041 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'L\x00' 2023-04-18 22:09:13.058 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=102, profile_id=260, cluster_id=61184, data=Serialized[b'\t1$M\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:13.061 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t1$M\x00' 2023-04-18 22:09:13.066 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=49, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:13.068 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'M\x00' 2023-04-18 22:09:13.079 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 49): b'M\x00' 2023-04-18 22:09:13.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'M\x00' 2023-04-18 22:09:16.098 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=103, profile_id=260, cluster_id=61184, data=Serialized[b'\t2$N\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:16.100 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t2$N\x00' 2023-04-18 22:09:16.107 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=50, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:16.109 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'N\x00' 2023-04-18 22:09:16.117 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 50): b'N\x00' 2023-04-18 22:09:16.118 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'N\x00' 2023-04-18 22:09:19.139 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=104, profile_id=260, cluster_id=61184, data=Serialized[b'\t3$O\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:19.141 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t3$O\x00' 2023-04-18 22:09:19.148 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=51, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:19.150 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'O\x00' 2023-04-18 22:09:19.162 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 51): b'O\x00' 2023-04-18 22:09:19.162 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'O\x00' 2023-04-18 22:09:22.179 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=105, profile_id=260, cluster_id=61184, data=Serialized[b'\t4$P\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:22.181 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t4$P\x00' 2023-04-18 22:09:22.186 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=52, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:22.189 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'P\x00' 2023-04-18 22:09:22.199 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 52): b'P\x00' 2023-04-18 22:09:22.200 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'P\x00' 2023-04-18 22:09:25.217 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=106, profile_id=260, cluster_id=61184, data=Serialized[b'\t5$Q\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:25.219 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t5$Q\x00' 2023-04-18 22:09:25.223 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=53, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:25.225 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'Q\x00' 2023-04-18 22:09:25.238 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 53): b'Q\x00' 2023-04-18 22:09:25.238 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'Q\x00' 2023-04-18 22:09:28.258 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=107, profile_id=260, cluster_id=61184, data=Serialized[b'\t6$R\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=228, rssi=-43) 2023-04-18 22:09:28.261 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t6$R\x00' 2023-04-18 22:09:28.267 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=54, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:28.269 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'R\x00' 2023-04-18 22:09:28.278 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 54): b'R\x00' 2023-04-18 22:09:28.279 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'R\x00' 2023-04-18 22:09:31.300 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=108, profile_id=260, cluster_id=61184, data=Serialized[b'\t7$S\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:31.303 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t7$S\x00' 2023-04-18 22:09:31.309 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=55, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:31.311 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'S\x00' 2023-04-18 22:09:31.320 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 55): b'S\x00' 2023-04-18 22:09:31.321 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'S\x00' 2023-04-18 22:09:34.339 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=109, profile_id=260, cluster_id=61184, data=Serialized[b'\t8$T\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:34.342 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t8$T\x00' 2023-04-18 22:09:34.347 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=56, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:34.349 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'T\x00' 2023-04-18 22:09:34.360 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 56): b'T\x00' 2023-04-18 22:09:34.361 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'T\x00' 2023-04-18 22:09:37.380 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=110, profile_id=260, cluster_id=61184, data=Serialized[b'\t9$U\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:37.382 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t9$U\x00' 2023-04-18 22:09:37.388 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=57, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:37.391 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'U\x00' 2023-04-18 22:09:37.400 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 57): b'U\x00' 2023-04-18 22:09:37.401 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'U\x00' 2023-04-18 22:09:40.419 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=111, profile_id=260, cluster_id=61184, data=Serialized[b'\t:$V\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:40.421 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t:$V\x00' 2023-04-18 22:09:40.426 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=58, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:40.428 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'V\x00' 2023-04-18 22:09:40.439 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 58): b'V\x00' 2023-04-18 22:09:40.440 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'V\x00' 2023-04-18 22:09:43.464 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=112, profile_id=260, cluster_id=61184, data=Serialized[b'\t;$W\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:43.466 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t;$W\x00' 2023-04-18 22:09:43.470 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=59, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:43.472 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'W\x00' 2023-04-18 22:09:43.484 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 59): b'W\x00' 2023-04-18 22:09:43.485 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'W\x00' 2023-04-18 22:09:46.498 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=113, profile_id=260, cluster_id=61184, data=Serialized[b'\t<$X\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:46.500 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t<$X\x00' 2023-04-18 22:09:46.506 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=60, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:46.509 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'X\x00' 2023-04-18 22:09:46.520 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 60): b'X\x00' 2023-04-18 22:09:46.521 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'X\x00' 2023-04-18 22:09:49.539 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=114, profile_id=260, cluster_id=61184, data=Serialized[b'\t=$Y\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:49.540 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t=$Y\x00' 2023-04-18 22:09:49.546 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=61, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:49.548 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'Y\x00' 2023-04-18 22:09:49.556 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 61): b'Y\x00' 2023-04-18 22:09:49.557 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'Y\x00' 2023-04-18 22:09:52.578 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=115, profile_id=260, cluster_id=61184, data=Serialized[b'\t>$Z\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:52.581 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t>$Z\x00' 2023-04-18 22:09:52.587 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=62, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:52.589 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'Z\x00' 2023-04-18 22:09:52.599 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 62): b'Z\x00' 2023-04-18 22:09:52.599 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'Z\x00' 2023-04-18 22:09:55.619 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=116, profile_id=260, cluster_id=61184, data=Serialized[b'\t?$[\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:55.621 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t?$[\x00' 2023-04-18 22:09:55.627 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=63, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:55.629 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'[\x00' 2023-04-18 22:09:55.637 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 63): b'[\x00' 2023-04-18 22:09:55.638 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'[\x00' 2023-04-18 22:09:58.659 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=117, profile_id=260, cluster_id=61184, data=Serialized[b'\t@$\\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:09:58.661 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t@$\\x00' 2023-04-18 22:09:58.667 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=64, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:09:58.669 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\\x00' 2023-04-18 22:09:58.679 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 64): b'\\x00' 2023-04-18 22:09:58.680 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\\x00' 2023-04-18 22:10:01.699 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=118, profile_id=260, cluster_id=61184, data=Serialized[b'\tA$]\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:01.701 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tA$]\x00' 2023-04-18 22:10:01.706 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=65, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:01.708 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b']\x00' 2023-04-18 22:10:01.720 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 65): b']\x00' 2023-04-18 22:10:01.720 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b']\x00' 2023-04-18 22:10:04.213 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:10:04.214 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:10:04.739 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=119, profile_id=260, cluster_id=61184, data=Serialized[b'\tB$^\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:04.741 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tB$^\x00' 2023-04-18 22:10:04.746 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=66, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:04.748 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'^\x00' 2023-04-18 22:10:04.759 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 66): b'^\x00' 2023-04-18 22:10:04.760 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'^\x00' 2023-04-18 22:10:05.946 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:10:05.947 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:10:07.778 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=120, profile_id=260, clusterid=61184, data=Serialized[b'\tC$\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_memberradius=0, lqi=224, rssi=-44) 2023-04-18 22:10:07.780 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tC$\x00' 2023-04-18 22:10:07.786 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=67, command_id=36, direction=<Direction.Client_toServer: 1>) 2023-04-18 22:10:07.788 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\x00' 2023-04-18 22:10:07.798 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 67): b'\x00' 2023-04-18 22:10:07.799 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\x00' 2023-04-18 22:10:10.819 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=121, profile_id=260, cluster_id=61184, data=Serialized[b'\tD$\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:10.821 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tD$\x00' 2023-04-18 22:10:10.826 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=68, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:10.830 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\x00' 2023-04-18 22:10:10.839 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 68): b'\x00' 2023-04-18 22:10:10.840 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'`\x00' 2023-04-18 22:10:10.970 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:10:10.971 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:10:13.860 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=122, profile_id=260, cluster_id=61184, data=Serialized[b'\tE$a\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:13.862 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tE$a\x00' 2023-04-18 22:10:13.867 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=69, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:13.869 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'a\x00' 2023-04-18 22:10:13.881 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 69): b'a\x00' 2023-04-18 22:10:13.881 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'a\x00' 2023-04-18 22:10:16.899 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=123, profile_id=260, cluster_id=61184, data=Serialized[b'\tF$b\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:16.901 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tF$b\x00' 2023-04-18 22:10:16.906 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=70, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:16.908 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'b\x00' 2023-04-18 22:10:16.918 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 70): b'b\x00' 2023-04-18 22:10:16.919 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'b\x00' 2023-04-18 22:10:19.940 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=124, profile_id=260, cluster_id=61184, data=Serialized[b'\tG$c\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:19.942 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tG$c\x00' 2023-04-18 22:10:19.947 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=71, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:19.950 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'c\x00' 2023-04-18 22:10:19.960 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 71): b'c\x00' 2023-04-18 22:10:19.961 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'c\x00' 2023-04-18 22:10:22.981 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=125, profile_id=260, cluster_id=61184, data=Serialized[b'\tH$d\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:22.983 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tH$d\x00' 2023-04-18 22:10:22.988 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=72, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:22.990 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'd\x00' 2023-04-18 22:10:23.000 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 72): b'd\x00' 2023-04-18 22:10:23.001 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'd\x00' 2023-04-18 22:10:26.019 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=126, profile_id=260, cluster_id=61184, data=Serialized[b'\tI$e\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:26.022 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tI$e\x00' 2023-04-18 22:10:26.027 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=73, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:26.030 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'e\x00' 2023-04-18 22:10:26.041 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 73): b'e\x00' 2023-04-18 22:10:26.041 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'e\x00' 2023-04-18 22:10:29.059 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=127, profile_id=260, cluster_id=61184, data=Serialized[b'\tJ$f\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:29.061 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tJ$f\x00' 2023-04-18 22:10:29.066 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=74, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:29.068 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'f\x00' 2023-04-18 22:10:29.079 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 74): b'f\x00' 2023-04-18 22:10:29.080 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'f\x00' 2023-04-18 22:10:57.391 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=128, profile_id=260, cluster_id=61184, data=Serialized[b'\tK$g\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:10:57.393 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tK$g\x00' 2023-04-18 22:10:57.399 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=75, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:10:57.401 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'g\x00' 2023-04-18 22:10:57.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 75): b'g\x00' 2023-04-18 22:10:57.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'g\x00' 2023-04-18 22:11:10.947 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:11:10.948 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:11:24.215 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:11:24.216 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:11:25.971 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:11:25.972 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:11:28.390 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=129, profile_id=260, cluster_id=61184, data=Serialized[b'\tL$h\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:11:28.393 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tL$h\x00' 2023-04-18 22:11:28.399 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=76, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:11:28.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'h\x00' 2023-04-18 22:11:28.411 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 76): b'h\x00' 2023-04-18 22:11:28.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'h\x00' 2023-04-18 22:11:59.391 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=130, profile_id=260, cluster_id=61184, data=Serialized[b'\tM$i\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:11:59.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tM$i\x00' 2023-04-18 22:11:59.399 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=77, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:11:59.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'i\x00' 2023-04-18 22:11:59.411 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 77): b'i\x00' 2023-04-18 22:11:59.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'i\x00' 2023-04-18 22:12:15.948 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:12:15.949 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:12:27.390 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=131, profile_id=260, cluster_id=61184, data=Serialized[b'\tN$j\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:12:27.392 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tN$j\x00' 2023-04-18 22:12:27.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=78, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:12:27.400 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'j\x00' 2023-04-18 22:12:27.411 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 78): b'j\x00' 2023-04-18 22:12:27.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'j\x00' 2023-04-18 22:12:28.948 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=132, profile_id=260, cluster_id=61184, data=Serialized[b'\tO\x02\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:12:28.950 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tO\x02\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:28.956 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=79, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:12:28.958 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:28.968 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 79): b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:28.969 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:29.501 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=133, profile_id=260, cluster_id=61184, data=Serialized[b'\tO\x02\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:12:29.503 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tO\x02\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:29.508 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=79, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:12:29.510 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:29.521 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 79): b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:29.522 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:30.052 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=134, profile_id=260, cluster_id=61184, data=Serialized[b'\tO\x02\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:12:30.054 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tO\x02\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:30.059 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=79, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:12:30.061 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:30.073 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 79): b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:30.074 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00l\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:12:31.606 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=135, profile_id=260, cluster_id=61184, data=Serialized[b'\tP$m\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:12:31.608 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tP$m\x00' 2023-04-18 22:12:31.613 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=80, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:12:31.616 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'm\x00' 2023-04-18 22:12:31.626 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 80): b'm\x00' 2023-04-18 22:12:31.626 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'm\x00' 2023-04-18 22:12:40.973 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:12:40.974 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:12:44.216 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:12:44.216 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:13:01.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=136, profile_id=260, cluster_id=61184, data=Serialized[b'\tQ$n\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:13:01.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tQ$n\x00' 2023-04-18 22:13:01.400 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=81, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:13:01.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'n\x00' 2023-04-18 22:13:01.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 81): b'n\x00' 2023-04-18 22:13:01.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'n\x00' 2023-04-18 22:13:20.949 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:13:20.950 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:13:32.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=137, profile_id=260, cluster_id=61184, data=Serialized[b'\tR$o\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=232, rssi=-42) 2023-04-18 22:13:32.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tR$o\x00' 2023-04-18 22:13:32.399 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=82, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:13:32.401 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'o\x00' 2023-04-18 22:13:32.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 82): b'o\x00' 2023-04-18 22:13:32.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'o\x00' 2023-04-18 22:13:55.974 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:13:55.974 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:14:03.391 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=138, profile_id=260, cluster_id=61184, data=Serialized[b'\tS$p\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:14:03.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tS$p\x00' 2023-04-18 22:14:03.402 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=83, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:14:03.404 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'p\x00' 2023-04-18 22:14:03.414 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 83): b'p\x00' 2023-04-18 22:14:03.414 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'p\x00' 2023-04-18 22:14:04.217 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:14:04.218 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:14:25.951 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:14:25.951 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:14:34.391 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=139, profile_id=260, cluster_id=61184, data=Serialized[b'\tT$q\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:14:34.393 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tT$q\x00' 2023-04-18 22:14:34.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=84, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:14:34.401 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'q\x00' 2023-04-18 22:14:34.408 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 84): b'q\x00' 2023-04-18 22:14:34.409 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'q\x00' 2023-04-18 22:15:05.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=140, profile_id=260, cluster_id=61184, data=Serialized[b'\tU$r\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:15:05.393 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tU$r\x00' 2023-04-18 22:15:05.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=85, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:15:05.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'r\x00' 2023-04-18 22:15:05.409 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 85): b'r\x00' 2023-04-18 22:15:05.410 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'r\x00' 2023-04-18 22:15:10.975 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:15:10.976 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:15:24.218 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:15:24.219 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:15:30.952 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:15:30.953 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:15:36.390 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=141, profile_id=260, cluster_id=61184, data=Serialized[b'\tV$s\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:15:36.393 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tV$s\x00' 2023-04-18 22:15:36.397 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=86, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:15:36.400 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b's\x00' 2023-04-18 22:15:36.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 86): b's\x00' 2023-04-18 22:15:36.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b's\x00' 2023-04-18 22:16:07.391 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=142, profile_id=260, cluster_id=61184, data=Serialized[b'\tW$t\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:16:07.393 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tW$t\x00' 2023-04-18 22:16:07.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=87, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:16:07.400 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b't\x00' 2023-04-18 22:16:07.410 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 87): b't\x00' 2023-04-18 22:16:07.411 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b't\x00' 2023-04-18 22:16:25.977 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:16:25.978 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:16:35.953 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:16:35.954 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:16:38.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=143, profile_id=260, cluster_id=61184, data=Serialized[b'\tX$u\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:16:38.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tX$u\x00' 2023-04-18 22:16:38.399 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=88, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:16:38.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'u\x00' 2023-04-18 22:16:38.415 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 88): b'u\x00' 2023-04-18 22:16:38.415 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'u\x00' 2023-04-18 22:16:44.219 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:16:44.220 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:17:09.390 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=144, profile_id=260, cluster_id=61184, data=Serialized[b'\tY$v\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:17:09.392 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tY$v\x00' 2023-04-18 22:17:09.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=89, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:09.401 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'v\x00' 2023-04-18 22:17:09.410 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 89): b'v\x00' 2023-04-18 22:17:09.410 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'v\x00' 2023-04-18 22:17:28.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=145, profile_id=260, cluster_id=61184, data=Serialized[b'\tZ$w\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:17:28.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tZ$w\x00' 2023-04-18 22:17:28.400 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=90, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:28.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'w\x00' 2023-04-18 22:17:28.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 90): b'w\x00' 2023-04-18 22:17:28.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'w\x00' 2023-04-18 22:17:29.955 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=146, profile_id=260, cluster_id=61184, data=Serialized[b'\t[\x02\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:17:29.957 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t[\x02\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:29.962 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=91, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:29.965 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:29.975 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 91): b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:29.976 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:30.502 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=147, profile_id=260, cluster_id=61184, data=Serialized[b'\t[\x02\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:17:30.504 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t[\x02\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:30.509 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=91, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:30.512 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:30.522 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 91): b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:30.523 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:31.055 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=148, profile_id=260, cluster_id=61184, data=Serialized[b'\t[\x02\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:17:31.057 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t[\x02\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:31.063 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=91, command_id=2, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:31.065 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 2 b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:31.075 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x02 (TSN 91): b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:31.076 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x02: b'\x00y\x17\x00\x00\x11\x07\x06\x00\x00\xc8\x0c\x00\x00\x96\x12\x00\x00\xdc\x16\x00\x00\x96' 2023-04-18 22:17:32.611 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=149, profile_id=260, cluster_id=61184, data=Serialized[b'\t\$z\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:17:32.613 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t\$z\x00' 2023-04-18 22:17:32.617 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=92, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:32.619 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'z\x00' 2023-04-18 22:17:32.629 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 92): b'z\x00' 2023-04-18 22:17:32.629 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'z\x00' 2023-04-18 22:17:39.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=150, profile_id=260, cluster_id=61184, data=Serialized[b'\t]${\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:17:39.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t]${\x00' 2023-04-18 22:17:39.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=93, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:17:39.401 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'{\x00' 2023-04-18 22:17:39.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 93): b'{\x00' 2023-04-18 22:17:39.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'{\x00' 2023-04-18 22:17:40.954 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:17:40.956 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:17:40.977 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:17:40.978 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:18:04.220 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:18:04.221 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:18:10.393 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=151, profile_id=260, cluster_id=61184, data=Serialized[b'\t^$|\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:18:10.395 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t^$|\x00' 2023-04-18 22:18:10.401 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=94, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:18:10.403 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'|\x00' 2023-04-18 22:18:10.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 94): b'|\x00' 2023-04-18 22:18:10.414 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'|\x00' 2023-04-18 22:18:41.393 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=152, profile_id=260, clusterid=61184, data=Serialized[b'\t$}\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_memberradius=0, lqi=224, rssi=-44) 2023-04-18 22:18:41.395 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t$}\x00' 2023-04-18 22:18:41.400 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=95, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:18:41.403 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'}\x00' 2023-04-18 22:18:41.411 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 95): b'}\x00' 2023-04-18 22:18:41.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'}\x00' 2023-04-18 22:18:45.956 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:18:45.957 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:18:55.979 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:18:55.980 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:19:12.391 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=153, profile_id=260, cluster_id=61184, data=Serialized[b'\t$~\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:19:12.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\t$~\x00' 2023-04-18 22:19:12.398 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=96, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:19:12.401 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'~\x00' 2023-04-18 22:19:12.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 96): b'~\x00' 2023-04-18 22:19:12.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'~\x00' 2023-04-18 22:19:24.223 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:19:24.223 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:19:43.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=154, profile_id=260, cluster_id=61184, data=Serialized[b'\ta$\x7f\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=216, rssi=-46) 2023-04-18 22:19:43.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\ta$\x7f\x00' 2023-04-18 22:19:43.400 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=97, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:19:43.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\x7f\x00' 2023-04-18 22:19:43.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 97): b'\x7f\x00' 2023-04-18 22:19:43.413 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\x7f\x00' 2023-04-18 22:19:50.959 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:19:50.960 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:20:11.529 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Device seen - marking the device available and resetting counter 2023-04-18 22:20:11.530 DEBUG (MainThread) [homeassistant.components.zha.core.device] [0xF611](CLA60 RGBW Z3): Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:20:14.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=155, profile_id=260, cluster_id=61184, data=Serialized[b'\tb$\x80\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=224, rssi=-44) 2023-04-18 22:20:14.395 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tb$\x80\x00' 2023-04-18 22:20:14.401 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=98, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:20:14.404 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\x80\x00' 2023-04-18 22:20:14.414 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 98): b'\x80\x00' 2023-04-18 22:20:14.415 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\x80\x00' 2023-04-18 22:20:44.224 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Device seen - marking the device available and resetting counter 2023-04-18 22:20:44.225 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x0704: Update device availability - device available: True - new availability: True - changed: False 2023-04-18 22:20:45.392 DEBUG (MainThread) [zigpy.application] Received a packet: ZigbeePacket(src=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0704), src_ep=1, dst=AddrModeAddress(addr_mode=<AddrMode.NWK: 2>, address=0x0000), dst_ep=1, source_route=None, extended_timeout=False, tsn=156, profile_id=260, cluster_id=61184, data=Serialized[b'\tc$\x81\x00'], tx_options=<TransmitOptions.NONE: 0>, radius=0, non_member_radius=0, lqi=220, rssi=-45) 2023-04-18 22:20:45.394 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received ZCL frame: b'\tc$\x81\x00' 2023-04-18 22:20:45.399 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Decoded ZCL frame header: ZCLHeader(frame_control=FrameControl(frame_type=<FrameType.CLUSTER_COMMAND: 1>, is_manufacturer_specific=0, direction=<Direction.Client_to_Server: 1>, disable_default_response=0, reserved=0, is_cluster=True, is_general=False), tsn=99, command_id=36, direction=<Direction.Client_to_Server: 1>) 2023-04-18 22:20:45.402 WARNING (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Unknown cluster command 36 b'\x81\x00' 2023-04-18 22:20:45.411 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] Received command 0x24 (TSN 99): b'\x81\x00' 2023-04-18 22:20:45.412 DEBUG (MainThread) [zigpy.zcl] [0x0704:1:0xef00] No explicit handler for cluster command 0x24: b'\x81\x00' 2023-04-18 22:20:55.960 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Device seen - marking the device available and resetting counter 2023-04-18 22:20:55.961 DEBUG (MainThread) [homeassistant.components.zha.core.device] 0x57B8: Update device availability - device available: True - new availability: True - changed: False

Maybe someone can help me ?