esp8266-framework
esp8266-framework copied to clipboard
Compile error
I get the following compiler error:
pio\libdeps\d1_mini\esp8266-framework\src\EwingsEspStack.cpp:121:7: error: 'dhcpSoftAP' was not declared in this scope
My config:
[env:d1_mini]
platform = espressif8266
board = d1_mini
lib_deps = suraj151/esp8266-framework@^1.1.5
Using the simple EWS stack example:
#include <EwingsEspStack.h>
void setup() {
EwStack.initialize();
}
void loop() {
EwStack.serve();
}
Which version of esp8266 arduino library you are using ? I think this library supports 3.0.2 version
I am using the latest, 3.1.2
Hi @a-schyja
Library is not updated with 3.1.2 changes. So i would recommend to try with 3.0.2 esp8266 library version
Whenever i will get time i will update source with new version to align the latest arduino esp8266 version
Till then this library can support upto 3.0.2 only
Good to hear, thank you for the quick response.