diff --git a/examples/osd/arduino-climate3/project-conf.h b/examples/osd/arduino-climate3/project-conf.h index e25aed53c..b52067590 100644 --- a/examples/osd/arduino-climate3/project-conf.h +++ b/examples/osd/arduino-climate3/project-conf.h @@ -38,7 +38,7 @@ #define SICSLOWPAN_CONF_FRAG 1 -#define LOOP_INTERVAL (10 * CLOCK_SECOND) +#define LOOP_INTERVAL (30 * CLOCK_SECOND) /* Save energy */ //#define RDC_CONF_PT_YIELD_OFF diff --git a/examples/osd/arduino-climate3/sketch.pde b/examples/osd/arduino-climate3/sketch.pde index 133e6d748..bcb4d804d 100644 --- a/examples/osd/arduino-climate3/sketch.pde +++ b/examples/osd/arduino-climate3/sketch.pde @@ -132,7 +132,7 @@ void loop (void) { dsensors.requestTemperatures(); // print the device information - //printData(outsideThermometer,0); + printData(outsideThermometer,0); htu21d_temp = htu.readTemperature(); htu21d_hum = htu.readHumidity(); @@ -141,7 +141,6 @@ void loop (void) dtostrf(htu21d_hum , 0, 2, htu21d_hum_s ); // debug only -// printf("Temp: %s",htu21d_temp_s); -// printf("\t\tHum: %s\n",htu21d_hum_s); - + printf("Temp: %s",htu21d_temp_s); + printf("\t\tHum: %s\n",htu21d_hum_s); }