Skip to content

Commit

Permalink
same mac for all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua committed Feb 14, 2017
1 parent 4133ffd commit 7efe261
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/DhcpAddressPrinter/DhcpAddressPrinter.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// Enter a MAC address for your controller below.
// Newer Ethernet shields have a MAC address printed on a sticker on the shield
byte mac[] = {
0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED
};

// Initialize the Ethernet client library
Expand Down
2 changes: 1 addition & 1 deletion examples/DhcpChatServer/DhcpChatServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
// The IP address will be dependent on your local network.
// gateway and subnet are optional:
byte mac[] = {
0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED
};
IPAddress ip(192, 168, 1, 177);
IPAddress myDns(192,168,1, 1);
Expand Down

0 comments on commit 7efe261

Please sign in to comment.