fixed up the placement of the direction indicator

This commit is contained in:
jakeg00dwin 2024-10-04 16:35:25 -07:00
parent 6c0e016c20
commit 9f8982f60c
1 changed files with 3 additions and 3 deletions

View File

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