From c45a824276fa4e1ed474ecc5d8680fcca6f9007c Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Sat, 25 Apr 2020 22:52:39 -0700 Subject: [PATCH] Switch back to nicer font --- nano_font.cpp | 8 ++++---- nano_gui.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nano_font.cpp b/nano_font.cpp index 67fe89b..b292824 100644 --- a/nano_font.cpp +++ b/nano_font.cpp @@ -1,12 +1,12 @@ #include "nano_font.h" #include -//#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; diff --git a/nano_gui.cpp b/nano_gui.cpp index defa833..64cba7b 100644 --- a/nano_gui.cpp +++ b/nano_gui.cpp @@ -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); }