WiFiNINA - WiFi.localIP()

Description

Gets the WiFi’s IP address

Syntax

WiFi.localIP()

Parameters

  • None

Returns

  • the IP address of the board

Example


#include <WiFiNINA.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 board

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 () {}