From 5ad7d384d97fb45583e4f8bab3c7a98bba7f6d8f Mon Sep 17 00:00:00 2001 From: SimUKdev <52102399+SimUKdev@users.noreply.github.com> Date: Sat, 27 Jul 2019 01:11:14 +0100 Subject: [PATCH] Fixed some spelling errors Line 16: changed Dispaly to Display Line 106: changed Fount to Found --- TTGO-T-Display.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TTGO-T-Display.ino b/TTGO-T-Display.ino index e0b9f8c..a600cdc 100644 --- a/TTGO-T-Display.ino +++ b/TTGO-T-Display.ino @@ -13,7 +13,7 @@ #define TFT_DC 16 #define TFT_RST 23 -#define TFT_BL 4 // Dispaly backlight control pin +#define TFT_BL 4 // Display backlight control pin #define ADC_EN 14 #define ADC_PIN 34 #define BUTTON_1 35 @@ -103,7 +103,7 @@ void wifi_scan() } else { tft.setTextDatum(TL_DATUM); tft.setCursor(0, 0); - Serial.printf("Fount %d net\n", n); + Serial.printf("Found %d net\n", n); for (int i = 0; i < n; ++i) { sprintf(buff, "[%d]:%s(%d)", @@ -174,4 +174,4 @@ void loop() showVoltage(); } button_loop(); -} \ No newline at end of file +}