Initial Commit

This commit is contained in:
2026-03-31 10:19:59 -04:00
commit a1af89eef1
15 changed files with 444 additions and 0 deletions

17
include/Bitmaps.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef BITMAPS_H
#define BITMAPS_H
#include <Arduino.h>
const uint8_t teamLogoBitmap[] = {
0b11100111,
0b11000011,
0b10100101,
0b00011000,
0b00011000,
0b10100101,
0b11000011,
0b11100111
};
#endif