Home Page | Language Reference (extended) | SD Reference | Libraries | Comparison | Changes
Gets the WiFi shield's IP address
WiFi.localIP();
none
the IP address of the shield
#include <WiFi101.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
(
)
{
}
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.