diff options
author | Cristian Maglie <c.maglie@bug.st> | 2012-10-18 20:31:51 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@bug.st> | 2012-10-18 20:31:51 +0200 |
commit | 46d658fac872f7aa8856c792b1744b74f2d9946d (patch) | |
tree | b9f4e5857c706c3f9f848018155cd15acd8eeafb | |
parent | 037020e938f7dde469f828764976635a69b74a3e (diff) | |
parent | 12df9f2c839e81cad2cf9797cc932518e5383c7d (diff) |
Merge remote-tracking branch 'origin/master' into merge-1.0.1
3 files changed, 13 insertions, 10 deletions
diff --git a/libraries/Ethernet/examples/CosmClient/CosmClient.ino b/libraries/Ethernet/examples/CosmClient/CosmClient.ino index 22815af..ec74278 100644 --- a/libraries/Ethernet/examples/CosmClient/CosmClient.ino +++ b/libraries/Ethernet/examples/CosmClient/CosmClient.ino @@ -49,9 +49,11 @@ EthernetClient client; //IPAddress server(216,52,233,121); // numeric IP for api.cosm.com char server[] = "api.cosm.com"; // name address for cosm API -unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds -boolean lastConnected = false; // state of the connection last time through the main loop -const unsigned long postingInterval = 10*1000; //delay between updates to cosm.com +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10L*1000L; // delay between updates to cosm.com + // the "L" is needed to use long type numbers + void setup() { // start serial port: diff --git a/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino b/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino index 05b549b..e619924 100644 --- a/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino +++ b/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino @@ -51,10 +51,10 @@ EthernetClient client; //IPAddress server(216,52,233,121); // numeric IP for api.cosm.com char server[] = "api.cosm.com"; // name address for Cosm API -unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds -boolean lastConnected = false; // state of the connection last time through the main loop -const unsigned long postingInterval = 10*1000; //delay between updates to Cosm.com - +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10L*1000L; // delay between updates to Cosm.com + // the "L" is needed to use long type numbers void setup() { // start serial port: Serial.begin(9600); diff --git a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino index e0f06c4..650f74e 100644 --- a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino +++ b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino @@ -39,9 +39,10 @@ EthernetClient client; char server[] = "www.arduino.cc"; -unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds -boolean lastConnected = false; // state of the connection last time through the main loop -const unsigned long postingInterval = 60*1000; // delay between updates, in milliseconds +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 60L*1000L; // delay between updates, in milliseconds + // the "L" is needed to use long type numbers void setup() { // start serial port: |