Week 13

Networking and Communications

Group Assignment

LINK TO THE GROUP ASSIGNMENT PAGE
Take a look:

- send a message between two projects

Individual Assignment

Take a look:

- design, build, and connect wired or wireless node(s) with network or bus addresses and local input &/or output device(s)

Organization

Here is my organization to finish on time:

LINK TO THE ASSIGNMENT WEEK

Organization Of Week 13
Thursday 25th Sketching the first impressions about the project
Friday 26th Modeling the project on KiCad
Monday 28th First cut and soldering
Tuesday 29th Documentation and project completion day

Individual Assignment

WHICH IS WHAT I WILL DO

I will create two boards

The design of my two boards is based on the development and improvement of my two previous boards.

The two boards created have generic connections at 3 points, I have added an LED and a switch to better complement the design of the same, so that they can be controlled by that means.

Descripción de la imagen

The initial design

To develop the design, I based one of the boards on the Xiao ESP32-C3 and the other on the RP2040, so that both have UART communication through the TX and RX pins, but with a wired Jumper connection.

For this, I added to my previous work, a switch with its 4990ohm resistor and the connection of this to one of the pins, leaving the others free to be used with different Outputs.

Descripción de la imagen

BOM and Schematic for Maryo-Esp

Imagen 1 Imagen 2

Maryo-Esp

Where to buy? Amount
Seeed Studio XIAO RP2040 Seeed Studio 1
1kΩ resistor Digikey 4
LED Digikey 4
Male 4 row vertical header Digikey 1

Maryo-RP

Where to buy? Amount
Seeed Studio XIAO RP2040 Seeed Studio 1
1kΩ resistor Digikey 4
LED Digikey 4
Male 4 row vertical header Digikey 1

Descripción de la imagen

Soldering and programming tests with Output

For this case, I first arranged all my components to start soldering, such as: soldering iron, resistors, LEDs, Header connectors, Xiao and Flux.

Descripción de la imagen Descripción de la imagen

Plate milling

To get here, I passed my PNGs to the MODS program, I attach a photo of my traces to export and send to milling.

Imagen 1 Imagen 2

From here I transferred the PNGs to MODS to get the traces, SML files and some background settings to achieve the cut of my board.

Here is the SML file and some videos of the process! everything went correctly, remember that there are two plates that we milled and soldered.

Descripción de la imagen Descripción de la imagen

Here is the root of the total configuration

Descripción de la imagen

I leave you the download link of my SML files so you can mill it if you wish!

Maryo-Esp + Xiao SML CUT

From here the milling process:

Here is the result of the milling of my boards

Descripción de la imagen

Component soldering

To make the soldering of the board, I used the soldering iron and tin, little by little I was accommodating the components

- I used the soldering iron at 310°C and Flux on the board and the component.

Something that helped me to solder faster my two boards was to prepare the components and solder at the same time, the first resistor of board 1 and the same on board 2, so that I was advancing in an accelerated way and finishing on time.

Descripción de la imagen

Codification

Something important to consider is the installation of the Xiao ESP32-C3 library from the ARDUINO.IDE library, consider that it is also important to add in preferences the link of the RAW:

https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json

Descripción de la imagen

Before I started, I had some doubts about the Xiao ESP32-C3, as I had not programmed one of these before, so to start with I used my NODO board and connected a Servo motor to make it work with its programming, I leave you my test here:

Servo Motor

For this other case I made the coding of a Servo motor with my board with the ESPC3-C3.

           const int servoPin = D2;  // Pin D3 en la Xiao ESP32C3
   unsigned long tiempoInicio;  // Variable para guardar el tiempo de inicio del pulso
   int angulo = 0;  // Ángulo inicial del servo
   
   void setup() {
     pinMode(servoPin, OUTPUT);  // Configurar el pin del servo como salida
   }
   
   void loop() {
     // Mover el servo de 0 grados a 180 grados y viceversa
     for (angulo = 0; angulo <= 180; angulo++) {
       moverServo(angulo);  // Llamar a la función para mover el servo al ángulo deseado
       delay(15);  // Pequeña pausa para dar tiempo al servo a alcanzar la posición
     }
   
     delay(1000);  // Esperar un segundo en la posición final
   
     for (angulo = 180; angulo >= 0; angulo--) {
       moverServo(angulo);  // Llamar a la función para mover el servo al ángulo deseado
       delay(15);  // Pequeña pausa para dar tiempo al servo a alcanzar la posición
     }
   
     delay(1000);  // Esperar un segundo en la posición inicial
   }
   
   void moverServo(int angulo) {
     // Calcular el ancho del pulso PWM necesario para el ángulo dado (entre 0 y 180 grados)
     int anchoPulso = map(angulo, 0, 180, 500, 2400);  // Mapear ángulo a duración del pulso en microsegundos
   
     // Generar el pulso de control PWM durante el tiempo requerido para alcanzar el ángulo deseado
     digitalWrite(servoPin, HIGH);  // Establecer el pin en alto
     delayMicroseconds(anchoPulso);  // Mantener el pin en alto durante el ancho del pulso
     digitalWrite(servoPin, LOW);  // Establecer el pin en bajo
   }
   
       

SERVO NODO.IDE

Here is how it works!

I also continued testing with my NODO board to light up a LED, here is my test

Blink

Starting with the code now, to verify that my board works, I used the basic ARDUINO.IDE code to get my LED on PIN D3 of the Xiao ESP32-C3 to light up, here the code and the result.

Descripción de la imagen
        /*
  Blink

  Turns an LED on for one second, then off for one second, repeatedly.

  Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
  it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
  the correct LED pin independent of which board is used.
  If you want to know what pin the on-board LED is connected to on your Arduino
  model, check the Technical Specs of your board at:
  https://www.arduino.cc/en/Main/Products

  modified 8 May 2014
  by Scott Fitzgerald
  modified 2 Sep 2016
  by Arturo Guadalupi
  modified 8 Sep 2016
  by Colby Newman

  This example code is in the public domain.

  https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink
*/

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(D3, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(D3, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(1000);                      // wait for a second
  digitalWrite(D3, LOW);   // turn the LED off by making the voltage LOW
  delay(1000);                      // wait for a second
}
/*
  Blink

  Turns an LED on for one second, then off for one second, repeatedly.

  Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
  it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
  the correct LED pin independent of which board is used.
  If you want to know what pin the on-board LED is connected to on your Arduino
  model, check the Technical Specs of your board at:
  https://www.arduino.cc/en/Main/Products

  modified 8 May 2014
  by Scott Fitzgerald
  modified 2 Sep 2016
  by Arturo Guadalupi
  modified 8 Sep 2016
  by Colby Newman

  This example code is in the public domain.

  https://www.arduino.cc/en/Tutorial/BuiltInExamples/Blink
*/

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(D3, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(D3, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(1000);                      // wait for a second
  digitalWrite(D3, LOW);   // turn the LED off by making the voltage LOW
  delay(1000);                      // wait for a second
}
       
    

The test with the board and the ESP32

BLINK ARDUINO.IDE

The same test but with the XIAO RP2040

THE FIRST TEST

Ultrasonic Sensor with Neopixel

To make the connection between the two boards, I called one of them MASTER (the one with the RP2040) and the other NODO (the one with the ESP32-C3), so that the Master takes the signal and sends it in response to the NODO to activate the OUTPUT.

For this step as first example I am using in the MASTER the ultrasonic sensor and in the NODE the Neopixel as response of the received signal.

Remember that my two boards are connected by RX and TX cable, so it will always appear in the programming code in the #include /Wire.h/ section.

I show you the code to make only the Sensor work in my MASTER, remember that here it is only to verify the operation, I don't relate it with the NODO board yet.

        #define TRIG_PIN 10  // Pin TRIG conectado al pin D10 en la Xiao ESP32-C3
#define ECHO_PIN 19  // Pin ECHO conectado al pin D19 en la Xiao ESP32-C3

void setup() {
  Serial.begin(9600);  // Iniciar comunicación serial para mostrar resultados en el monitor serial
  pinMode(TRIG_PIN, OUTPUT);  // Configurar el pin TRIG como salida
  pinMode(ECHO_PIN, INPUT);   // Configurar el pin ECHO como entrada
}

void loop() {
  long duration;
  float distance_cm;

  // Generar un pulso corto en el pin TRIG para activar el sensor ultrasónico
  digitalWrite(TRIG_PIN, LOW);
  delayMicroseconds(2);
  digitalWrite(TRIG_PIN, HIGH);
  delayMicroseconds(10);
  digitalWrite(TRIG_PIN, LOW);

  // Medir el tiempo que tarda en llegar el eco (en microsegundos)
  duration = pulseIn(ECHO_PIN, HIGH);

  // Calcular la distancia en centímetros utilizando la fórmula de conversión
  distance_cm = duration * 0.034 / 2;  // La velocidad del sonido es 340 m/s (0.034 cm/microsegundo)

  // Mostrar la distancia medida en el monitor serial
  Serial.print("Distancia: ");
  Serial.print(distance_cm);
  Serial.println(" cm");

  delay(1000);  // Esperar un segundo antes de realizar la próxima lectura
}
    
ONLY SENSOR MASTER.INO

Here is a video showing how it works!

Neopixel

Here with the Neopixel the intention was to test the code, first time that I made the coding and it worked, I helped myself with the documentation of Adrian Torres.

        #include /Adafruit_NeoPixel.h/

            #define PIN_NEOPIXEL 3  // Pin D3 en la Xiao ESP32-C3
            #define NUM_PIXELS 8    // Número de LEDs en tu tira Neopixel
            
            Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_PIXELS, PIN_NEOPIXEL, NEO_GRB + NEO_KHZ800);
            
            void setup() {
              strip.begin();  // Inicializar la tira Neopixel
              strip.show();   // Apagar todos los LEDs al inicio
            }
            
            void loop() {
              // Cambiar el color de los LEDs gradualmente
              for (int i = 0; i < NUM_PIXELS; i++) {
                // Establecer el color de cada LED (rojo, verde, azul)
                strip.setPixelColor(i, 255, 0, 0);  // Rojo
                strip.show();  // Mostrar el color en el LED
                delay(50);     // Pequeña pausa
              }
            
              delay(1000);  // Esperar un segundo
            
              for (int i = 0; i < NUM_PIXELS; i++) {
                strip.setPixelColor(i, 0, 255, 0);  // Verde
                strip.show();
                delay(50);
              }
            
              delay(1000);  // Esperar un segundo
            
              for (int i = 0; i < NUM_PIXELS; i++) {
                strip.setPixelColor(i, 0, 0, 255);  // Azul
                strip.show();
                delay(50);
              }
            
              delay(1000);  // Esperar un segundo
            }
            


    
ONLY NEOPIXEL NODO.INO

Here we link the two codes and their connection to each other for the operation of the complete circuit using RX and TX.

Code to operate the MASTER and the sensor:

      #include 

        #define TRIGGER_PIN 9    // Pin del trigger del sensor ultrasónico
        #define ECHO_PIN 10      // Pin del echo del sensor ultrasónico
        #define SERIAL_BAUD_RATE 9600  // Velocidad de comunicación serial
        
        long duration;
        int distance;
        
        void setup() {
          Serial.begin(SERIAL_BAUD_RATE);  // Inicia la comunicación serial
          pinMode(TRIGGER_PIN, OUTPUT);    // Configura el pin del trigger como salida
          pinMode(ECHO_PIN, INPUT);        // Configura el pin del echo como entrada
        }
        
        void loop() {
          // Enviar pulso ultrasónico
          digitalWrite(TRIGGER_PIN, LOW);
          delayMicroseconds(2);
          digitalWrite(TRIGGER_PIN, HIGH);
          delayMicroseconds(10);
          digitalWrite(TRIGGER_PIN, LOW);
        
          // Leer el tiempo de duración del pulso
          duration = pulseIn(ECHO_PIN, HIGH);
        
          // Calcular la distancia
          distance = duration * 0.034 / 2;
        
          // Enviar comandos al nodo basado en la distancia
          if (distance < 20) {  // Si la distancia es menor a 20 cm
            Serial.write(1);    // Enviar señal para encender el NeoPixel
          } else {
            Serial.write(0);    // Enviar señal para apagar el NeoPixel
          }
        
          delay(500);  // Espera 500 ms antes de la próxima lectura
        }
        
    
MASTER SENSOR CODE.INO

I'll explain a bit of the code:

Ultrasonic sensor configuration: The ultrasonic sensor pins are configured.

Distance reading: The code sends a pulse and measures the return time to calculate the distance.

Sending commands: Depending on the measured distance, a serial command is sent (1 to turn the NeoPixel on, 0 to turn it off).

Including Libraries and Defining Pins:

      #include Arduino.h>

        #define TRIGGER_PIN 9    // Pin del trigger del sensor ultrasónico
        #define ECHO_PIN 10      // Pin del echo del sensor ultrasónico
        #define SERIAL_BAUD_RATE 9600  // Velocidad de comunicación serial
        
    

• Arduino.h: Includes the basic Arduino functions.

• Defines the pin to which the trigger pin of the ultrasonic sensor is connected.

• ECHO_PIN: Defines the pin to which the echo pin of the ultrasonic sensor is connected.

• SERIAL_BAUD_RATE: Defines the serial communication speed (9600 bits per second).

Initial Configuration

      void setup() {
        Serial.begin(SERIAL_BAUD_RATE);  // Inicia la comunicación serial
        pinMode(TRIGGER_PIN, OUTPUT);    // Configura el pin del trigger como salida
        pinMode(ECHO_PIN, INPUT);        // Configura el pin del echo como entrada
      }
      
    

• Serial.begin(SERIAL_BAUD_RATE): Initialises serial communication at 9600 bps.

• pinMode(TRIGGER_PIN, OUTPUT): Configures the trigger pin as output.

• pinMode(ECHO_PIN, INPUT): Configures the echo pin as input.

Main Loop

      void loop() {
        // Enviar pulso ultrasónico
        digitalWrite(TRIGGER_PIN, LOW);
        delayMicroseconds(2);
        digitalWrite(TRIGGER_PIN, HIGH);
        delayMicroseconds(10);
        digitalWrite(TRIGGER_PIN, LOW);
      
        // Leer el tiempo de duración del pulso
        long duration = pulseIn(ECHO_PIN, HIGH);
      
        // Calcular la distancia
        int distance = duration * 0.034 / 2;
      
        // Enviar comandos al nodo basado en la distancia
        if (distance < 20) {  // Si la distancia es menor a 20 cm
          Serial.write(1);    // Enviar señal para encender el NeoPixel
        } else {
          Serial.write(0);    // Enviar señal para apagar el NeoPixel
        }
      
        delay(500);  // Espera 500 ms antes de la próxima lectura
      }
      
    

Send ultrasonic pulse:

• DigitalWrite(TRIGGER_PIN, LOW): Sets the trigger pin low.

• delayMicroseconds(2): Wait 2 microseconds.

• digitalWrite(TRIGGER_PIN, HIGH): Set trigger pin high.

• delayMicroseconds(10): Waits 10 microseconds.

• digitalWrite(TRIGGER_PIN, LOW): Sets the trigger pin low.

Read the pulse duration time:

• pulseIn(ECHO_PIN, HIGH): measure the time the echo pin stays high.

Calculate the distance:

• distance = duration * 0.034 / 2: Calculate the distance in centimetres.

Send commands to the node:

• Serial.write(1): If the distance is less than 20 cm, send a command 1 to turn on the NeoPixel.

• Serial.write(0): If the distance is greater than or equal to 20 cm, send a 0 command to turn off the NeoPixel.

• delay(500): Wait 500 ms before the next reading.

Code to operate the NODE and the NEOPIXEL:

      #include 
        #include 
        
        #define NEOPIXEL_PIN 6    // Pin al que está conectado el NeoPixel
        #define NUM_PIXELS 1      // Número de píxeles NeoPixel
        #define SERIAL_BAUD_RATE 9600  // Velocidad de comunicación serial
        
        Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_PIXELS, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);
        
        void setup() {
          Serial.begin(SERIAL_BAUD_RATE);  // Inicia la comunicación serial
          strip.begin();                   // Inicializa la librería NeoPixel
          strip.show();                    // Inicializa todos los píxeles apagados
        }
        
        void loop() {
          if (Serial.available() > 0) {
            int command = Serial.read();  // Lee el comando de la placa maestra
        
            if (command == 1) {
              // Enciende el NeoPixel
              strip.setPixelColor(0, strip.Color(255, 0, 0));  // Rojo, por ejemplo
              strip.show();
            } else if (command == 0) {
              // Apaga el NeoPixel
              strip.setPixelColor(0, strip.Color(0, 0, 0));  // Apaga el píxel
              strip.show();
            }
          }
        }
        

    

NODE NEOPIXEL CODE.INO

Including Libraries and Defining Pins :

      #include Arduino.h
        #include Adafruit_NeoPixel.h
        
        #define NEOPIXEL_PIN 6    // Pin al que está conectado el NeoPixel
        #define NUM_PIXELS 1      // Número de píxeles NeoPixel
        #define SERIAL_BAUD_RATE 9600  // Velocidad de comunicación serial
        
        Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_PIXELS, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);
        
    

• Arduino.h: Includes the basic Arduino functions.

• Adafruit_NeoPixel.h: Includes the functions to control NeoPixels.

• NEOPIXEL_PIN: Defines the pin to which the NeoPixel is connected.

• NUM_PIXELS: Defines the number of NeoPixel pixels.

• SERIAL_BAUD_RATE: Defines the serial communication speed (9600 bits per second).

• strip: Creates an Adafruit_NeoPixel object to control the pixels.

Initial Configuration:

      void setup() {
        Serial.begin(SERIAL_BAUD_RATE);  // Inicia la comunicación serial
        strip.begin();                   // Inicializa la librería NeoPixel
        strip.show();                    // Inicializa todos los píxeles apagados
      }
      
    

• Serial.begin(SERIAL_BAUD_RATE): Initializes serial communication at 9600 bps.

• strip.begin(): Initializes the NeoPixel library.

• strip.show(): Turns off all pixels at startup.

Main Loop:

      void loop() {
        if (Serial.available() > 0) {
          int command = Serial.read();  // Lee el comando de la placa maestra
      
          if (command == 1) {
            // Enciende el NeoPixel
            strip.setPixelColor(0, strip.Color(255, 0, 0));  // Rojo, por ejemplo
            strip.show();
          } else if (command == 0) {
            // Apaga el NeoPixel
            strip.setPixelColor(0, strip.Color(0, 0, 0));  // Apaga el píxel
            strip.show();
          }
        }
      }
      
    

Check if data is available on the serial port:

• Serial.available() > 0: Check if data is available to read.

Read command from the master board:

• int command = Serial.read(): Reads the command sent by the master board.

Turn the NeoPixel on or off based on the command:

• command == 1: If command is 1, turn on the NeoPixel.

• strip.setPixelColor(0, strip.Color(255, 0, 0, 0)): Sets the colour of the first pixel to red.

• strip.show(): Updates the NeoPixel to show the configured colour.

• command == 0: If command is 0, turns off the NeoPixel.

• strip.setPixelColor(0, strip.Color(0, 0, 0, 0)): Sets the colour of the first pixel to black (off).

• strip.show(): Updates the NeoPixel to show the set colour (off).

With all this explanation, I will now load the programme and show how it works.

Here is the result!

PARTICULAR COMMUNICATION: Communication between my boards

For communication between the two boards using the TX and RX pins, I made sure that both codes are using the corresponding serial ports. In the case of the XIAO RP2040 and XIAO ESP32-C3, "Serial 1" is used for the additional TX and RX pins (not the USB port which is Serial).

Code for Master Board (XIAO RP2040)

Serial 1 is used here for serial communication on the TX and RX pins. The TX pin of the RP2040 must be connected to the RX pin of the ESP32-C3, and the RX pin of the RP2040 must be connected to the TX pin of the ESP32-C3.

What do I want to connect?

What I want to connect are my two boards using the UART connection through the TX and RX pins between an RP2040 and an ESP32-C3, so I leave again the image of the two boards and their more detailed connections.

Descripción de la imagen

Connections Summary

XIAO RP2040:

TX (Serial1) → RX of XIAO ESP32-C3

RX (Serial1) → TX of XIAO ESP32-C3

XIAO ESP32-C3:

TX (Serial1) → RX of XIAO RP2040

RX (Serial1) → TX of XIAO RP2040

Does it work?

I use the same ultrasonic sensor to turn on the Neopixel, in the same way at a distance less than 10cm.

Here I leave a video of its operation and the link to the ARDUINO.IDE file for programming.

NEOPIXEL+ULTRASONIC

Also I made another example, the intention is to use the ultrasonic sensor to run the motor, when the first one is less than 10cm away, it will automatically turn on the servo.

Here I leave a video of its operation and the links to the ARDUINO.IDE file for programming.

SERVOMOTOR+ULTRASONIC

Group Assignment

What did you want to do?

I want to connect my board with the ESP32-C3 to my colleague's board which contains the same microcontroller and through pressing the switch button on my board I can turn on the LED on his board.

How do we connect it?

What we wanted to do was to connect two different boards through the Wifi network, so we installed the MQTTX program.

https://mqttx.app/downloads

Descripción de la imagen

So that we can connect, here I make a sample of the data created between two users, in this case with my partner Hans.

Does it work?

It works first placing the data following this image:

Descripción de la imagen

Inside the Serial we will place “a” to send a signal to the Xiao of my partner Hans, previously he has done the programming of his Xiao following this code:

        #include 
            #include 
            
            // Replace the next variables with your SSID/Password combination
            const char* ssid = "HBP WIRELES";
            const char* password = "923279923";
            
            // Add your MQTT Broker IP address, example:
            //const char* mqtt_server = "192.168.1.144";
            const char* mqtt_server = "broker.emqx.io";
            
            WiFiClient espClient;
            PubSubClient client(espClient);
            long lastMsg = 0;
            char msg[50];
            int value = 0;
            
            float numero = 0;
            
            // LED Pin
            const int ledPin = D3;
            
            void setup() {
              Serial.begin(115200);  
              setup_wifi();
              client.setServer(mqtt_server, 1883);
              client.setCallback(callback);
              pinMode(ledPin,OUTPUT);
            }
            
            void setup_wifi() {
              delay(10);
              // We start by connecting to a WiFi network
              Serial.println();
              Serial.print("Connecting to ");
              Serial.println(ssid);
            
              WiFi.begin(ssid, password);
            
              while (WiFi.status() != WL_CONNECTED) {
                delay(500);
                Serial.print(".");
              }
            
              Serial.println("");
              Serial.println("WiFi connected");
              Serial.println("IP address: ");
              Serial.println(WiFi.localIP());
            }
            
            void callback(char* topic, byte* message, unsigned int length) {
              Serial.print("Message arrived on topic: ");
              Serial.print(topic);
              Serial.print(". Message: ");
              String messageTopic;
              
              for (int i = 0; i < length; i++) {
                Serial.print((char)message[i]);
                messageTopic += (char)message[i];
              }
              Serial.println();
              if (String(topic) == "hans/led") {
                Serial.print("Changing output to ");
                if(messageTopic == "a"){
                  Serial.println("on");
                  digitalWrite(ledPin, HIGH);
                }
                else if(messageTopic == "b"){
                  Serial.println("off");
                  digitalWrite(ledPin, LOW);
                }
              }
            
            }
            
            void reconnect() {
              // Loop until we're reconnected
              while (!client.connected()) {
                Serial.print("Attempting MQTT connection...");
                // Attempt to connect
                if (client.connect("hdmsclient1025")) {
                  Serial.println("connected");
                  // Subscribe
                  client.subscribe("hans/led");
                } else {
                  Serial.print("failed, rc=");
                  Serial.print(client.state());
                  Serial.println(" try again in 5 seconds");
                  // Wait 5 seconds before retrying
                  delay(5000);
                }
              }
            }
            void loop() {
              if (!client.connected()) {
                reconnect();
              }
              client.loop();
            
            }

    

Explaining the code

Libraries Included

 

      #include ESP8266WiFi.h
      #include PubSubClient.h
        
    

These two libraries are necessary to use the Wi-Fi and MQTT functionalities on the ESP32-C3 microcontroller.

Global Variables

      // Wi-Fi credentials
      const char* ssid = "HBP WIRELES";
      const char* password = "923279923";
      
      // MQTT broker address
      const char* mqtt_server = "broker.emqx.io";
      
      // Creating WiFi and MQTT clients
      WiFiClient espClient;
      PubSubClient client(espClient);
      long lastMsg = 0;
      char msg[50];
      int value = 0;
      
      // Placeholder for some floating-point value
      float numero = 0;
      
      // LED Pin
      const int ledPin = D3;
      
    

• SSID and password: These store your Wi-Fi network credentials.

• mqtt_server: This stores the address of the MQTT broker.

• espClient: This is an instance of WiFiClient used to connect to Wi-Fi.

• client: This is an instance of PubSubClient used for MQTT communication.

• lastMsg, msg, value, numero: These variables are placeholders for various data and purposes.

• ledPin: This is the GPIO pin used to control the LED.

Setup Function

      void setup() {
        Serial.begin(115200);  
        setup_wifi();
        client.setServer(mqtt_server, 1883);
        client.setCallback(callback);
        pinMode(ledPin, OUTPUT);
      }
      
    

• Serial.begin(115200): Starts the serial communication at 115200 baud rate

• setup_wifi(): Calls the function to connect to Wi-Fi.

• client.setServer(mqtt_server, 1883): Sets the MQTT server and port (1883).

• client.setCallback(callback): Sets the callback function for handling incoming MQTT messages.

• pinMode(ledPin, OUTPUT): Sets the LED pin as an output.

Wi-Fi Setup Function

      void setup_wifi() {
        delay(10);
        Serial.println();
        Serial.print("Connecting to ");
        Serial.println(ssid);
      
        WiFi.begin(ssid, password);
      
        while (WiFi.status() != WL_CONNECTED) {
          delay(500);
          Serial.print(".");
        }
      
        Serial.println("");
        Serial.println("WiFi connected");
        Serial.println("IP address: ");
        Serial.println(WiFi.localIP());
      }
      
    

• WiFi.begin(ssid, password): Initiates connection to the specified Wi-Fi network.

• The while loop keeps checking the connection status until connected.

• Once connected, it prints the local IP address assigned to the ESP32-C3

Callback Function

      void callback(char* topic, byte* message, unsigned int length) {
        Serial.print("Message arrived on topic: ");
        Serial.print(topic);
        Serial.print(". Message: ");
        String messageTopic;
      
        for (int i = 0; i < length; i++) {
          Serial.print((char)message[i]);
          messageTopic += (char)message[i];
        }
        Serial.println();
      
        if (String(topic) == "hans/led") {
          Serial.print("Changing output to ");
          if (messageTopic == "a") {
            Serial.println("on");
            digitalWrite(ledPin, HIGH);
          } else if (messageTopic == "b") {
            Serial.println("off");
            digitalWrite(ledPin, LOW);
          }
        }
      }
      
    

• This function is called when a message arrives on a subscribed topic.

• It checks if the topic is "hans/led" and changes the LED state based on the message received ("a" turns the LED on and "b" turns it off).

Reconnect Function

      void reconnect() {
        while (!client.connected()) {
          Serial.print("Attempting MQTT connection...");
          if (client.connect("hdmsclient1025")) {
            Serial.println("connected");
            client.subscribe("hans/led");
          } else {
            Serial.print("failed, rc=");
            Serial.print(client.state());
            Serial.println(" try again in 5 seconds");
            delay(5000);
          }
        }
      }
      
    

• This function tries to connect to the MQTT broker if the client is not connected.

• If the connection fails, it waits 5 seconds and tries again.

Loop Function

      void loop() {
        if (!client.connected()) {
          reconnect();
        }
        client.loop();
      }
      
    

• In the main loop, it checks if the client is connected. If not, it calls reconnect().

• client.loop() keeps the MQTT client connected and processes incoming messages.

This code sets up the ESP32-C3 to connect to a Wi-Fi network and an MQTT broker. It subscribes to a topic ("hans/led") and controls an LED based on messages received on this topic. The LED is turned on or off depending on whether the message is "a" or "b". If the MQTT connection is lost, it attempts to reconnect.

From here you have to configure the name of your NETWORK from row 8.

Here is a video of how we were able to send a signal via Wifi between two boards and turn on the LED!