r-downing / wifi-sous-vide

WiFi-controlled Sous Vide on ESP8266 (arduino)
19 stars 8 forks source link

How to build and run webserver #13

Open laserman781 opened 2 years ago

laserman781 commented 2 years ago

Hello, I am unfamiliar with angular, I have tried to follow some tutorials online with no success... How do I run the webserver?

themocs commented 2 years ago

Hi @laserman781: first, flash the esp, then upload sketch data. That's it.

PS: AP mode not works, so i set ssid and password wifi on code, like this:

char* ssid = "<ssid>"; char* password = "<password>"; persWM.begin(ssid, password);

themocs commented 2 years ago

Or explicit initialize AP. boolean connected = persWM.begin(); if (!connected) { persWM.startApMode(); }