Open kraa965 opened 1 year ago
Bluetooth symbols instead of the signature "BT Connection" and "No BT", use with
tft.drawBitmap(KEY_MARGIN_X, 3, NO_BT, 8, 16, TFT_WHITE); const uint8_t NO_BT[16] PROGMEM = { 0b00011000, 0b00101000, 0b01001000, 0b10001000, 0b10001000, 0b01001001, 0b00101010, 0b00011100, 0b00011100, 0b00101010, 0b01001001, 0b10001000, 0b10001000, 0b01001000, 0b00101000, 0b00011000, }; const uint8_t BT[16] PROGMEM = { 0b00011000, 0b00101000, 0b01001000, 0b10001000, 0b10001000, 0b01001001, 0b00101010, 0b10011101, 0b10011101, 0b00101010, 0b01001001, 0b10001000, 0b10001000, 0b01001000, 0b00101000, 0b00011000, };
tft.drawBitmap(KEY_MARGIN_X, 3, NO_BT, 8, 16, TFT_WHITE);
const uint8_t NO_BT[16] PROGMEM = { 0b00011000, 0b00101000, 0b01001000, 0b10001000, 0b10001000, 0b01001001, 0b00101010, 0b00011100, 0b00011100, 0b00101010, 0b01001001, 0b10001000, 0b10001000, 0b01001000, 0b00101000, 0b00011000, }; const uint8_t BT[16] PROGMEM = { 0b00011000, 0b00101000, 0b01001000, 0b10001000, 0b10001000, 0b01001001, 0b00101010, 0b10011101, 0b10011101, 0b00101010, 0b01001001, 0b10001000, 0b10001000, 0b01001000, 0b00101000, 0b00011000, };
Bluetooth symbols instead of the signature "BT Connection" and "No BT", use with