the message callback does not get any retain parameter. fixing the following trace...
```
Traceback (most recent call last):
File "./pubsub.py", line 63, in <module>
client.loop_blocking()
File "/usr/local/lib/python3.5/dist-packages/Adafruit_IO/mqtt_client.py", line 152, in loop_blocking
self._client.loop_forever()
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 1481, in loop_forever
rc = self.loop(timeout, max_packets)
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 1003, in loop
rc = self.loop_read(max_packets)
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 1284, in loop_read
rc = self._packet_read()
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 1849, in _packet_read
rc = self._packet_handle()
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 2305, in _packet_handle
return self._handle_publish()
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 2500, in _handle_publish
self._handle_on_message(message)
File "/usr/local/lib/python3.5/dist-packages/paho/mqtt/client.py", line 2647, in _handle_on_message
self.on_message(self, self._userdata, message)
File "/usr/local/lib/python3.5/dist-packages/Adafruit_IO/mqtt_client.py", line 108, in _mqtt_message
self.on_message(self, feed, payload)
TypeError: message() missing 1 required positional argument: 'retain'
```
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
# Example of using the MQTT client class to subscribe to a feed and print out
|
|
# any changes made to the feed. Edit the variables below to configure the key,
|
|
# username, and feed to subscribe to for changes.
|
|
|
|
# Import standard python modules.
|
|
import sys
|
|
|
|
# Import Adafruit IO MQTT client.
|
|
from Adafruit_IO import MQTTClient
|
|
|
|
# Set to your Adafruit IO key.
|
|
# Remember, your key is a secret,
|
|
# so make sure not to publish it when you publish this code!
|
|
ADAFRUIT_IO_KEY = 'YOUR_AIO_KEY'
|
|
|
|
# Set to your Adafruit IO username.
|
|
# (go to https://accounts.adafruit.com to find your username)
|
|
ADAFRUIT_IO_USERNAME = 'YOUR_AIO_USERNAME'
|
|
|
|
# Set to the ID of the feed to subscribe to for updates.
|
|
FEED_ID = 'DemoFeed'
|
|
|
|
|
|
# Define callback functions which will be called when certain events happen.
|
|
def connected(client):
|
|
# Connected function will be called when the client is connected to Adafruit IO.
|
|
# This is a good place to subscribe to feed changes. The client parameter
|
|
# passed to this function is the Adafruit IO MQTT client so you can make
|
|
# calls against it easily.
|
|
print('Connected to Adafruit IO! Listening for {0} changes...'.format(FEED_ID))
|
|
# Subscribe to changes on a feed named DemoFeed.
|
|
client.subscribe(FEED_ID)
|
|
|
|
def disconnected(client):
|
|
# Disconnected function will be called when the client disconnects.
|
|
print('Disconnected from Adafruit IO!')
|
|
sys.exit(1)
|
|
|
|
def message(client, feed_id, payload):
|
|
# Message function will be called when a subscribed feed has a new value.
|
|
# The feed_id parameter identifies the feed, and the payload parameter has
|
|
# the new value.
|
|
print('Feed {0} received new value: {1}'.format(feed_id, payload))
|
|
|
|
|
|
# Create an MQTT client instance.
|
|
client = MQTTClient(ADAFRUIT_IO_USERNAME, ADAFRUIT_IO_KEY)
|
|
|
|
# Setup the callback functions defined above.
|
|
client.on_connect = connected
|
|
client.on_disconnect = disconnected
|
|
client.on_message = message
|
|
|
|
# Connect to the Adafruit IO server.
|
|
client.connect()
|
|
|
|
# Start a message loop that blocks forever waiting for MQTT messages to be
|
|
# received. Note there are other options for running the event loop like doing
|
|
# so in a background thread--see the mqtt_client.py example to learn more.
|
|
client.loop_blocking()
|