Skip to content

Commit

Permalink
fix(LVGL port): Fixed I2C example in older IDF.
Browse files Browse the repository at this point in the history
  • Loading branch information
espzav committed May 9, 2024
1 parent c82f355 commit c712f05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void app_main(void)
#endif
};
#if CONFIG_EXAMPLE_LCD_CONTROLLER_SSD1306
#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5,0,0))
#if (ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5,3,0))
esp_lcd_panel_ssd1306_config_t ssd1306_config = {
.height = EXAMPLE_LCD_V_RES,
};
Expand Down

0 comments on commit c712f05

Please sign in to comment.