I'm trying to connect a Uno to Wifi using an ESP8266 via software serial, I can get the ESP to connect to my router but when I try to retrieve the IP address I get the following gibberish:
WIFI CONNECTED
WIFI GOT IP
AT+CIFSR
+CIFSR:APIP,"192.168.4/1"
+CIFSR:@P⸮P(I*⸮⸮2⸮⸮⸮銚Һ⸮⸮⸮⸮j
+CIFSR:STAR⸮I⸮ʒrr
Ac
I believe the 192.168.4.1 isn't the true IP (I can't ping it any way), but I can't figure out how to get the true IP.
are you using software serial at a high baud rate, e.g. 115200baud ?
on a UNO software serial can fail at above 38400baud
change the baud rate to 9600 or 19200baud?
post the code?