/esp32c3-ws2812-mqtt

ESP32C3 communicates with Node-Red Aedes MQTT broker to control WS2812 LED strip

Primary LanguageAssemblyMIT LicenseMIT

Build Status

Sponsors

PCBWay

Tutorial Series Sponsor PCBWay Website. You can get extra free coupons using the link below:


ESP32C3 WS8212 LED Control Over Node Red MQTT Broker


In this tutorial, a wirelessly controlled IoT lamp is built from scratch using ESP32-C3 MCU that is driving WS8212 addressable LED strip over RMT peripheral. The MCU is connected over MQTT to a broker that is running on a Raspberry pi. This will make exchanging command wirlessly with a smartphone connected to the same network possible.

The browser based user interface side is handled by Node-Red dashboard, which is a very handy tool for IoT based applications. Circuit Diagram


Supported Targets ESP32 ESP32-C3 ESP32-S2 ESP32-S3

RMT Transmit Example -- LED Strip

(See the README.md file in the upper level 'examples' directory for more information about examples.)

Almost any waveform can be generated by RMT peripheral, as long as a proper encoder is implemented. The RMT encoder is used to encode user data (e.g. RGB pixels) into format that can be recognized by hardware.

This example shows how to drive an addressable LED strip WS2812 by implementing the led_strip_encoder.

How to Use Example

Hardware Required

  • A development board with any supported Espressif SOC chip (see Supported Targets table above)
  • A USB cable for Power supply and programming
  • A WS2812 LED strip

Connection :

                              --- 5V
                               |
                               +
RMT_LED_STRIP_GPIO_NUM +------ +---|>| (WS2812 LED strip)
                        DI     +
                               |
                              --- GND

The GPIO number used in this example can be changed according to your board, by the macro RMT_LED_STRIP_GPIO_NUM defined in the source file. The number of LEDs can be changed as well by EXAMPLE_LED_NUMBERS.

Build and Flash

Run idf.py -p PORT flash monitor to build, flash and monitor the project.

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Console Output

I (302) cpu_start: Starting scheduler on PRO CPU.
I (0) cpu_start: Starting scheduler on APP CPU.
I (323) example: Create RMT TX channel
I (343) example: Install led strip encoder
I (353) example: Start LED rainbow chase

After you seeing this log, you should see a rainbow chasing demonstration pattern. To change the chasing speed, you can update the EXAMPLE_CHASE_SPEED_MS value in source file.

Troubleshooting

For any technical queries, please open an [issue] (https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon.