mqboard
mqboard copied to clipboard
Micro Framework for MicroPython Boards Managed via MQTT
The info command could retrieve `os.uname()` as well as memory information.
Currently mqboard does not support user/pass auth with the broker, this should be added via --user/--passwd cmdline options.
Currently, if a put fails the destination file is left in a corrupted state. Switch to writing into a temp file and renaming it.
Currently the RTC is kept running across resets (not power cycles) but the time zone is lost. This results in the wrong times being displayed at boot until SNTP or...
In https://github.com/tve/mqboard/blob/master/mqtt_async/README.md: ``` def callback(topic, msg, retained, qos): print(topic, msg, retained, qos) .. config.subs_cb = callback ``` while in `mqtt_async.py` there is: ``` cb = self._subs_cb(topic, msg, bool(retained), qos, dup)...
The Hello World example in https://github.com/tve/mqboard/blob/master/mqtt_async/README.md is not working with Mosquitto broker. Default setting of `keepalive` is 0, Mosquitto however does not support such setting: ``` $ mosquitto_pub -p 1883...
Hi Thorsten, thank you for the super, super library, which I have been using in my project [inetbox2mqtt](https://github.com/mc0110/inetbox2mqtt) for a few months now and which really runs very stable and...
This is not an issue. My apologies if I ask my question here. I found your very nice framework which covers the needs for a project I am working on....
When running the hello world example here: https://github.com/tve/mqboard/blob/master/mqtt_async/hello-world.py and after converting the dictionary access to use dict['key'] method, I get the following error **Error:** ``` >>> %Run -c $EDITOR_CONTENT DEBUG:mqtt_async:DNS...
Accessing config dictionary values in Micropython does not work. The example here: https://github.com/tve/mqboard/blob/master/mqtt_async/hello-world.py accesses config values using dot notation. These (and probably in many other example files) need to be...