From 12827cc0d76ef1d13f10ac6c538f87645e76bfae Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Thu, 14 Jun 2018 20:23:53 -0700 Subject: [PATCH] Updated ESP32 NeoMethods (markdown) --- ESP32-NeoMethods.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ESP32-NeoMethods.md b/ESP32-NeoMethods.md index 64becb9..465eee5 100644 --- a/ESP32-NeoMethods.md +++ b/ESP32-NeoMethods.md @@ -8,15 +8,19 @@ This method uses i2s hardware support to send data to the NeoPixels. Thus this ## NeoEsp32I2s1400KbpsMethod Same as NeoEsp32I2s1800KbpsMethod but running at the older and slower data rate. + The NeoEsp32I2s1400KbpsMethod is the underlying method that gets used if you use Neo400KbpsMethod on Esp32 platforms. There should be no need to use it directly. ## NeoEsp32I2s1Ws2813Method Same as NeoEsp32I2s1800KbpsMethod but has the longer delay required by these LEDs. + The NeoEsp32I2s1Ws2813Method is the underlying method that gets used if you use NeoWs2813Method on Esp32 platforms. There should be no need to use it directly. ## NeoEsp32BitBang800KbpsMethod NeoEsp32BitBang800KbpsMethod supports any available pin below 32. -This method uses only the CPU to send data to the NeoPixels. But due to core interrupts it is not stable when used with more than a few pixels. + +This method uses only the CPU to send data to the NeoPixels. But due to core interrupts it is not stable when used with more than a few pixels. + It is not recommended to use this method except for comparing results with the other methods. For very short runs of pixels it maybe possible to use this method without ill effects. If it fails, the pixels may not be correctly set. Use this instead of Neo800KbpsMethod to force your sketch to use the Bit Banging to send data. ## NeoEsp32BitBang400KbpsMethod