Library for LPD8806 (and probably LPD8803/LPD8809) PWM LED driver chips, strips and pixels. Standard connected to 1st hardware SPI module. Data -> p5 and Clock -> p7 use a fixed sized buffer rather than malloc - if we use malloc rtos is unhappy...

Fork of LPD8806 by Jelmer Tiete

Committer:
ehbmbed2
Date:
Fri Dec 16 03:16:50 2011 +0000
Revision:
0:12e734116fea
Child:
1:6ebd3ac910b6
first revision, works, needs to be tested on long strands

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ehbmbed2 0:12e734116fea 1 // Mbed library to control LPD8806-based RGB LED Strips
ehbmbed2 0:12e734116fea 2 // (c) 2011 Jelmer Tiete
ehbmbed2 0:12e734116fea 3 // This library is ported from the Arduino implementation of Adafruit Industries
ehbmbed2 0:12e734116fea 4 // found at: http://github.com/adafruit/LPD8806
ehbmbed2 0:12e734116fea 5 // and their strips: http://www.adafruit.com/products/306
ehbmbed2 0:12e734116fea 6 // Released under the MIT License: http://mbed.org/license/mit
ehbmbed2 0:12e734116fea 7
ehbmbed2 0:12e734116fea 8 /*****************************************************************************/
ehbmbed2 0:12e734116fea 9
ehbmbed2 0:12e734116fea 10 #include "mbed.h"
ehbmbed2 0:12e734116fea 11 #ifndef MBED_LPD8806_H
ehbmbed2 0:12e734116fea 12 #define MBED_LPD8806_H
ehbmbed2 0:12e734116fea 13
ehbmbed2 0:12e734116fea 14 class LPD8806 {
ehbmbed2 0:12e734116fea 15
ehbmbed2 0:12e734116fea 16 public:
ehbmbed2 0:12e734116fea 17
ehbmbed2 0:12e734116fea 18 LPD8806(uint16_t n);
ehbmbed2 0:12e734116fea 19 void
ehbmbed2 0:12e734116fea 20 begin(void),
ehbmbed2 0:12e734116fea 21 show(void),
ehbmbed2 0:12e734116fea 22 setPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b),
ehbmbed2 0:12e734116fea 23 setPixelColor(uint16_t n, uint32_t c);
ehbmbed2 0:12e734116fea 24 uint16_t
ehbmbed2 0:12e734116fea 25 numPixels(void);
ehbmbed2 0:12e734116fea 26 uint32_t
ehbmbed2 0:12e734116fea 27 Color(uint8_t, uint8_t, uint8_t);
ehbmbed2 0:12e734116fea 28
ehbmbed2 0:12e734116fea 29 private:
ehbmbed2 0:12e734116fea 30
ehbmbed2 0:12e734116fea 31 uint8_t
ehbmbed2 0:12e734116fea 32 *pixels; // Holds LED color values
ehbmbed2 0:12e734116fea 33 uint16_t
ehbmbed2 0:12e734116fea 34 numLEDs; // Number of RGB LEDs in strand
ehbmbed2 0:12e734116fea 35
ehbmbed2 0:12e734116fea 36 void
ehbmbed2 0:12e734116fea 37 writezeros(uint16_t n);
ehbmbed2 0:12e734116fea 38 };
ehbmbed2 0:12e734116fea 39 #endif