9 lines
137 B
C
9 lines
137 B
C
#ifndef RGB_H
|
|
#define RGB_H
|
|
|
|
#include "mystd.h"
|
|
|
|
void init_rgb(void);
|
|
void set_rgb(uint8_t r, uint8_t g, uint8_t b);
|
|
|
|
#endif /* RGB_H */
|