This is an old revision of the document!
In the following scenario, you will learn how to connect to the MQTT broker and publish a message.
To implement this scenario, it is necessary to get familiar with at least one of the following scenarios first:
The requirement is to pass the scenarios
To be able to connect to the WiFi network.
Note - this scenario can be used in pair with STM_IoT_4: Connecting to the MQTT broker and subscribing to the topic to build a publish-subscribe solution using two devices (sender and receiver). You need to book two devices then and develop them in parallel.
Connect to the “internal IoT” WiFI access point as presented in the scenario STM_IoT_2: Connecting to the WiFi Access Point and presenting IP—present connection status on display. Once connected to the networking layer (WiFi), connect the MQTT client to the MQTT broker and present the connection status on the display, then publish an MQTT message of your choice.
The steps below show the principles of the software operation. How to implement the full software please refer to the previous scenarios:
Check if you can see a full LCD in your video stream. Book a device and create a dummy Arduino file with void setup()…
and void loop()…
.
The beginning of the code is the same as in the previous scenario, so make a copy of it:
We will use the code template from STM_IoT_AT: Programming of the WiFi interface with AT commands repeated for every AT command.
WiFiSerial.println("AT"); lcd.setCursor(0,0); lcd.print("AT "); do { response = WiFiSerial.readStringUntil(0x0A); lcd.setCursor(0,1); lcd.print(response); } while (!(response.startsWith(compOK))); delay(1000);
In the firmware for the ESP32-C3 board, there are AT commands to work with the MQTT protocol. In this scenario we will use three of them:
Below we briefly describe the commands mentioning only the parameters important to us. Please refer to the Espressif documentation[1] for the details of commands.
AT+MQTTUSERCFG This command accepts the list of parameters:
AT+MQTTUSERCFG=<LinkID>,<scheme>,<"client_id">,<"username">,<"password">,<cert_key_ID>,<CA_ID>,<"path">
In our case, the command can look like this:
AT+MQTTUSERCFG=0,1,\"STM32#0001\",\"vrel\",\"vrel2018\",0,0,\"\"
AT+MQTTCONN This command accepts the list of parameters:
AT+MQTTCONN=<LinkID>,<"host">,<port>,<reconnect>
The command can look like this:
AT+MQTTCONN=0,\"192.168.1.90\",1883,1
AT+MQTTPUB
AT+MQTTPUB=<LinkID>,<"topic">,<"data">,<qos>,<retain>
The list of parameters:
Implement the MQTT configuration and connection to the broker. Use the template for the “AT” command from first step. Ensure that your node is successfully connected.
Implement publishing of the MQTT message. You can do it just once in the “setup();” function, or periodically in the “loop();”. While working periodically be sure not to send messages too often. Reasonable period is 1-5 seconds. You can send the content of the counter to observe value changes in the concurrent messages.
You should be able to connect to the WiFi and MQTT broker (verified by the status present on the selected display) and then publish a message (once or periodically). Depending on whether you're fully remote or able to access our networks with an additional device, you need to implement a subscriber (as present in the scenario IOT4: Connecting to the MQTT and subscribing to the messages) or use MQTT Explorer (or any other application capable of connecting to our MQTT Broker) to observe messages that you publish.
Can I change the IP address?: Normally IP addresses are assigned by the server known as DHCP. In some situations, you can use static IP assigned manually in the station. It is not advised, however, because you may accidentally generate an overlapping address that will collide with another device in the same network.