ZeGuigui

Results 11 comments of ZeGuigui

Old topic but as I am still using this lib I tought I would add a comment :-) Instead of changing http to https you could simply instruct curl to...

Since a few days when I have a basic auth page with Firefox ESR 52.8.0 it crashes firefox! I am using PasIFox 1.2.2 When PasIFox is disabled basic auth does...

This one is a must-have to switch from evernote (or equivalent) to ownnote.

How complicated is this to add auto reconnect? Just switched to zha and I have a wifi zigate. I had not seen the issue before upgrading :(

I started looking on my own. If what I understand is right (but my Python skills are not very developped) I might propose a pull request. I have to dig...

Thanks. I was miles away from something that complete. I will give it a try tonight.

First tests with last commit not very conclusive. Starting at 00:46:34 UTC I get some `ZiGate doesn't answer to command` error messages in my log files. There is no trace...

I traced back the error message to `def connection_lost(self, exc) -> None:` in `uart.py` so definitively the loss of the connection is registered. The real question is why is the...

I just performed a test against the code in the dev branch which is supposed to implement the reconnect feature. ``` 2021-06-14 14:51:37 DEBUG (MainThread) [zigpy_zigate.uart] Closed serial connection ```...

I added some debug code into the lib, just to be sure. ``` def connection_lost(self, exc) -> None: """Port was closed expecteddly or unexpectedly.""" if self._connected_future and not self._connected_future.done(): if...