Skip to content

tmedicci/ESP32_LED_STRIP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ESP32 Addressable LED Strip Library

Description

This library can be used to drive addressable LED strips from the ESP32 using the RMT peripheral. This allows the RMT peripheral to handle all of the transmission while the processor is free to support other tasks.

The library currently uses double buffering to seperate the LED strip that's being currently displayed and the LED strip that is currently being updated. There are two buffers, 1 and 2, which contain the colors for the LED strip. When the driver is showing buffer 1, any calls to led_strip_set_pixel_color will update buffer 2. When a call to led_strip_show is made, it will switch out the buffers, so buffer 2 is currently being displayed and buffer 1 is the one that is written to when calls to led_strip_set_pixel_color are made.

How to use

Clone this component to ESP-IDF project (as submodule):

git submodule add https://github.com/tmedicci/ESP32_LED_STRIP components/ESP32_LED_STRIP

Or run a sample (make sure you have installed the toolchain):

git clone https://github.com/tmedicci/ESP32_LED_STRIP
cd ESP32_LED_STRIP/examples/example_basic
make menuconfig

Change settings in menuconfig

make menuconfig 
-> ESP32 LED Strip Basic Example 

Library Functions

All functions for initializing and setting colors are located in led_strip.h. Right now the library supports:

  • Initialization of an led strip which initializes the RMT peripheral and starts a task for driving LEDs:
bool led_strip_init(struct led_strip_t *led_strip);
  • Setting individual led colors on an LED strip:
bool led_strip_set_pixel_color(struct led_strip_t *led_strip, uint32_t pixel_num, struct led_color_t *color);
bool led_strip_set_pixel_rgb(struct led_strip_t *led_strip, uint32_t pixel_num, uint8_t red, uint8_t green, uint8_t blue);
  • Updates the LED strip being shown. This switches the buffer currently being used to display the LED strips:
bool led_strip_show(struct led_strip_t *led_strip);
  • Get the color of a pixel on the strip currently being shown. For instance, if you want to update the color of the led strip based on the color that's currently being shown, use this function:
bool led_strip_get_pixel_color(struct led_strip_t *led_strip, uint32_t pixel_num, struct led_color_t *color);
  • Function that initializes a task for manipulating LED effects. It creates the a task that reads effect data from a Queue. This function already shows a effect type (including its arguments) after initialization. Check basic_example.
led_strip_init_effect_handler(struct led_strip_t *led_strip, effect_type_t effect_type, void *effect_arg);
  • Function that sets a new effect. Check led_strip_effect at led_strip.h for more details (it contains effect_type_t enum for already implemented effects and data structures for each effect). Check basic_example.
led_strip_set_effect(struct led_strip_t *led_strip, effect_type_t effect_type, void *effect_arg);
  • Function that gets current effect, returning a led_strip_effect_t structure.
struct led_strip_effect_t led_strip_get_effect(struct led_strip_t *led_strip_to_check);
  • Function to delete effect handler and queue. Check basic_example.
led_strip_delete_effect_handler(struct led_strip_t *led_strip);
  • Clear the led strip. Check basic_example.
bool led_strip_clear(struct led_strip_t *led_strip)

Limitations

  1. Right now the library only supports the timing for WS2812/WS2812B, SK6812 and APA106 LED strips.
  2. Only supports 30ms refresh period. Will add functionality to make this configurable in the future.

Future Goals of Library (in somewhat prioritized order)

  1. Add higher level functions for generating rainbows, bouncing effects, etc. 1.1. Add other effects like rainbows, fade-in/out, in-out...
  2. Somehow clean up led strip c file. This may involve seperating the waveform generation of each kind of LED.
  3. Add support for "LED rooms". An LED room may contain one or more strips covering multiple walls and multiple corners. This would allow very cool LED shows for different setups, such as LEDs bouncing off walls, LEDs mirroring what the other strip is doing parallel or perpendicular to it, etc.
  4. Add ESP supported logging and ESP checks at the beginning and end of function
  5. Add notes about memory limitations. Right now depending on how its done, there are two buffers that are either stack allocated or statically allocated and another buffer for the rmt items that's malloc'd on the heap.

About

ESP32 LED Strip Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.0%
  • Makefile 1.0%