javicalle
javicalle
> Does that mean I can delete ts011f_plug.py from my custom_zha_quirks directory? Not yet. The PR has been just merged to the code mainstream. It will be included in the...
My quick & dirty proposal would be: ```python """Aqara E1-series wireless remote.""" from zigpy.profiles import zha from zigpy.zcl.clusters.general import ( Basic, Identify, MultistateInput, OnOff, Ota, PowerConfiguration, ) from zhaquirks.const import...
Yes I think that can be done this way: From the device view --> manage cluster --> select the `AqaraRemoteManuSpecificCluster` cluster --> select the `click_mode` attribute First get the current...
If you don't have the `AqaraRemoteManuSpecificCluster` that means your device hasn't caught the quirk. But also your device don't have 2 endpoints. At least not in my quirk. The device...
So, now your device shows only 1 endpoint, right? Can you check if your quirk have the `manufacturer_id_override = 0x115F` line as mine? Enable the debug logs and attach the...
Well, any device related info can be usefull, specially the reports from device. When you remove the power from device and power on again, the device usually send it's status...
I think most of the implementation matches the Z2M. ```javascript { zigbeeModel: ['lumi.remote.acn003'], model: 'WXKG16LM', vendor: 'Xiaomi', description: 'Aqara wireless remote switch E1 (single rocker)', meta: {battery: {voltageToPercentage: '3V_2850_3000'}}, fromZigbee:...
It seems that there is a special procedure to setting attribute values: > What I had to do when getting or setting attributes is first click the switch 5 times...
> the manufacturer code override was **not** needed for this to work Thanks for checking it. 👍🏻 Have you need to change the `operation_mode=1` to have double press or hold...
The device has been tunned in `zigbee-herdsman-converters` library: * https://github.com/Koenkk/zigbee-herdsman-converters/blob/ce119a6ca14033880dca8bf83cd01bc928ab5657/converters/fromZigbee.js#L4334 This could be a quirk for the device: ts0601_air_quality.py ```python """Tuya Air Quality sensor.""" from typing import Dict from zigpy.profiles...