Skip to content
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

Issue after updating libraries in my PIO project: enableCors() #609

Open
nostradamux opened this issue Sep 18, 2023 · 2 comments
Open

Issue after updating libraries in my PIO project: enableCors() #609

nostradamux opened this issue Sep 18, 2023 · 2 comments

Comments

@nostradamux
Copy link

Hello.
I have been using Autoconnect for a long time in my small temperature sensors, using Wemos D1 mini.
Recently one of those burnt, and I decided to reflash the new Wemos D1 mini.
Then the GIt project that I had that is based on AUTOconnect (version 1.3.1), for flashing, I update all dependencies, and now I receiving error in compilation:

.pio\libdeps\d1_mini\AutoConnect\src\AutoConnectAux.cpp:160:3: error: 'enableCORS' was not declared in this scope
160 | enableCORS(CORS);
| ^~~~~~~~~~
.pio\libdeps\d1_mini\AutoConnect\src\AutoConnectAux.cpp: In member function 'bool AutoConnectAux::_load(ArduinoJson::JsonObject&)':
.pio\libdeps\d1_mini\AutoConnect\src\AutoConnectAux.cpp:1047:5: error: '_cors' was not declared in this scope; did you mean 'cos'?
1047 | _cors = jb[F(AUTOCONNECT_JSON_KEY_CORS)].as();
| ^~~~~
| cos
.pio\libdeps\d1_mini\AutoConnect\src\AutoConnectAux.cpp: In member function 'size_t AutoConnectAux::saveElement(Stream&, const std::vector&)':
.pio\libdeps\d1_mini\AutoConnect\src\AutoConnectAux.cpp:1224:11: error: '_cors' was not declared in this scope; did you mean 'cos'

I think this is related with PageBuilder library, but not clear how to solve it.

Here I list versions of packages dependecies in my project:

image

Any tip or suggestion to go ahead?
Thanks

@tktf50
Copy link
Contributor

tktf50 commented Dec 9, 2023

@nostradamux

I've run into a similar issue because I'm trying to use an earlier version of the ESP8266 platform in order to try to get "light sleep" working.

It looks like the enableCORS function was added in AutoConnect V1.4.1 (and PageBuilder V1.5.4). You'll need to modify your platformio.ini file to specify PageBuilder V1.5.4 or later if you want to use AutoConnect 1.4.2.

@EmbeddedDevver
Copy link

@nostradamux

I've run into a similar issue because I'm trying to use an earlier version of the ESP8266 platform in order to try to get "light sleep" working.

It looks like the enableCORS function was added in AutoConnect V1.4.1 (and PageBuilder V1.5.4). You'll need to modify your platformio.ini file to specify PageBuilder V1.5.4 or later if you want to use AutoConnect 1.4.2.

This was the solution for me as well.
@nostradamux please close this issue as it is resolved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants