From b4f2bd9761b5036d7b287b08007886c04f0279e9 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Thu, 24 Feb 2011 09:34:08 -0500 Subject: [PATCH] updated addresses for Pachube.com in Ethernet examples --- libraries/Ethernet/examples/PachubeClient/PachubeClient.pde | 4 ++-- .../examples/PachubeClientString/PachubeClientString.pde | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/Ethernet/examples/PachubeClient/PachubeClient.pde b/libraries/Ethernet/examples/PachubeClient/PachubeClient.pde index fe94541e1..406c7d17f 100644 --- a/libraries/Ethernet/examples/PachubeClient/PachubeClient.pde +++ b/libraries/Ethernet/examples/PachubeClient/PachubeClient.pde @@ -28,7 +28,7 @@ byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; // assign an IP address for the controller: byte ip[] = { - 192,169,1,20 }; + 192,168,1,20 }; byte gateway[] = { 192,168,1,1}; byte subnet[] = { @@ -36,7 +36,7 @@ byte subnet[] = { // The address of the server you want to connect to (pachube.com): byte server[] = { - 209,40,205,190 }; + 173,203,98,29 }; // initialize the library instance: Client client(server, 80); diff --git a/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.pde b/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.pde index 225823ac1..d49301620 100644 --- a/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.pde +++ b/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.pde @@ -30,7 +30,7 @@ byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; // assign an IP address for the controller: byte ip[] = { - 192,169,1,20 }; + 192,168,1,20 }; byte gateway[] = { 192,168,1,1}; byte subnet[] = { @@ -38,7 +38,7 @@ byte subnet[] = { // The address of the server you want to connect to (pachube.com): byte server[] = { - 209,40,205,190 }; + 173,203,98,29 }; // initialize the library instance: Client client(server, 80);