Shiftbrite class

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Shiftbrite.h Source File

Shiftbrite.h

00001 #include "mbed.h"
00002 
00003 
00004 class Shiftbrite{
00005 public:
00006     Shiftbrite(PinName pin_e, PinName pin_l, PinName pin_do,PinName pin_di, PinName pin_clk);
00007     void RGB(int red, int green, int blue);
00008     
00009     
00010  private:
00011     DigitalOut _pin_e;
00012     DigitalOut _pin_l;
00013     SPI _spi;
00014     
00015     
00016     };