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"); }