Good morning,
I ran into an issue with the FS library in the Aug 10 Stage build.
FS.h:112:11: error: 'FS' is already declared in this scope
using fs*:FS;
Error compiling
I've tracked down the issue to the order of which the ESP8266WebServer and FS libraries are included.
If they are included in this order:
include <ESP8266WebServer.h>
include "FS.h"
The above error message will block compilation.
If they're included in this order:
include "FS.h"
include <ESP8266WebServer.h>
There is no error message.
Thanks!