javicalle
javicalle
That's what I can see from your logs: ``` 2022-05-28 19:56:16 DEBUG (MainThread) [zigpy.zcl] [0x711F:1:0x0500] _update_attribute '2': Bool.true 2022-05-28 19:56:18 DEBUG (MainThread) [zigpy.zcl] [0x711F:1:0x0500] _update_attribute '2': Bool.false 2022-05-28 19:56:19 DEBUG...
I can't say what is the reported error, but not seems related to the battery status. The logs from a previous comment show several `dp_2` reports: * https://github.com/zigpy/zha-device-handlers/issues/1502#issuecomment-1111357062 Maybe if...
Ummm, there is a report from other quirk that `DoublingPowerConfigurationCluster` isn't working. Let's try with the same approach: 1. add a new `TuyaPowerConfigurationCluster` class (above the `ContactSwitchManufCluster` definition): ```python class...
I would suggest this quirk: DimmerSwitchWithNeutral2Gang ```python class DimmerSwitchWithNeutral2Gang(TuyaDimmerSwitch): """Tuya Dimmer Switch Module With Neutral 2 Gang.""" signature = { MODELS_INFO: [("_TZ3210_pagajpog", "TS110E")], ENDPOINTS: { # 1: { PROFILE_ID: zha.PROFILE_ID,...
Have you removed the device from HA and paired it again? If still don't works, enable the debug logs and attach the relevant info here: * https://www.home-assistant.io/integrations/zha/#debug-logging
I want to check this issue but I will be away from my computer until the end of August.
The first thing to say is that my knowledge of Python is quite basic, so I recommend interpreting my comments and instructions with caution. In principle the functionality is implemented...
The device is not liking the command we sent it. Could you include the full log? I want to see the device request and the response. Also you can try...
Which param are you trying to set? And where do these attributes come from?: ```python 0x8001: ("temp_unit_convert", t.enum8), 0x8002: ("alarm_max_temperature", t.Single), 0x8003: ("alarm_min_temperature", t.Single), 0x8004: ("temperature_sensitivity", t.Single), ``` Any settings...
Ummmm, I think I see what you're trying to... Add the attributes to the cluster `TemperatureHumidityManufCluster` and adapt the code. ```python class TemperatureHumidityManufCluster(TuyaMCUCluster): """Tuya Manufacturer Cluster with Temperature and Humidity...