Merge pull request #7 from Joennuh/master

Making TFT_eSPI settings effective
pull/16/head
lewis he 2019-09-20 09:06:46 +08:00 zatwierdzone przez GitHub
commit aec49fbef9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 6 usunięć

Wyświetl plik

@ -138,12 +138,10 @@ void setup()
tft.setTextDatum(MC_DATUM);
tft.setTextSize(1);
//! The backlight has been initialized in the TFT_eSPI library
// if (TFT_BL > 0) {
// pinMode(TFT_BL, OUTPUT);
// digitalWrite(TFT_BL, HIGH);
// }
if (TFT_BL > 0) { // TFT_BL has been set in the TFT_eSPI library in the User Setup file TTGO_T_Display.h
pinMode(TFT_BL, OUTPUT); // Set backlight pin to output mode
digitalWrite(TFT_BL, TFT_BACKLIGHT_ON); // Turn backlight on. TFT_BACKLIGHT_ON has been set in the TFT_eSPI library in the User Setup file TTGO_T_Display.h
}
tft.setSwapBytes(true);
tft.pushImage(0, 0, 240, 135, ttgo);