Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By WereCatf
#38602
acca wrote:When i try to compile sketch from https://github.com/chriscook8/esp-arduino-apboot

i get this error, can someone help me please


I'm not going to bother testing if the sketch actually works as it's supposed to, but add these lines to your code before the setup() - function:
Code: Select allint testWifi(void);
void launchWeb(int webtype);
void setupAP(void);
int mdns1(int webtype);


Either you have to declare the functions before calling them or place the functions themselves somewhere before the spot where you call them -- you can't call a function that hasn't appeared in the code yet.
User avatar
By acca
#38657 Thank for your help.

The problem was that i tried to use arduino IDE 1.6.7 but it doesn't works with esp8266.
I was trying to use this version because 1.6.5 has a bug with non ascii windows user filenames. I managed to change my username and now 1.6.5 works.
IWith 1.6.5, it compiles fine...

... but esp crashes when going into APmode. I'll investigate more before asking help.

Thanks