-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlivingAmbilight.c
142 lines (127 loc) · 3.99 KB
/
livingAmbilight.c
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
*
* Copyright (c) 2014 Jeremy Garff <jer @ jers.net>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted
* provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
* 3. Neither the name of the owner nor the names of its contributors may be used to endorse
* or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <time.h>
#include <stdarg.h>
#include <fcntl.h>
#include <getopt.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <linux/i2c-dev.h>
#include <sys/ioctl.h>
#include <wiringPi.h>
#include "../rpi_ws281x/clk.h"
#include "../rpi_ws281x/gpio.h"
#include "../rpi_ws281x/dma.h"
#include "../rpi_ws281x/pwm.h"
#include "../rpi_ws281x/ws2811.h"
int clear_on_exit = 1;
static uint8_t running = 1;
static uint8_t loop = 1;
int ro, gr, bl;
#include "parameter.h"
#include "funktion.h"
#include "colorSensor.h"
int main(void)
{
int unixCounter = 60;
char OUT[100], version[100], datum[100];
makeUnixtime();
DEBUG("\n### Neustart ###\n");
readVersion (version, datum);
snprintf(OUT, (size_t)100, "Version: %s Datum: %s\n", version, datum);
printf("%s", OUT);
DEBUG(OUT);
// LED on TCS34725
ledColorSensor(LOW);
// init ws281x
ws2811_return_t ret;
setup_handlers();
if ((ret = ws2811_init(&ledstring)) != WS2811_SUCCESS){
fprintf(stderr, "ws2811_init failed: %s\n", ws2811_get_return_t_str(ret));
return ret;
}
ro = 120;
gr = 60;
bl = 30;
unsigned long rgbHEX;
// Create I2C bus
int fp;
while (running) {
// Starttime DEBUG
time_t currentTime = time(NULL);
struct tm *now;
time( ¤tTime );
now = localtime( ¤tTime );
strftime (OUT,100,"I2C Init %H:%M:%S ",now);
DEBUG(OUT);
// init ColorSensor
fp = initColorSensor(fp);
if (fp != -1){
while (loop) {
// read RGB from ColorSensor
readColorSensor(fp, unixCounter);
// make HEX for LED
rgbHEX = rgbColor(ro,gr,bl);
// set LED
int led_c;
for (led_c = 0; led_c < LED_COUNT; led_c++) {
ledstring.channel[0].leds[led_c] = rgbHEX;
}
// send to LED
ws2811_render(&ledstring);
// Watchdog LED
if (unixCounter >= 60){
int AktuallTime = time(NULL);
writeUnixtime(UnixtimeLED, AktuallTime);
unixCounter = 0;
}
unixCounter ++;
// looptime
sleep(1);
// DEBUG.txt speichern um 00:00 Uhr in DEBUG/"datum".txt
checkDEBUG();
}
}
close(fp);
DEBUG("\n");
}
if (clear_on_exit) {
clearAll();
ws2811_render(&ledstring);
}
ws2811_fini(&ledstring);
return 0;
}