I was trying to run the ServerExample code, which has this:
Serial.println("Connected to wifi!");
Serial.print("Server running at: ");
String address = wifi.server(8080);//sets up server and returns IP
Serial.println(address);
But when I run I receive this as output:
Connected to wifi!
Server running at: c
Any idea why the IP address is not working correctly?