Files
Tophat/include/Bitmaps.h
2026-03-31 10:19:59 -04:00

17 lines
215 B
C

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