mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-01 07:22:00 +08:00
22 lines
329 B
C
22 lines
329 B
C
const uint8_t activeSymbol[] PROGMEM = {
|
|
B00000000,
|
|
B00000000,
|
|
B00011000,
|
|
B00100100,
|
|
B01000010,
|
|
B01000010,
|
|
B00100100,
|
|
B00011000
|
|
};
|
|
|
|
const uint8_t inactiveSymbol[] PROGMEM = {
|
|
B00000000,
|
|
B00000000,
|
|
B00000000,
|
|
B00000000,
|
|
B00011000,
|
|
B00011000,
|
|
B00000000,
|
|
B00000000
|
|
};
|