123456789101112131415161718192021222324252627282930 |
-
-
- #ifndef __IMAGE_H__
- #define __IMAGE_H__
-
- #include "pico/stdlib.h"
-
- void image_draw(const char *data, uint width, uint height);
-
- void draw_splash(void);
- void draw_battery_indicator(void);
- void battery_run(void);
-
- #endif
|