17 lines
215 B
C
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 |