-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
72 lines (59 loc) · 1.03 KB
/
main.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
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include "events.h"
#define RED 82
#define GREEN 71
#define BLUE 66
#define LEDS 10
int leds[LEDS];
void printLEDs() {
int i = 0;
printf("\r");
for(; i < LEDS; i++) {
printf("[%c]", leds[i]);
}
printf("\n");
fflush(stdout);
sleep(1);
}
void clearLEDs() {
int i = 0;
for(; i < LEDS; i++) {
leds[i] = 32;
}
}
void colorRed(unsigned from, unsigned to) {
int i = from;
for(;i <= to; i++) {
leds[i] = RED;
}
}
void colorBlue(unsigned from, unsigned to) {
int i = from;
for(;i <= to; i++) {
leds[i] = BLUE;
}
}
void WhoopWhoopSoundOfDaPolice(unsigned from, unsigned to) {
int i = from;
for(;i <= to; i++) {
if(leds[i] == BLUE)
leds[i] = RED;
else
leds[i] = BLUE;
}
recallEvent(2);
}
int main() {
//Setup LEDs
clearLEDs();
colorBlue(0, 4);
colorRed(5,9);
//Setup Event & register wvents
initEvent(printLEDs);
registerEvent(WhoopWhoopSoundOfDaPolice, 0, 4, 0);
registerEvent(WhoopWhoopSoundOfDaPolice, 5, 9, 1);
eventLoop();
return 0;
}