Closed Necroneco closed 1 year ago
in line 655 of custom_components/aqara_gateway/core/gateway.py modify it as following
if device['model'] in ('lumi.airmonitor.acn01', 'aqara.tow_w.acn001') and self.cloud == 'miot':
I tried it, found self.cloud
is 'aiot'
...
changed it as following works fine
if device['model'] == 'lumi.airmonitor.acn01' and self.cloud == 'miot' or device['model'] == 'aqara.tow_w.acn001':
Hello, I found the temperature of this device was scaled by 100
how to adapt it?