Home

Awesome

MQTT protocol with Thingspeak using Micropython

Example code showing how to use the MQTT protocol with the Thingspeak cloud service [https://thingspeak.com]

Thingspeak configuration

  1. Create a Thingspeak account https://thingspeak.com
  2. Create a new Thingspeak Channel (select New Channel on the My Channels page)
    • the Channel ID is required for configuration (found at the top of every channel page)
  3. Create a new MQTT Device by following instructions in https://www.mathworks.com/help/thingspeak/mqtt-basics.html
    • when you create a new MQTT device it is important to record the three configuration parameters:
      • MQTT Client ID
      • MQTT Username
      • MQTT Password (careful - you can only copy the password during the MQTT device creation step)

Example code configuration

Tested with Hardware

Tested with Micropython Versions

Recommended Tools for Windows

Publishing data to ThingSpeak channels

Usage

  1. Configure code file publishThingspeak.py with WiFi and ThingSpeak configuration parameters
  2. Copy the file publishThingspeak.py to your device, using ampy, rshell, or webrepl
$ ampy -pCOMx -d1 put publishThingspeak.py main.py
  1. Reset the board
  2. Observe that data is being Published to the ThingSpeak channel at Thingspeak.com

Subscribing to ThingSpeak channels (still to be updated)

Usage

  1. Configure code file subscribeThingspeak.py with ThingSpeak parameters
  2. Copy the file subscribeThingspeak.py to your device, using ampy, rshell, webrepl
$ ampy -pCOMx -d1 put subscribeThingspeak.py main.py
  1. Configure a 2nd device to publish the freeHeap data (see above)
  2. Reset the board
  3. Connect to the REPL with Putty (or simlar) to observe subscribed channel data being received (every 30s in the example code)

Installing UMQTT Package for Pyboard D

The example code requires the MicroPython MQTT (UMQTT) Package. Pyboard D firmware does not have this package built-in

How to install the UMQTT package
  1. Navigate to [Micropython lib](https://github.com/micropython/micropython-lib
  2. Select the "Clone or download" button
  3. Select "Download ZIP"
  4. Extract the ZIP. Should see folder called "micropython-lib-master"
  5. Two files need to be copied to the MicroPython filesystem
    • micropython-lib\micropython\umqtt.simple\umqtt\simple.py
    • micropython-lib\micropython\umqtt.robust\umqtt\robust.py

Copy these two files to the MicroPython filesystem with the directory structure shown below.

boot.py
lib
  |
  umqtt
     simple.py
     robust.py

Example with Ampy:

>ampy -pCOM27 -d1 ls
boot.py
>ampy -pCOM27 -d1 mkdir lib
>ampy -pCOM27 -d1 mkdir lib/umqtt
>ampy -pCOM27 -d1 put simple.py lib/umqtt/simple.py
>ampy -pCOM27 -d1 put robust.py lib/umqtt/robust.py
>ampy -pCOM27 -d1 ls
boot.py
lib
>ampy -pCOM27 -d1 ls lib
umqtt
>ampy -pCOM27 -d1 ls lib/umqtt
simple.py
robust.py
Validating the UMQTT package install

From the REPL (using Putty, etc) execute the following commands and observe similar output

>>> from umqtt.robust import MQTTClient

>>> dir(MQTTClient)
['__class__', '__init__', '__module__', '__name__', '__qualname__', '__bases__', '__dict__', 'connect', 'delay', 'disconnect', 'log', 'DEBUG', 'DELAY', 'reconnect', 'publish', 'wait_msg', '_send_str', '_recv_len', 'set_callback', 'set_last_will', 'ping', 'subscribe', 'check_msg']

If you see this result you have successfully installed the umqtt package. :tada: :relieved: