blob: 09edffb7ab2ebc95c4ab9b822ffaf3f14240cd0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SHIFTBRITE_H
#define SHIFTBRITE_H
// setup port for shiftbrites
void sb_init(void);
// set the color of a shiftbrite.
void sb_setcolor(uint8_t lamp_index, uint8_t r, uint8_t g, uint8_t b);
void sb_tick(void);
#endif //SHIFTBRITE_H
|