mirror of
https://github.com/Bodmer/TFT_eSPI.git
synced 2025-08-07 06:34:44 +02:00
Incorporate #453 with option
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
// Font 2
|
||||
|
||||
// Comment out for £ sign for character 24
|
||||
#define TFT_ESPI_FONT2_DOLLAR
|
||||
|
||||
#include <pgmspace.h>
|
||||
|
||||
// Width has been increased by 1 pixel so pixel lengths are calculated correctly
|
||||
@@ -50,8 +53,13 @@ PROGMEM const unsigned char chr_f16_23[16] = // 1 unsigned char per row
|
||||
|
||||
PROGMEM const unsigned char chr_f16_24[16] = // 1 unsigned char per row
|
||||
{
|
||||
#ifdef TFT_ESPI_FONT2_DOLLAR
|
||||
0x00, 0x00, 0x28, 0x38, 0x6C, 0xAA, 0xA8, 0x68, 0x3C, 0x2A, 0xAA, // row 1 - 11
|
||||
0x6C, 0x38, 0x28, 0x00, 0x00 // row 12 - 16
|
||||
#else // GBP sign
|
||||
0x00, 0x00, 0x00, 0x3C, 0x42, 0x40, 0x40, 0x70, 0x40, 0x70, 0x40, // row 1 - 11
|
||||
0x40, 0xFE, 0x00, 0x00, 0x00 // row 12 - 16
|
||||
#endif
|
||||
};
|
||||
|
||||
PROGMEM const unsigned char chr_f16_25[16] = // 1 unsigned char per row
|
||||
|
Reference in New Issue
Block a user