[Week 5 FYP2] Development of Easy Parking Finder System
Activity Title : - Modify the code to an automatic refresh for web-page. - Study to transfer data and display into Web-page Objective : To give make an automatic web-page refresh. To transfer data and display it in the Web-page. · Content : From my previous code, i modify the code to get the better result. The previous code seems like dont have response or update when it received a data. Code: #include <ESP8266WiFi.h> #include <WiFiClient.h> #include <ESP8266WebServer.h> const char* ssid = "abc"; // ssid const char* password = "123456789";// password //192.168.43.20 IPAddress ip(192, 168, 43, 23); //set static ip IPAddress gateway(192, 168, 43, 1); //set getteway IPAddress subnet(255, 255, 255, 0);//set subnet String page = ""; double data; ESP8266WebServer server(80); void setup() { Serial.begin(115200); delay(10); // Connection to wireless network ...