javicalle
javicalle
Please, fill the new bug template with the relevant info. At least, the device's signature and a vendor URL to identify the device. Thanks in advance.
Maybe duplicate of #1667
Please, attach the device's signature. You can get it from the device's details view.
It seems a quite normal Zigbee device. Have you tried reconfiguring the device while keeping the device awake? You can do it short pressing the reset pinhole while pairing.
In issue #1682 other user was sugested to use the `TuyaTempHumiditySensor` quirk, but it seems that is not working. @ernstmosch check if after applying the quirk the device signature has...
My (not tested, not validated) proposal: ```python class TuyaTempHumiditySensor_Square(CustomDevice): """Custom device representing tuya temp and humidity sensor with e-ink screen.""" signature = { # MODELS_INFO: [("_TZE200_qoy0ekbd", "TS0601")], ENDPOINTS: { 1:...
Caught it! Replace in the new class the `PowerConfiguration` with `TuyaPowerConfigurationCluster2AAA`. Already fixed in the previous code.
Has the quirk been applied to the device? Check if the device's signature has changed. Maybe you would need to enable the debug logs.
The quirk can't be forced, the device signature must match the quirk signature. Try to remove the `TemperatureHumidityManufCluster` from the signature, like this: ```python signature = { # MODELS_INFO: [("_TZE200_qoy0ekbd",...
Once again, all the required info seems to be in the `zigbee-herdsman-converters` library: * https://github.com/Koenkk/zigbee-herdsman-converters/blob/master/converters/fromZigbee.js#L1952-L1980 Interesting that humidity fix: ```python case tuya.dataPoints.tthHumidity: return {humidity: calibrateAndPrecisionRoundOptions( (value / (meta.device.manufacturerName === '_TZE200_bjawzodf'...