mirror of
https://github.com/Makuna/NeoPixelBus.git
synced 2025-08-07 12:54:26 +02:00
Updated Library Comparisons (markdown)
@@ -9,11 +9,13 @@ On ESP8226, your primary choices are:
|
||||
* Can use UART both in a synchronous and asynchronous model, but asynchronous limits the use of other UART libraries.
|
||||
* Low level API with other features exposed by external classes.
|
||||
* Pins available for use varies by platform due to hardware limitations.
|
||||
* ESP32 support for using both RMT and i2s. RMT timing currently is sensitive to high interrupt frequency due to issues in the Core.
|
||||
* FastLED
|
||||
* Very rich API, although at a cost of large code and memory size
|
||||
* Interrupt driven on ESP8266, so it's sensitive to timing (not an issue on ESP32 which uses RMT)
|
||||
* Interrupt driven on ESP8266, so it's sensitive to timing.
|
||||
* ESP32 support uses RMT which currently is sensitive to timing.
|
||||
* Adafruit::NeoPixel
|
||||
* Basic bit bang and interrupt driven library which does not support any other interrupt driven code to work. Not recommended.
|
||||
|
||||
On ESP32, both FastLED and NeoPixelBus can provide more than one channel/bus. FastLED primarily uses RMT to support 8 parallel channels. NeoPixelBus now supports the RMTs 8 channels and two more channels using i2s. Parallel channels provides for better refresh rate on longer strings (useful past 256 pixels).
|
||||
On ESP32, both FastLED and NeoPixelBus can provide more than one channel/bus. FastLED primarily uses RMT to support 8 parallel channels. NeoPixelBus now supports the RMTs 8 channels and two more channels using i2s. Parallel channels provides for better refresh rate on longer strings (useful past 256 pixels). But do note that the latest cores have issues with high interrupt frequency causing timing issues.
|
||||
Further, if you have 4096 pixels or more, you can use the 16 way output driver from Yves as described [on this page](http://marc.merlins.org/perso/arduino/post_2018-07-30_Building-a-64x64-Neopixel-Neomatrix-_4096-pixels_-running-NeoMatrix-FastLED-IR.html#esp32driver)
|
Reference in New Issue
Block a user