smar
smar
Great work! That's actually far fewer changes than I had anticipated. If it all works out well after your testing, it will be good to incorporate the changes and bring...
I haven't looked at the code, but if I recall correctly, the "mode" keyword has been changed to "system_mode". Here is a quick test message I just did on my...
Yes it does look as if the callback has been deprecated, and everything is now asynchronous. From the latest ramses_rf/gateway.py: ``` def send_cmd( self, cmd: Command, /, *, gap_duration: float...
Having had another look at it just now, you could try replacing the `GWY.send_cmd ` line with the following: ``` task = GWY.send_cmd(gw_cmd) task.add_done_callback(send_command_callback) ``` and then change the send_command_callback...
> Also a benefit of using the ramses_esp via MQTT is that you can then have multiple "clients" using it. Yes, one of the great benefits of using MQTT.
Hi @martynwendon I have just pushed a complete update of the system, which works with the latest version of ramses. Please feel free to give this a try and see...