You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.pio\libdeps\d1_mini\Blynk\src/BlynkSimpleEsp8266.h:21:2: error: #error Please update your ESP8266 Arduino Core
Reason of this is that #include <version.h>
in BlynkSimpleEsp8266.h:21:2 from Blynk library include version.h from GyverPortal library. Not from framework-arduinoespressif8266. So ESP_SDK_VERSION_NUMBER was undefined and cause this error.
After gyverlibs/GyverPortal excluded from lib_deps in platformio.ini build was successful.
The text was updated successfully, but these errors were encountered:
Probably issue is in Blynk, because it has #include <...> - if file is inside the library, it should be included in double quotes. Try to change #include "version.h" in Blynk
At first I dont know is it a GyverPortal issue. But, other lib what has version.h file was build correctly, so look like that is.
This platformio.ini config
and
#include <BlynkSimpleEsp8266.h>
in main.cpp
causes an error
.pio\libdeps\d1_mini\Blynk\src/BlynkSimpleEsp8266.h:21:2: error: #error Please update your ESP8266 Arduino Core
Reason of this is that
#include <version.h>
in BlynkSimpleEsp8266.h:21:2 from Blynk library include
version.h
from GyverPortal library. Not from framework-arduinoespressif8266. SoESP_SDK_VERSION_NUMBER
was undefined and cause this error.After
gyverlibs/GyverPortal
excluded fromlib_deps
inplatformio.ini
build was successful.The text was updated successfully, but these errors were encountered: