cleanup debugpronts

This commit is contained in:
Harald Pichler 2016-06-28 14:08:38 +02:00
parent dfd8fdec4a
commit 978ef63002

View file

@ -115,14 +115,14 @@ void loop (void)
lux = lightMeter.getLightLevel(); lux = lightMeter.getLightLevel();
// Debug Print // Debug Print
printf("BMP085"); printf("BMP085\n");
printf("\t\tPress: %s\n",bmp085press_s); printf("Press: %s\n",bmp085press_s);
printf("\t\tAltitude: %s\n",bmp085alt_s); printf("Altitude: %s\n",bmp085alt_s);
printf("\t\tatm: %s\n",bmp085atm_s); printf("atm: %s\n",bmp085atm_s);
printf("\t\tHTU21d"); printf("HTU21d\n");
printf("\t\tTemp: %s",htu21d_temp_s); printf("Temp: %s\n",htu21d_temp_s);
printf("\t\tHum: %s\n",htu21d_hum_s); printf("Hum: %s\n",htu21d_hum_s);
printf("\t\tBH1750"); printf("BH1750\n");
printf("Lux: %d\n",lux); printf("Lux: %d\n",lux);
mcu_sleep_on(); mcu_sleep_on();
} }