From 9f8982f60c90f40f8cb439ffd5ad4d39ed350d81 Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Fri, 4 Oct 2024 16:35:25 -0700 Subject: [PATCH] fixed up the placement of the direction indicator --- src/multi-tracker.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/multi-tracker.cpp b/src/multi-tracker.cpp index 7639720..ecb2067 100644 --- a/src/multi-tracker.cpp +++ b/src/multi-tracker.cpp @@ -285,10 +285,10 @@ void TFT_UpdateDistance(uint16_t meters) { // the led ring. void TFT_UpdateDirection(uint16_t degrees) { tft.setTextWrap(false); - tft.setCursor(0, 40); + tft.setCursor(0, 150); tft.setTextColor(ST77XX_WHITE); - tft.setTextSize(2); - tft.println(meters); + tft.setTextSize(3); + tft.print(meters); tft.println(" Degrees"); }