MQTT Client
If your service is equipped with MQTT Broker Server, you can use the MQTT Client type to connect to your server and publish the data.
Specific configuration
Name | Description | Valid values |
---|---|---|
mqtt_dist_client_id | MQTT Client ID | Any string |
mqtt_dist_transport | Transport type used to connect to server | tcp or websockets |
mqtt_dist_tls | Should TLS be used to connect? | true or false |
mqtt_dist_json_datastream_topic | Topic used for sending telemetry messages | Any string |
mqtt_dist_publish_qos_default | QoS parameter of messages sent from the client | Any integer number |
Example specific configuration
Following is an example of configuration JSON
{
"mqtt_dist_client_id": "dronetag_0001",
"mqtt_dist_transport": "tcp",
"mqtt_dist_tls": false,
"mqtt_dist_json_datastream_topic": "airspace/europe/locations",
"mqtt_dist_publish_qos_default": 0
}
Configuration recommendations
- Usually a valid Target Port is required to be set.