/* * File: ws2811.h * Author: justin * * Created on 12 June 2013, 16:50 */ #ifndef WS2811_H #define WS2811_H // how many LEDs are there #define LED_COUNT 32 // how many bytes to hold LED_COUNT #define RGB_COUNT (LED_COUNT*3) // the actual RGB data (only its GRB order) extern unsigned char rgbdata[RGB_COUNT]; void ws2811_transmit(void); void ws2811_init(void); #endif /* WS2811_H */