javicalle

Results 408 comments of javicalle

A couple of PRs that can be helpfull here had been merged: * #1737 * #1779 With the new HA version it is expected that: 1. the device successfully sync...

> except that Humidity is shown like 7% but actually it's 70% That can be fixed here: ```python 2: DPToAttributeMapping( TuyaRelativeHumidity.ep_attribute, "measured_value", dp_type=TuyaDPType.VALUE, converter=lambda x: x * 1000, ), ```...

> how to add the missing attributes(nousTempUnitConvert: 9, nousTempSensitivity: 19, nousReportInterval: 17,) I'll give one to you, but the rest would be the same. Let's take `nousTempUnitConvert` as example. The...

Now I have a few requests: * Can you check if the device syncs date/time correctly? * Can you check if the `TemperatureHumidityManufCluster` has `mcu_version` attribute? If not, there is...

> how can i check? i tried to change the device date manually to 2021/1/1, waited for some minutes, it doesn't change. I would try removing the battery and putting...

Upsssss, try with: ```python class TemperatureHumidityManufCluster(TuyaMCUCluster): """Tuya Manufacturer Cluster with Temperature and Humidity data points.""" attributes = TuyaMCUCluster.attributes.copy() attributes.update({ 0xD009: ("temperature_unit_converter", t.CharacterString, True), .../... }) ```

That can be a pairing issue. Battery powered devices must keep 'awake' during all the pairing process. For that, short press the pairing button every second or so while device...

The 'time requests part would be already fixed. Please attach the logs from your device. Any logs from command 0x0024, 0x24, 40 are wellcomed.

I believe that #1779 should have fixed this issue.