Skip to content

Commit b4f2bd9

Browse files
committed
updated addresses for Pachube.com in Ethernet examples
1 parent fa3728e commit b4f2bd9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libraries/Ethernet/examples/PachubeClient/PachubeClient.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ byte mac[] = {
2828
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
2929
// assign an IP address for the controller:
3030
byte ip[] = {
31-
192,169,1,20 };
31+
192,168,1,20 };
3232
byte gateway[] = {
3333
192,168,1,1};
3434
byte subnet[] = {
3535
255, 255, 255, 0 };
3636

3737
// The address of the server you want to connect to (pachube.com):
3838
byte server[] = {
39-
209,40,205,190 };
39+
173,203,98,29 };
4040

4141
// initialize the library instance:
4242
Client client(server, 80);

libraries/Ethernet/examples/PachubeClientString/PachubeClientString.pde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ byte mac[] = {
3030
0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
3131
// assign an IP address for the controller:
3232
byte ip[] = {
33-
192,169,1,20 };
33+
192,168,1,20 };
3434
byte gateway[] = {
3535
192,168,1,1};
3636
byte subnet[] = {
3737
255, 255, 255, 0 };
3838

3939
// The address of the server you want to connect to (pachube.com):
4040
byte server[] = {
41-
209,40,205,190 };
41+
173,203,98,29 };
4242

4343
// initialize the library instance:
4444
Client client(server, 80);

0 commit comments

Comments
 (0)