javicalle

Results 408 comments of javicalle

You need to import the `GreenPowerProxy` at the `ts0601_cover.py` file like: ```python from zigpy.zcl.clusters.general import Basic, GreenPowerProxy, Groups, Identify, OnOff, Ota, Scenes, Time ``` I'm not sure, but maybe you...

Any other info in your logs? Seems like the device isn't available. Have you tried to repair?

You need to add your device in the `TUYA_COVER_COMMAND` (in the `__init__.py` file) Something like: ```python TUYA_COVER_COMMAND = { "_TZE200_r0jdjrvi": {0x0000: 0x0000, 0x0001: 0x0002, 0x0002: 0x0001}, ... ```

Try to change the relative import in your local `ts0601_cover` file: ```python # from zhaquirks.tuya import ( from . import ( ``` Once you get it working in HA we...

Ummmm, could you try with: ```python from custom_zha_quirks import ( TuyaManufacturerWindowCover, TuyaManufCluster, TuyaWindowCover, TuyaWindowCoverControl, ) ``` Delete any `__pycache__` folder inside your local `custom_zha_quirks` folder and restart HA.

The Tuya cover aren't easy devices to quirk... We would need the logs of the device to understand what could be happening. Enable in HA the debug logging for ZHA...

Yes, that's perfect. Can you attach the same command from the remote?

Thanks, I believe that I know what is the problem. I will need some time to see how can be fixed.

(Just a little, not too much...) **Disclaimer**: _There will be dragons here_. It is very likely that the code does not work or works very erratically (mixed up/down/stop. The version...