12 lines
255 B
C
12 lines
255 B
C
#ifndef WS2801_H
|
|
#define WS2801_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int ws2801_init(uint8_t num_modules);
|
|
void ws2801_shutdown(void);
|
|
void ws2801_set_colour(uint8_t module, uint8_t red, uint8_t green, uint8_t blue);
|
|
void ws2801_send_update(void);
|
|
|
|
#endif // WS2801_H
|