ivmarkov / rust-esp32-std-demo

Rust on ESP32 STD demo app. A demo STD binary crate for the ESP32[XX] and ESP-IDF, which connects to WiFi, Ethernet, drives a small HTTP server and draws on a LED screen.
Apache License 2.0
785 stars 105 forks source link

Serving HTTP in Access Point Mode #135

Closed 3d-t closed 1 year ago

3d-t commented 1 year ago

I have a use case where you don't want a build-in SSID and PASS for connecting to a wifi network. Instead the user should connect to the ESP accesspoint and then a web page shows where the user can enter the SSID and PASS of the local network. When provided the info is stored in EEPROM for future use and a connection to the wifi network is created.I have an implementation in .cpp (platform.io) where this works by connecting to 192.168.1.4 by default. This IP address can be changed.

When running the demo I can connect to the accesspoint "aptest' but what IP address should I use to connect to the 'httpd' function in the demo?

ivmarkov commented 1 year ago

The default one.