From 087c384f1f5bcfad1c5f8b26e31cc4765b687f9c Mon Sep 17 00:00:00 2001 From: Chteufleur Date: Mon, 5 Oct 2015 23:12:47 +0200 Subject: [PATCH] Send temperature every 10 minutes --- sensors/TempSensor/TempSensor.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sensors/TempSensor/TempSensor.ino b/sensors/TempSensor/TempSensor.ino index d8670d1..942b253 100644 --- a/sensors/TempSensor/TempSensor.ino +++ b/sensors/TempSensor/TempSensor.ino @@ -1,7 +1,7 @@ /* * Send temperature via HTTP GET requests to $host service. - * Measure temperature with interval given bye the server. - * Version 1.1.0 + * Measure temperature each 10 min. The server decide wich measure will be stored. + * Version 1.1.1 */ #include @@ -15,7 +15,7 @@ const char* password = "73ABCCAA87"; const char* host = "datahouse.kingpenguin.tk"; const int httpPort = 80; -const int DEFAULT_INTERVAL = 3600; +const int DEFAULT_INTERVAL = 600; //----------------------------------------------------