Returns the DNS server IP address for the device.
Phpoc.dnsServerIP()
none
the DNS server IP address for the device (IPAddress).
#include <SPI.h>
#include <Phpoc.h>
void setup()
{
Serial.begin(9600);
if(Phpoc.begin() == 0)
{
Serial.println("Failed to initialize Network");
for(;;)
;
}
Serial.println(Phpoc.dnsServerIP());
}
void loop()
{
}