Node selection optimization for encoder and fix for ACK messages.

This commit is contained in:
HarukiToreda
2025-05-21 21:13:46 -04:00
parent 53d5801790
commit b35fb886e4
3 changed files with 320 additions and 250 deletions

View File

@@ -433,6 +433,21 @@ const uint8_t mute_symbol_big[] PROGMEM = {0b00000001, 0b00000000, 0b11000010, 0
const unsigned char bell_alert[] PROGMEM = {0b00011000, 0b00100100, 0b00100100, 0b01000010,
0b01000010, 0b01000010, 0b11111111, 0b00011000};
#define key_symbol_width 8
#define key_symbol_height 8
const uint8_t key_symbol[] PROGMEM = {
0b00000000,
0b00000000,
0b00000110,
0b11111001,
0b10101001,
0b10000110,
0b00000000,
0b00000000
};
#endif
#include "img/icon.xbm"