-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confusing guidelines / Difficulties to use library with platformIO #61
Comments
I would be really happy for any help I may have 👍 I still can't figure out how to make the library compile with the examples sketch. Ask anything you need ! |
Have you tried the latest update with LVGL 9? |
I fully agree, no way to get somewhere with these guidelines. |
Can you share what challenge you are having, we can find a way to improve the guidelines |
I followed the procedure outlined here. I can produce the emulator but i do not find an env for the "Elecrow3.5 with TFT touch". based on ESP32S3. I can program the ESP32S3 but i cannot get anything to display. I have been looking in Google but no working result. |
What framework do you need to use for ESP32? Currently, there is support for Arduino framework (ESP-IDF not yet supported). |
Sounds very good |
Hi,
After spending some time and eventually managing to install the LV_PlatformIO library, I am encountering a few build errors I cannot fix.
The main problem seems to be that I cannot get a correct main.cpp file content, and I am having difficulties understanding the platformIO instructions
My installation :
Toolchains versions :
Attempt n°1 (demo_create was not declared)
#include "demo.h"
to#include "demos/lv_demos.h"
because of thedemo.h
not foundI am getting the following build error :
src/main.cpp:28:5: error: 'demo_create' was not declared in this scope; did you mean 'lv_obj_create'?
Note : I was not able to Build and run the demo as shown here because I could not find any
idf.py
file in my downloads.Attempt n°2 (monitor.h no such file or directory)
#include "..\lib\hal\sdl2\app_hal.c"
(otherwise app_hal isn't found)I am getting the following error :
src/..\lib\hal\sdl2\app_hal.c:4:10: fatal error: display/monitor.h: No such file or directory
I also tried to follow the instructions here PIO issue but I was stuck because I could not find the idf.py
I am unsure of how I should proceed to use this library with platformIO
I would be really grateful to anyone providing some help !
Thanks in advance
The text was updated successfully, but these errors were encountered: