mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-12 07:40:58 -08:00
Add support for Adafruit Reverse Feather ESP32-S2
This commit is contained in:
@@ -28,6 +28,10 @@ void Display::RunSetup()
|
||||
tft.setRotation(1);
|
||||
#endif
|
||||
|
||||
#ifdef MARAUDER_REV_FEATHER
|
||||
tft.setRotation(1);
|
||||
#endif
|
||||
|
||||
tft.setCursor(0, 0);
|
||||
|
||||
#ifdef HAS_ILI9341
|
||||
@@ -53,6 +57,14 @@ void Display::RunSetup()
|
||||
#ifdef KIT
|
||||
pinMode(KIT_LED_BUILTIN, OUTPUT);
|
||||
#endif
|
||||
|
||||
#ifdef MARAUDER_REV_FEATHER
|
||||
pinMode(7, OUTPUT);
|
||||
|
||||
delay(10);
|
||||
|
||||
digitalWrite(7, HIGH);
|
||||
#endif
|
||||
}
|
||||
|
||||
void Display::drawFrame()
|
||||
|
||||
Reference in New Issue
Block a user