LED bus driver on any GPIO pin for addressable RGB LEDs (like NeoPixels or other WS2812 based LEDs)

Revision:
1:6119419c2730
Parent:
0:1e68c70236a4
Child:
2:735bb1b9cfc2
--- a/LEDBus.cpp	Tue May 10 20:07:28 2016 +0000
+++ b/LEDBus.cpp	Tue May 10 20:22:18 2016 +0000
@@ -17,14 +17,14 @@
     _delayReset = ticksPerMicroSecond * tReset_us;
 
     // Uncomment to see micro controller frequency and delays
-    Serial pc(USBTX, USBRX);
-    pc.printf("%d Hz\n\r", SystemCoreClock);
-    pc.printf("%f ticks/us\n\r", ticksPerMicroSecond);
-    pc.printf("T0H: %d ticks\n\r", _delayT0H);
-    pc.printf("T1H: %d ticks\n\r", _delayT1H);
-    pc.printf("T0L: %d ticks\n\r", _delayT0L);
-    pc.printf("T1L: %d ticks\n\r", _delayT1L);
-    pc.printf("Reset: %d ticks\n\r", _delayReset);
+//    Serial pc(USBTX, USBRX);
+//    pc.printf("%d Hz\n\r", SystemCoreClock);
+//    pc.printf("%f ticks/us\n\r", ticksPerMicroSecond);
+//    pc.printf("T0H: %d ticks\n\r", _delayT0H);
+//    pc.printf("T1H: %d ticks\n\r", _delayT1H);
+//    pc.printf("T0L: %d ticks\n\r", _delayT0L);
+//    pc.printf("T1L: %d ticks\n\r", _delayT1L);
+//    pc.printf("Reset: %d ticks\n\r", _delayReset);
     
 }