You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two new methods need to be created within IO_MQTT which will handle the MiniMQTT client's on_subscribe and on_unsubscribe callback methods, named _on_subscribe_mqtt and _on_unsubscribe_mqtt
The text was updated successfully, but these errors were encountered:
IO_MQTT's
on_subscribe
andon_subscribe
are setup (https://github.com/adafruit/Adafruit_CircuitPython_AdafruitIO/blob/master/adafruit_io/adafruit_io.py#L81) but never run as they're not explicitly declared in theinit
(https://github.com/adafruit/Adafruit_CircuitPython_AdafruitIO/blob/master/adafruit_io/adafruit_io.py#L83) and do not have "handler" methods like connect/on_message/disconnect.Two new methods need to be created within
IO_MQTT
which will handle the MiniMQTT client'son_subscribe
andon_unsubscribe
callback methods, named_on_subscribe_mqtt
and_on_unsubscribe_mqtt
The text was updated successfully, but these errors were encountered: