solvaholic / micropython

@solvaholic's MicroPython scripts
MIT License
0 stars 0 forks source link

Learn how to use wifi #3

Closed solvaholic closed 8 months ago

solvaholic commented 9 months ago
### Tasks
- [x] Host an AP; Host a web page; Log requests on OLED
- [x] Scan; Log APs and stations with timestamp; Show Ads on OLED
solvaholic commented 9 months ago

Host an AP; Host a web page; Log requests on OLED

arduino-cli lib examples| grep Access tells me I have an example to start from for this: https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series/blob/0.0.9/esp32/libraries/WiFi/examples/WiFiAccessPoint/WiFiAccessPoint.ino

cebf26808f introduces a copy of that, which works ok. Next: Log requests to OLED.

solvaholic commented 9 months ago

Next: Log requests to OLED.

Done! a8b62191eb added this.

solvaholic commented 8 months ago

Scan; Log APs and stations with timestamp; Show Ads on OLED

Done! See eb3f395e