javicalle
javicalle
IMHO the `IasZone` needs a proper way to manage the 'extra' status: * https://github.com/home-assistant/core/issues/72828 What I would suggest to you here will be: * import the `MotionWithReset` class ```python from...
I'm glad that you get it working. > The MotionWithReset is basically taking the IasZone.cluster_id and interpreting the Return values differently (I remember the Translation example from the GitHub-Page)? No....
I'm glad to have been helpful. Can you create the PR with the working code? > Do you have a PayPal-Link where I cloud give you a little something for...
That could be a possible quirk: ts0041.py ```python """Tuya 1 Button Remote.""" from zigpy.profiles import zha from zigpy.quirks import CustomDevice from zigpy.zcl.clusters.general import Basic, OnOff, Ota, PowerConfiguration, Time from zhaquirks.const...
@blazewicz one question, the disable schedule is a 'one time' action, or is needed to call every time? I was thinking that we can update the attribute in the device...
Thanks for testing.
Sorry for the late reply. In the logs I can see that quirk complins about DP1 and DP2: ``` 2022-11-13 23:49:44.370 DEBUG (MainThread) [zigpy.zcl] [0x4996:1:0xef00] Received command 0x01 (TSN 81):...
Just to be sure: * can you control from HA the 4 buttons on the left? * is HA updating the status for the 4 buttons on the left when...
Please also can try to modify `class AtlanticSwitch(TuyaSwitch):` the ENDPOINT 2 in the `replacement` part like that: ```python 2: { PROFILE_ID: zha.PROFILE_ID, DEVICE_TYPE: zha.DeviceType.ON_OFF_SWITCH, INPUT_CLUSTERS: [TuyaSmartRemoteOnOffCluster], OUTPUT_CLUSTERS: [], }, ```...
I caught it... This version (just the changed classes) would trigger the scene buttons events: ts0601_switch.py ```python class AtlanticSwitchManufCluster(TuyaOnOffManufCluster): """On/Off Tuya cluster with extra device attributes.""" dp_to_attribute: Dict[int, DPToAttributeMapping] =...