1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/projects/laser/main.c

31 lines
756 B
C
Raw Normal View History

2010-11-18 16:47:04 +01:00
#include <stdio.h>
#include <sht11.h>
#include <board.h>
#include <swtimer.h>
2010-11-24 11:08:15 +01:00
#include <ltc4150.h>
2010-11-18 16:47:04 +01:00
int main(void)
{
sht11_val_t sht11_val;
uint8_t success = 0;
puts("");
puts("LaSeR: Longterm Sensor Reader initialized.");
puts("Printing \"temperature in °C;relative humidity;temperature compensated relative humidity\".");
puts("");
2010-11-24 11:08:15 +01:00
ltc4150_start();
2010-11-18 16:47:04 +01:00
while (1) {
success = sht11_read_sensor(&sht11_val, HUMIDITY|TEMPERATURE);
if (!success) {
printf("error;error;error\n");
}
else {
printf("%.2f;%.2f;%.2f\n", sht11_val.temperature, sht11_val.relhum, sht11_val.relhum_temp);
}
LED_RED_TOGGLE;
2010-11-24 11:08:15 +01:00
swtimer_usleep(60 * 1000*1000);
2010-11-18 16:47:04 +01:00
}
}