several error messages when using fastled port from bbulkow
Posted: Thu Mar 21, 2024 7:16 am
Hello everyone,
I'm currently trying to get bbulkow's FastLed port (from github) to run in ESP-IDF 5.12, but I'm getting some errors that I can't deal with as a beginner.
The errors are as follows:
I understand that this is because some files cannot be found. At the first error I tried to put the components manually into the components folder and link them manually, but without success.
For the second error i came across a post that deals with this. The solution was to link the driver in the CMakeList in the root directory of the project, but this did not work in my case. Same error still after adding:
My question: does anyone have bbulkow's FastLED port running under the latest version and can give me some hints on how to get this working?
Thanks in advance!!
I'm currently trying to get bbulkow's FastLed port (from github) to run in ESP-IDF 5.12, but I'm getting some errors that I can't deal with as a beginner.
The errors are as follows:
Code: Select all
fatal error: esp_timer.h: No such file or directory
7 | #include "esp_timer.h"
Code: Select all
cannot open source file "driver/gpio.h"C/C++(1696)
For the second error i came across a post that deals with this. The solution was to link the driver in the CMakeList in the root directory of the project, but this did not work in my case. Same error still after adding:
Code: Select all
idf_component_register(SRCS ${SOURCE_FILES}
REQUIRES drivers)
Thanks in advance!!