WiFi.localIP()
Description
Gets the WiFi shield’s IP address.
Syntax
WiFi.localIP();
Parameters
none
Returns
the IP address of the shield
Example
#include <WiFi.h>
char ssid[] = "yourNetwork";      //SSID of your network
int status = WL_IDLE_STATUS;     // the Wifi radio's status
IPAddress ip;                    // the IP address of your shield
void setup()
{
 // initialize serial:
 Serial.begin(9600);
 WiFi.begin(ssid);
 if ( status != WL_CONNECTED) { 
   Serial.println("Couldn't get a wifi connection");
   while(true);
 } 
 // if you are connected, print out info about the connection:
 else {
   //print the local IP address
   ip = WiFi.localIP();
   Serial.println(ip);
 }
}
void loop () {}
The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.
