MQTT
MQTT Device Driver allows Iotellect Server to connect to MQTT broker and to subscribe to topics. Received messages are presented as device events.
![]() | MQTT is an ISO standard publish-subscribe based messaging protocol for use on top of the TCP/IP protocol. |
Driver Information
Driver Plugin ID: | com.tibbo.linkserver.plugin.device.mqtt |
Global Settings
None defined.
User Level Settings
None defined.
Device Account Properties
Connection Properties
Connection settings define how Iotellect Server communicates with a MQTT broker. These settings may be accessed using the Edit Device Properties action of Device Context. The following connection properties are available:
Setting | Description |
Connection Method | Dictates how the device establishes a connection with the MQTT broker. Options include:
|
Broker Address | The hostname or domain name of the MQTT broker. |
Port | Indicate the port where the MQTT broker is listening. If no port is specified, the device will attempt to connect to the broker using the default port appropriate for the selected Connection Method. |
Topics | Table of subscribed topics and QoS (Quality of Service) parameters. Topics support wildcards. QoS parameter can be set to 0, 1 or 2.
|
Message Data Format | Data type of the Message Data field of Message events. Possible types are:
|
Client ID | This is an identifier of each client connecting to a server. Client ID must be unique across all clients. It is used by the server to store data related to the client, hence it is important that this parameter remains the same when connecting to a server if durable subscriptions or reliable messaging are required. By default, Client ID is generated automatically. |
Clean Session | Sets whether the client and server should remember state across restarts and reconnects. If set to false both the client and server will maintain state across restarts of the client, the server and the connection. Message delivery will be reliable meeting the specified QoS even if the client, server or connection are restarted. If set to true the client and server will not maintain state across restarts of the client, the server or the connection. |
Keep Alive Interval | This value, measured in seconds, defines the maximum time interval between messages sent or received. It enables the client to detect if the server is no longer available, without having to wait for the TCP/IP timeout. The client will ensure that at least one message travels across the network within each keep alive period. In the absence of a data-related message during the time period, the client sends a very small "ping" message, which the server will acknowledge. A value of 0 disables parameter processing in the client. |
Connection Timeout | Sets the connection timeout value. This value, measured in seconds, defines the maximum time interval the client will wait for the network connection to the MQTT server to be established. The default timeout is 30 seconds. A value of 0 disables timeout processing meaning the client will wait until the network connection is made successfully or fails. |
Certificate Trust Policy | Defines how to verify certificates provided via an SSL/TLS connection. |
Certificate | Alias of an SSL/TLS certificate to use for authentication. The certificate with that alias must exist in the server's client certificate storage. |
User Name | The user name to use for the connection to the MQTT broker. |
Password | The password to use for the connection to the MQTT broker. |
Enable Offline Buffering | Enables the use of an offline message buffer for unconfirmed messages. |
Buffer Size | Maximum number of messages that can be stored in the buffer. |
Delete Oldest Messages | Whether older messages must be deleted when the number of messages in the buffer reaches its maximum. If this value is false, extra messages are ignored. |
Device Assets
Assets are not supported by the driver.
Device Settings
MQTT Device Driver creates one Device setting variable:
Variable Name | Variable Description | Comments |
messageCount | Message Count | Count of received messages. Value is updated every synchronization. Reconnection resets count to zero. |
clientID | Client ID | Client ID associated with this device. |
Device Operations
Publish Text Message
Send a text message to the broker.
Format of the function input parameters has the following fields:
Name | Type | Description |
Topic | String | The topic that the message should be published on. |
QoS | Integer | The Quality of Service level to use. Valid values are 0, 1 or 2. |
Retained | Boolean | Whether or not the message should be retained by the broker. |
Message | String | The text message to send. |
The function has no output parameters.
Publish Binary Message
Send a binary message to the broker.
Format of the function input parameters has the following fields:
Name | Type | Description |
Topic | String | The topic that the message should be published on. |
QoS | Integer | The Quality of Service level to use. Valid values are 0, 1 or 2. |
Retained | Boolean | Whether or not the message should be retained by the broker. |
Message | Data Block | Binary data message to send. |
The function has no output parameters.
Device Events
Message
Fired when Iotellect Server receives an incoming MQTT message.
Event Name | message |
Records: | 1 |
Record Format:
Field Name | Field Type | Description |
topic | String | Topic the message was published on. |
message | String | Message text if message was published as a string. |
messageData | Data Block | Message Data Block if message was published as binary data. |
id | String | ID of the message. |
qos | Integer | QoS associated with the message. |
retained | Boolean | Whether the message was retained by the broker. |
duplicate | Boolean | Whether this message is a duplicate. |
Connection Handling
This driver makes the device Online if a connection with the MQTT broker was successfully established.
Was this page helpful?