nuttx-apps/examples/mqttc
Alan Carvalho de Assis 6b720033cc examples/mqttc: Check for MQTT ACK and avoid passing '\0'
This patch will force wait for MQTT ACK (connection) and also
fix the issue caused by "strlen(mqtt_cfg.msg) + 1" that will
include the "\0" in the payload. It's forbidded by MQTT spec.

Some MQTT servers will ignore it, others like TagoIO will refuse
the packet.
2023-05-15 19:20:28 +03:00
..
Kconfig
Make.defs
Makefile apps/examples/mqttc/Makefile: Add missing Apache Foundation copyright header 2023-04-03 16:14:35 +03:00
mqttc_pub.c examples/mqttc: Check for MQTT ACK and avoid passing '\0' 2023-05-15 19:20:28 +03:00
README.md mqttc example: provide sane hostname default to avoid crash 2021-03-30 14:51:32 -05:00

This is a simple MQTT publisher example using MQTT-C

By default it publishes to the "test" topic and exits. Default behaviour including, host, port, topic, message and loop count can be changed through different arguments.

To test: From the host start an MQTT broker and subscribe to the "test" topic. Here mosquitto is used:

mosquitto&
mosquitto_sub -t test

Make sure that mosquitto is not configured in local mode only.

From the nsh:

Launch the built-in app mqttc_pub specifying the host:

mqttc_pub -h HOST

The target will publish the message "test".