javicalle
javicalle
Here are the results (some values have been obfuscated): ``` lumi.gateway.mieu01 v3.5.8_147 (AA:BB:CC:DD:EE:FF) @ 192.168.0.166 - token: 12345678901234567890123456789012 ``` and the `gateway.send("get_device_list")` part: ``` Got error when receiving: timed out...
Also tested with same results: ``` gateway = Gateway("192.168.0.166", "12345678901234567890123456789012", lazy_discover=False, start_id=1000) ```
I get the same error. Now the file content is: ``` from miio import Gateway gateway = Gateway("192.168.0.166", "12345678901234567890123456789012", lazy_discover=False, start_id=1000) print(gateway.info()) print('-----') print(gateway.send("no_method")) ``` And there are 5 devices...
I only have 3 different types of devices: - Mi Window and Door sensor - Mi Motion Sensor - Mi Wireless Switch My "Xiaomi Home" app don't have this option...
I have modified my `gateway.py` this way: ```python class DeviceType(IntEnum): """DeviceType matching using the values provided by Xiaomi.""" Unknown = -1 Gateway = 0 # lumi.0 Switch = 1 #...
I just commented the `print(dev)` commands and no errors are generated. But I can't find a `send` or `get_property` to validate it's really working against device.
My results: - `dev.get_property("fw_ver")` --> ERROR - `dev.get_property("voltage")` --> OK: [2995] - `dev.get_property("lqi")` --> ERROR
Apologize for being absent all this time. Right now my work has me very busy and I do not have the tranquility to dedicate time to hobbies. > @javicalle do...
Can you please try to get this attribute values from the `InvertedWindowCoveringCluster`: * 0x0007 'config_status' * 0x0017 'window_covering_mode' Thanks in advance.
I think that (in general) all the quirks to invert the cover behavior is nonsense, since the operation of each cover will depend on how the motor has been installed....