Skip to content

Commit

Permalink
changed ethernet.mymask to ethernet.netmask to reflect the recent cha…
Browse files Browse the repository at this point in the history
…nges of the library
  • Loading branch information
lucadentella committed Dec 13, 2014
1 parent d33767c commit 5aef26a
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion _12_SkebbySMS/_12_SkebbySMS.ino
Expand Up @@ -35,7 +35,7 @@ void setup () {
} else Serial.println("DHCP configuration done:");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);

if (!ether.dnsLookup(website)) {
Expand Down
2 changes: 1 addition & 1 deletion _13_NTP/_13_NTP.ino
Expand Up @@ -30,7 +30,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);

Serial.println();
Expand Down
2 changes: 1 addition & 1 deletion _13a_NTP/_13a_NTP.ino
Expand Up @@ -33,7 +33,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);

Serial.println();
Expand Down
2 changes: 1 addition & 1 deletion _14_WebTemperature/_14_WebTemperature.ino
Expand Up @@ -44,7 +44,7 @@ void setup () {

Serial.println();
ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);
ether.printIp("Website IP:\t", ether.hisip);
Serial.println();
Expand Down
2 changes: 1 addition & 1 deletion _15_BasicAuthentication/_15_BasicAuthentication.ino
Expand Up @@ -26,7 +26,7 @@ void setup () {
} else Serial.println("DHCP configuration done:");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);

if (!ether.dnsLookup(website)) {
Expand Down
2 changes: 1 addition & 1 deletion _16_ProtectedLed/_16_ProtectedLed.ino
Expand Up @@ -23,7 +23,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);

pinMode(led_pin, OUTPUT);
Expand Down
2 changes: 1 addition & 1 deletion _2_DHCP/_2_DHCP.ino
Expand Up @@ -18,7 +18,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);
}

Expand Down
2 changes: 1 addition & 1 deletion _3_Client/_3_Client.ino
Expand Up @@ -29,7 +29,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);
Serial.println();

Expand Down
2 changes: 1 addition & 1 deletion _4_WOL/_4_WOL.ino
Expand Up @@ -19,7 +19,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);

Serial.println();
Expand Down
2 changes: 1 addition & 1 deletion _5_BasicServer/_5_BasicServer.ino
Expand Up @@ -18,7 +18,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);
Serial.println();
}
Expand Down
2 changes: 1 addition & 1 deletion _6_NoIPClient/_6_NoIPClient.ino
Expand Up @@ -47,7 +47,7 @@ void setup () {
Serial.println("DHCP configuration done");

ether.printIp("IP Address:\t", ether.myip);
ether.printIp("Netmask:\t", ether.mymask);
ether.printIp("Netmask:\t", ether.netmask);
ether.printIp("Gateway:\t", ether.gwip);
Serial.println();

Expand Down

0 comments on commit 5aef26a

Please sign in to comment.