feat(ex02): done

This commit is contained in:
Maix0 2026-04-21 16:18:54 +02:00
commit b6b8e3bceb
21 changed files with 1342 additions and 0 deletions

9
ex02/include/rgb.h Normal file
View file

@ -0,0 +1,9 @@
#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 */