javicalle
javicalle
These logs don't have the format I would expect. Can you attache the logs from manipulating the switch in HA?
The device is receiving the commands and accepting it, but not seems to be the good ones. After checking the attached link, it seems to me a pretty diferent quirk:...
Sorry but I can't see the logs from HA interaction. Enable the debug logs and attach only relevant info from device. If you are not able to get the info...
The `TuyaPowerConfigurationCluster` is doubling the `battery_percentage_remaining`. To fix it you can create a new class: ```python class TuyaMCUPowerConfiguration(PowerConfiguration, TuyaLocalCluster): """Tuya PowerConfiguration.""" ``` You will need to import the `TuyaLocalCluster`: ```python...
Please, can you attach a debug log from the device operation? We need to see if there are multiple commands when light is dimmed or just one command send.
Have you enabled the debug logs for `zhaquirks`? It is expected that you will have traces of the type `Sending Tuya Cluster Command... Cluster Command is %x, Arguments are %s`...
Well, let's analyze it step by step. 1. If the device has a behavior when you operate it manually, the quirk won't change it at all. The quirk acts as...
In the recent #1748 the behavior for some Tuya dimmers will change. I believe that this issue can be related. In case someone wants to test the new version before...
I believe that you will need to copy also the `ts0601_dimmer.py` file and made the `mcu` imports relative to your `custom_quirk_folder`: * https://github.com/zigpy/zha-device-handlers/blob/dev/zhaquirks/tuya/ts0601_dimmer.py If you don't mind, you can wait...
The dimming action from HA has a bug in some quirks (mainly Tuya `ts0601_dimmer` devices). The latest HA version (2022.10.X) have the new implementation. Double check that device is not...