Paho Python MQTT Client – Understanding Callbacks

Callbacks are functions that are called in response to an event. The events and callbacks for the Paho MQTT client are as follows: Event Connection acknowledged Triggers the on_connect callback Event Disconnection acknowledged Triggers the on_disconnect callback Event Subscription acknowledged Triggers the  on_subscribe callback Event Un-subscription acknowledged Triggers the  on_unsubscribe callback Event Publish acknowledged Triggers the on_publish callback Event Message Received Triggers the on_message callback Event Log information available Triggers the on_log callback

Continue reading