Routines to drive a chain of APA102 Leds.

Fork of APA102 by Joel Rosiene

A library to drive arrays of APA102 leds.

Files at this revision

API Documentation at this revision

Comitter:
rosienej
Date:
Tue Apr 07 01:17:05 2015 +0000
Parent:
4:2afea45fce8f
Child:
6:5d4edfc955f3
Commit message:
SPI correction....

Changed in this revision

APA102a.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/APA102a.cpp	Sat Mar 14 20:45:03 2015 +0000
+++ b/APA102a.cpp	Tue Apr 07 01:17:05 2015 +0000
@@ -6,8 +6,8 @@
       
         {
             // Setup the spi for 8 bit data, high steady state clock,
-            // second edge capture, with clock rate
-            _spi.format(8,3);
+            // second edge capture, with clock rate, clock active low, rising edge
+            _spi.format(8,2);
             _spi.frequency(rate);
         }