Switch back to nicer font

This commit is contained in:
Reed Nightingale 2020-04-25 22:52:39 -07:00
parent 2c4448f6a0
commit c45a824276
2 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,12 @@
#include "nano_font.h"
#include <avr/pgmspace.h>
//#include "PDQ_MinLib/FreeSansBold9pt7b.h"
#include "PDQ_MinLib/FreeSansBold9pt7b.h"
//#include "PDQ_MinLib/Picopixel.h"
//#include "PDQ_MinLib/org_01.h"
#include "PDQ_MinLib/TomThumb.h"
//#include "PDQ_MinLib/TomThumb.h"
//const GFXfont* ubitx_font = &FreeSansBold9pt7b;
const GFXfont* ubitx_font = &FreeSansBold9pt7b;
//const GFXfont* ubitx_font = &Picopixel;
//const GFXfont* ubitx_font = &Org_01;
const GFXfont* ubitx_font = &TomThumb;
//const GFXfont* ubitx_font = &TomThumb;

View File

@ -34,7 +34,7 @@ void displayInit(void){
tft.setFont(ubitx_font);
tft.setTextWrap(true);
tft.setTextColor(DISPLAY_GREEN,DISPLAY_BLACK);
tft.setTextSize(3);
tft.setTextSize(1);
tft.setRotation(1);
}