MQTT
MQTT¶
exception MQTTError¶
Generic MQTT error.
exception MQTTConnectionBadVersion¶
Protocol versions mismatch between client and server.
exception MQTTConnectionBadIdentifier¶
The client identifier is not correct.
exception MQTTConnectionServerUnavailable¶
The MQTT server is not reachable or does not respond.
exception MQTTConnectionBadCredentials¶
Wrong username and/or password specified for MQTT connection.
exception MQTTConnectionNotAuthorized¶
The username specified for MQTT connection is not authorized to establish the connection, even it credentials are correct.
exception MQTTPublishTimeout¶
The publish method has timeout waiting for ack from borker when qos > 0 and timeout > 0.
exception MQTTPublishGenericError¶
The publish method failed with an error that does not match any of the previous exceptions.
class MQTT¶
MQTT(host, client_id, username="", password="", port=1883, clean_session=True, keepalive=60, reconnect_after=5000, network_timeout=6000, ctx=())
hostis the server hostname or IP address to connect to and to subscribe for messages.client_idis "our" client identification.usernameis the username used for authentication.passwordis the passoword user for the authentication.portis the server TCP/UDP port to connect to. Default: 1883.clean_sessionif True the MQTT is cleaned. Default: True.keepaliveis the time period in seconds to send a keep-alive to the server.reconnect_afteris the auto reconnect time in milliseconds.network_timeoutis the timeout in milliseconds for the connections. Currently unused.ctxis the SSL context. See the description in HTTP protocol page
method connect¶
connect()
method is_connected¶
is_connected()
method disconnect¶
disconnect()
method pending_subscriptions¶
pending_subscriptions()
method publish¶
publish(topic, msg, qos=0, retain=False, timeout=0)
msg message related to topic subscribers, with qos quality of service level. The retain flag specifies whether the message has to be kept after a subscriber receives it or not. The timeout specifies the time in milliseconds to wait for an acknowledgement form the broker when qos > 0; when qos = 0, the timeout is ignored. If the acknowledgement is not received by the timeout, the MQTTPublishTimeout exception is raised. method receive¶
receive()
method on¶
on(sub, callback, qos=1)
callback function for the sub topic, with qos quality of service level. method stats¶
stats()
- first connection since system startup, in milliseconds.
- last connection since system startup, in milliseconds.
- last disconnection since system startup, in milliseconds.
- number of disconnections.
- number of received data.
- number of received messages.
- number of sent data.
- number of sent messages.
method loop¶
loop()