From f940e03475824bc0b7d35b741d810321f2ed86ea Mon Sep 17 00:00:00 2001 From: gibbedy Date: Mon, 2 Jan 2017 17:56:38 +1100 Subject: [PATCH] Update examples to work with teensylc https://forum.pjrc.com/threads/40863-Teensy-LC-port-of-OctoWS2811?p=128875&viewfull=1#post128875 --- examples/BasicTest/BasicTest.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/BasicTest/BasicTest.ino b/examples/BasicTest/BasicTest.ino index 25c7981..501b45c 100644 --- a/examples/BasicTest/BasicTest.ino +++ b/examples/BasicTest/BasicTest.ino @@ -40,7 +40,7 @@ #include -const int ledsPerStrip = 120; +const int ledsPerStrip = 80; //this worked for me. 120 here gave me "RAM overvlowed.." error. DMAMEM int displayMemory[ledsPerStrip*6]; int drawingMemory[ledsPerStrip*6];