Jason Cox
Jason Cox
You should be able to renew your membership or set up a new one. Instructions that might help are here: https://github.com/jasonacox/tinytuya/files/12836816/Tuya.IoT.API.Setup.v2.pdf
Some v3.5 devices do not respond to status(). They only broadcast async DP updates (ref: https://github.com/jasonacox/tinytuya/issues/597 https://github.com/jasonacox/tinytuya/issues/589). Try a monitor script: https://github.com/jasonacox/tinytuya/blob/master/examples/monitor.py Or try the script (or simliar) to what...
> I think it has something to do with the Tuya App. Interesting. We often see unable to connect when the Tuya app is connected to the device. Many of...
Yes, but I think it can be fast. And yes, @3735943886 - absolutely! Your code would be a good place to start. In the #646 branch have you been using...
> As a first step, I've committed XenonDeviceAsync as a foundational class for upcoming v2-async support, with minimal socket patches Perfect! Are you able to push to [v2-async](https://github.com/jasonacox/tinytuya/tree/v2-async)? I may...
> This is what, the 4th async PR? Ha! Touche! I really liked the idea of preserving the sync classes and reverting them in the other PRs would have been...
Nice. Is there a way we can marry the seqno (`TuyaMessage(seqno=X)`) to match request to response? If so, perhaps the logic could be something like: ```python seqno = d.send(DP_QUERY) response...
Ah, good point. But maybe that could still work. My thought would be "filter" would mean to not send back anything < seqno to prevent getting an old response. As...
Hi @Demax121 - I see the issue. The open_cover() and close_cover() are using "on" and "off" as the state of the switch rather than "close" as in your example -...
I agree @uzlonewolf, we could poll for status at init and if we see "open/close" vs "on/off", select cover type to use "open/close".