[esp] Remove arduino-esp32 from LCD example.

This commit is contained in:
2025-03-14 09:46:47 -04:00
parent 5565ad5170
commit edde77b9c3
3 changed files with 1 additions and 389 deletions

View File

@@ -1,6 +1,5 @@
## IDF Component Manager Manifest File
dependencies:
idf: '>=5.3.0'
espressif/arduino-esp32: ^3.1.1
lvgl/lvgl: "9.2.0"
esp_lcd_sh1107: "^1"

View File

@@ -15,7 +15,7 @@
I2C i2c(PIN_SDA, PIN_SCL, PIN_RST);
void setup()
extern "C" void app_main(void)
{
SSD1306 ssd1306(i2c);
Display d(ssd1306);
@@ -37,5 +37,3 @@ void setup()
LV_LABEL_LONG_CLIP,
LV_ALIGN_BOTTOM_MID);
}
void loop() { }