Teemu R.

Results 512 comments of Teemu R.

Seems to work on `python:3.10`, failing on 3.8 and 3.9 images.

With asyncio debug enabled, those unclosed loops are likely caused by the crash itself? ``` sys:1: ResourceWarning: unclosed ResourceWarning: Enable tracemalloc to get the object allocation traceback sys:1: ResourceWarning: unclosed...

Yes, by passing `BTLEConnection` as the connection class to your Thermostat constructor: ``` from eq3bt import Thermostat from eq3bt.connection import BTLEConnection t = Thermostat("mac", connection_cls=BTLEConnection) ```

Did it work previously / does it work with other backends? You can try to use `--backend` option to select either bluepy or gattlib to see if that helps. If...

Huh, that's odd... You have bleak installed as the stacktrace contains hints to it, so there should be nothing else to do. That error message implies that the device is...

@toalex77 that seems to be a separate issue, see #57

The error reporting is not indeed very nice, this is tangentially related to #29 .

The root cause is the inability to connect to the device, which can be caused by various reasons. Some users have reported low battery or too long distance as potential...

That could be done, PRs are welcome!

I think the the constructor could accept an optional timezone, that way it is easier to handle than adjusting it separately per method. Having a warning is also a good...