| MAC | 39 |40 | |
| Access point IP | 43 |44 | |
| Wi-Fi Network | 47 |48 | |
| WLAN WAN IP | 51 |52 | |
| Active service | 56 |57 | |
├── images ├── ap.png ├── light.png ├── other.png ├── reboot.png ├── status.png ├── eye-close.png ├── network.png ├── periperal.png ├── service.png ├── timezone.png └── upgrade.png ├── Configuration_Webpage └── data │ ├── images │ ├── ap.png │ ├── light.png │ ├── network.png │ ├── other.png │ ├── reboot.png │ ├── service.png │ ├── status.png │ ├── upgrade.png │ ├── eye-close.png │ ├── periperal.png │ └── timezone.png │ ├── config.json │ ├── login.html │ ├── js │ ├── pixie-custom.js │ └── bootstrap.min.js │ ├── css │ └── pixie-main.css │ └── main.html ├── config.json ├── .gitignore ├── README.md ├── login.html ├── js ├── pixie-custom.js └── bootstrap.min.js ├── css └── pixie-main.css └── main.html /images/ap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/ap.png -------------------------------------------------------------------------------- /images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/light.png -------------------------------------------------------------------------------- /images/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/other.png -------------------------------------------------------------------------------- /images/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/reboot.png -------------------------------------------------------------------------------- /images/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/status.png -------------------------------------------------------------------------------- /images/eye-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/eye-close.png -------------------------------------------------------------------------------- /images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/network.png -------------------------------------------------------------------------------- /images/periperal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/periperal.png -------------------------------------------------------------------------------- /images/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/service.png -------------------------------------------------------------------------------- /images/timezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/timezone.png -------------------------------------------------------------------------------- /images/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/images/upgrade.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/ap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/ap.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "AP_name": "ESP32_PAGE", 3 | "AP_pass": "12345678", 4 | "AP_IP": "192.168.4.1", 5 | "Admin_pass" : "admin123" 6 | 7 | } -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/light.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/network.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/other.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/reboot.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/service.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/status.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/upgrade.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/eye-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/eye-close.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/periperal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/periperal.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/images/timezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futechiot/Configuration-webpage-esp32/HEAD/Configuration_Webpage/data/images/timezone.png -------------------------------------------------------------------------------- /Configuration_Webpage/data/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "AP_name": "ESP32_PAGE", 3 | "AP_pass": "12345678", 4 | "AP_IP": "192.168.4.1", 5 | "Admin_pass" : "admin123" 6 | 7 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Configuration-webpage-esp32 2 | 3 | A web page hosted on wifi accesspoint of 32 bit micro-controller to provide each configuration details to micro-controller required for data sending to server, details includes connection of Router(dhcp and static modes) To Server(HTTP, TCP, MQTT). Give details through web page and connect your esp32 board to your wifi connection and with your server to send data. 4 | 5 |  6 |  7 |  8 |  9 |  10 | 11 | 12 | ### Configuration Process 13 | 1. Upload .ino code to your ESP32. 14 | 1. Uplad Data folder using Esp32 sketch data upload. 15 | 2. Connect mobile with hotspot : ESP32_PAGE_2. 16 | 3. Go to web browser and hit 192.168.4.1. 17 | 4. Scan for your wifi network, write password hit apply. 18 | 5. Press Reboot. 19 | 6. esp32 is now connected with your wifi network. 20 | 7. Go to service section give necessary server credential for MQTT or HTTP or TCP to connect. 21 | 8. press reboot. 22 | 9. esp32 will connect with your server and send your data to your server. 23 | 24 | ##### Library Used 25 | 26 | - ESp32_arduino :- https://github.com/espressif/arduino-esp32 27 | - ESPAsyncWebServer:- https://github.com/me-no-dev/ESPAsyncWebServer 28 | - AsyncTCP:- https://github.com/me-no-dev/AsyncTCP 29 | - esp32 SPIFF File system :- https://github.com/me-no-dev/arduino-esp32fs-plugin 30 | -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 || MAC | 39 |40 | |
| Access point IP | 43 |44 | |
| Wi-Fi Network | 47 |48 | |
| WLAN WAN IP | 51 |52 | |
| Active service | 56 |57 | |
Access Point Configuration| MAC | 39 |40 | |
| Access point IP | 43 |44 | |
| Wi-Fi Network | 47 |48 | |
| WLAN WAN IP | 51 |52 | |
| Active service | 56 |57 | |
Access Point Configuration