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; //----------------------------------------------------