Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.1 KB

README.md

File metadata and controls

38 lines (26 loc) · 1.1 KB

ESP32 WEB CONTROL TUTORIAL

base on LilttleFS, ESPWebAsyncServer to create a Control Page,

It can use IO, log, sent msg, chart,...

NOTICES If you are not familier with ESP32, or Platform.IO.

Step by Step, 00 to 02.

Both ESP32 and ESP8266 supported.

Study from Littlefs and Wifi, then WebAsyncServer

study lorol/LittleFS library and others

study ESP WEB ASYNC SERVER library

combines aboves, index.html stores in Littlefs.,for client javascript and HTML

NOTICES If you are experts, Good, start from 03.

All of libraries and use Javascript, HTML skills

Modify your SSID and PASSWORD in main.cpp

// 1. *** modified your SSID, PASSWORD pair 
  if (!WiFiInit(WIFI_STA_AUTO_MODE,"SSID", "PASSWORD")) {
      Serial.println("Error:Wifi fail");
      return ;
  }