blob: 7cdc9a6093ba00c1ed7906ea6e194c4f925c055d [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/zephyr.h>
#include <zephyr/init.h>
#include <stdio.h>
#include <zephyr/drivers/sensor.h>
#define SLEEP_TIME K_MSEC(1000)
void main(void)
{
const struct device *dev =
device_get_binding(DT_LABEL(DT_INST(0, seeed_grove_light)));
if (dev == NULL) {
printf("device not found. aborting test.\n");
return;
}
while (1) {
int read;
struct sensor_value lux;
read = sensor_sample_fetch(dev);
if (read) {
printf("sample fetch error %d\n", read);
continue;
}
sensor_channel_get(dev, SENSOR_CHAN_LIGHT, &lux);
printf("lux: %f\n", sensor_value_to_double(&lux));
k_sleep(SLEEP_TIME);
}
}