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
when building in VSCode straight after downloading the repository and opening in platformio, when running Build All I get this error in emonesp-nodemcu32s,:
src/config.cpp:60:32: error: array must be initialized with a brace-enclosed initializer
String ct_name[NUM_CHANNELS] = "";
changing from String ct_name[NUM_CHANNELS] = "";
to
String ct_name[NUM_CHANNELS] = {""};
resolves this first issue
but then,
It seems there have been changes with the Async library that is causing build problems
when building in VSCode straight after downloading the repository and opening in platformio, when running Build All I get this error in emonesp-nodemcu32s,:
src/config.cpp:60:32: error: array must be initialized with a brace-enclosed initializer
String ct_name[NUM_CHANNELS] = "";
changing from
String ct_name[NUM_CHANNELS] = "";
to
String ct_name[NUM_CHANNELS] = {""};
resolves this first issue
but then,
It seems there have been changes with the Async library that is causing build problems
looks like lib_deps needs t be updated with
https://github.com/me-no-dev/ESPAsyncWebServer.git
i can't get it to build consistently, but do have emonesp running on the board
The text was updated successfully, but these errors were encountered: