fixed all exercices

This commit is contained in:
Maix0 2026-04-24 18:28:21 +02:00
parent 5763bbb065
commit 2f91952d78
49 changed files with 3151 additions and 24 deletions

9
ex03/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 */