Skip to content

Commit

Permalink
Use latest lvgl
Browse files Browse the repository at this point in the history
  • Loading branch information
rzeldent committed Aug 25, 2024
1 parent c377761 commit 9a8e37f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/esp32_smartdisplay.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <Arduino.h>
#include <lvgl.h>
#include <display/lv_display_private.h>
//#include <misc/lv_timer_private.h>
#include <misc/lv_timer_private.h>
#include <indev/lv_indev_private.h>

// Use last PWM_CHANNEL for backlight
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": {
"lvgl/lvgl": "^9.1.0"
"lvgl/lvgl": "https://github.com/lvgl/lvgl.git"
}
}
4 changes: 3 additions & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ build_flags =
'-D ESP_LCD_PANEL_IO_ADDITIONS_VER_PATCH=1'

lib_deps =
lvgl/lvgl@^9.1.0
# Use direct git because rotation commit is after 9.1
https://github.com/lvgl/lvgl.git
#lvgl/lvgl@^9.1.0
# The platformio.test_dir contains the test_main.cpp just to have an setup() and loop() function
# so it will compile
${platformio.test_dir}
Expand Down

0 comments on commit 9a8e37f

Please sign in to comment.