wait only 5 ms instead of 100 ms for LCD driver to power on
This commit is contained in:
parent
c9c850f9cb
commit
054a9dbc51
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ void init_tft(void) {
|
||||||
digitalWrite(LCD_EN_GPIO, LOW);
|
digitalWrite(LCD_EN_GPIO, LOW);
|
||||||
#endif
|
#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.init();
|
||||||
tft.initDMA();
|
tft.initDMA();
|
||||||
tft.setRotation(0);
|
tft.setRotation(0);
|
||||||
|
|
Loading…
Reference in a new issue