Broker & Client

MQtt required Parameters

These are connection paramters that must be filled out in order to establish a connection to the broker of your choice. Remember the ClientID must be unique to the broker or you have the risk of disconnecting another client.

  • Broker IP or DNS name can be used.
  • The port defaults to 1883 and does not currenlty support SSL connections.

Subscribe to Topics


 

Topic Subscriptions

These are the topics that you want to subscribe on. MQTT topics are in the following namespace format. For example, level1/level2/level3. Wildcards are permitted using the # tag. For example, level/#.


Topic Subscriptions

Topic Publish

These are the topics that you want to publish on.
Clients that are subscribed on your topic will receive the message.

Session Options

Optional Parameters

You may specifiy an optional username and password for your client.
Disabling the clean session flag will maintain client subscriptions after disconnect. When the client reconnects it will receive all of the queued messages.


Last Will and Testament

Last Will and Testament

If client connection is lost, broker will publish the LWT message.