Skip to content

Commit 79fba52

Browse files
authored
Merge pull request #984 from bensuffolk/master
Changed post TFT reset delay to work for BTT Panda Touch Thank you!
2 parents 5bed150 + 1b85530 commit 79fba52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/drv/tft/tft_driver_arduinogfx.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ void ArduinoGfx::init(int w, int h)
134134
digitalWrite(TFT_RST, LOW);
135135
delay(120);
136136
digitalWrite(TFT_RST, HIGH);
137-
delay(120);
137+
delay(300);
138138
}
139139

140140
Arduino_RGBPanel_Mod* bus = new Arduino_RGBPanel_Mod(
@@ -494,4 +494,4 @@ uint32_t ArduinoGfx::get_tft_driver()
494494
} // namespace dev
495495

496496
dev::ArduinoGfx haspTft;
497-
#endif
497+
#endif

0 commit comments

Comments
 (0)