Search found 2 matches

by DougK2
Fri Feb 09, 2018 4:31 am
Forum: ESP32 Arduino
Topic: ESP Node Name in SoftAP Mode
Replies: 3
Views: 8762

Re: ESP Node Name in SoftAP Mode

After much searching and experimenting I found the setup sequence that works: WiFi.mode( WIFI_AP ); IPAddress ip( 1, 2, 3, 4 ); IPAddress gateway( 1, 2, 3, 1 ); IPAddress subnet( 255, 255, 255, 0 ); WiFi.softAPConfig( ip, gateway, subnet ); WiFi.softAP( "MyNodeName" ); Now I can see MyNodeName among...
by DougK2
Thu Feb 08, 2018 6:37 pm
Forum: ESP32 Arduino
Topic: ESP Node Name in SoftAP Mode
Replies: 3
Views: 8762

ESP Node Name in SoftAP Mode

I'm trying to set up an ESP32 in SoftAP mode so I can send simple ASCII commands to it without needing a separate WiFi router. I have been able to get that working but I cannot get the ESP name to show up correctly on my laptop. It is always ESP_234B01. I'm using the Wemos Lolin32 with the OLED. The...