Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2016-05-18 20:27:46 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2016-05-18 20:27:46 +0300
commit47d9ef5c87e2112261dda57ea1614b927f33b4a5 (patch)
tree3a04c283ed4bce9cbeb54e7d2f998555696a916c
parent4dc13b5aaae916b0cc7df60e97adb1af1cc9b43d (diff)
Try waiting a bit longer before re-sending the frame - might help with #306.
-rw-r--r--platforms/esp/8266/clockless_esp8266.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/esp/8266/clockless_esp8266.h b/platforms/esp/8266/clockless_esp8266.h
index eeeac4e8..4cb4dcaf 100644
--- a/platforms/esp/8266/clockless_esp8266.h
+++ b/platforms/esp/8266/clockless_esp8266.h
@@ -34,7 +34,7 @@ protected:
// mWait.wait();
if(!showRGBInternal(pixels)) {
os_intr_unlock();
- delayMicroseconds(WAIT_TIME);
+ delayMicroseconds(WAIT_TIME * 10);
os_intr_lock();
showRGBInternal(pixels);
}