main.c
2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Copyright 2015 Ludwig Knüpfer
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Test application for the ISL29125 RGB light sensor
*
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
*
* @}
*/
#ifndef TEST_ISL29125_I2C
#error "TEST_ISL29125_I2C not defined"
#endif
#ifndef TEST_ISL29125_IRQ_PIN
#error "ISL29125_IRQ_PIN not defined"
#endif
#include <stdio.h>
#include <string.h>
#include "xtimer.h"
#include "isl29125.h"
#define SLEEP (250 * 1000U)
int main(void)
{
isl29125_t dev;
isl29125_rgb_t data;
color_rgb_t data8bit;
memset(&data, 0x00, sizeof(data));
puts("ISL29125 light sensor test application\n");
printf("Initializing ISL29125 sensor at I2C_%i... ", TEST_ISL29125_I2C);
if (isl29125_init(&dev, TEST_ISL29125_I2C, TEST_ISL29125_IRQ_PIN,
ISL29125_MODE_RGB, ISL29125_RANGE_10K,
ISL29125_RESOLUTION_16) == 0) {
puts("[OK]\n");
}
else {
puts("[Failed]");
return 1;
}
/* try out some modes */
static const isl29125_mode_t modes[] = {
ISL29125_MODE_DOWN, ISL29125_MODE_STANDBY, ISL29125_MODE_RGB,
ISL29125_MODE_R, ISL29125_MODE_G, ISL29125_MODE_B,
ISL29125_MODE_RG, ISL29125_MODE_GB};
static const char* mode_names[] = {
"ISL29125_MODE_DOWN", "ISL29125_MODE_STANDBY", "ISL29125_MODE_RGB",
"ISL29125_MODE_R", "ISL29125_MODE_G", "ISL29125_MODE_B",
"ISL29125_MODE_RG", "ISL29125_MODE_GB"};
for (int i = 0; i < sizeof(modes); i++) {
printf("Setting mode %s\n", mode_names[i]);
isl29125_set_mode(&dev, modes[i]);
xtimer_usleep(SLEEP);
isl29125_read_rgb_color(&dev, &data8bit);
printf("RGB value: (%3i / %3i / %3i) 8 bit\n",
data8bit.r, data8bit.g, data8bit.b);
}
puts("Resetting mode to RGB and reading continuously");
isl29125_set_mode(&dev, ISL29125_MODE_RGB);
xtimer_usleep(SLEEP);
while (1) {
isl29125_read_rgb_lux(&dev, &data);
printf("RGB value: (%5i / %5i / %5i) lux\n",
(int)data.red, (int)data.green, (int)data.blue);
xtimer_usleep(SLEEP);
}
return 0;
}