Skip to content

Commit

Permalink
wait only 5 ms instead of 100 ms for LCD driver to power on
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMu committed Mar 24, 2024
1 parent c9c850f commit 054a9db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Platformio/hardware/ESP32/tft_hal_esp32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ void init_tft(void) {
digitalWrite(LCD_EN_GPIO, LOW);
#endif

delay(100); // Wait for the LCD driver to power on
// https://github.com/CoretechR/OMOTE/issues/70#issuecomment-2016763291
delay(5); // Wait for the LCD driver to power on
tft.init();
tft.initDMA();
tft.setRotation(0);
Expand Down

0 comments on commit 054a9db

Please sign in to comment.