-
Notifications
You must be signed in to change notification settings - Fork 1
/
beamer_control.ino
104 lines (98 loc) · 2.38 KB
/
beamer_control.ino
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
#include <IRremote.h>
int incomingByte = 0;
IRsend irsend;
void setup() {
Serial.begin(9600);
}
void loop() {
// send data only when you receive data:
if (Serial.available() > 0) {
// read the incoming byte:
incomingByte = Serial.read();
switch (incomingByte) {
case 'p': // power
irsend.sendNEC(0x10C8E11E,32);
break;
case 'd': // 3d
irsend.sendNEC(0x10C851AE,32);
break;
case 'h': // hide
irsend.sendNEC(0x10C8F10E,32);
break;
case 'a': // Aspect
irsend.sendNEC(0x10C806F9,32);
break;
case 'r': // resync
irsend.sendNEC(0x10C8B14E,32);
break;
case 's': // source
irsend.sendNEC(0x10C831CE,32);
break;
case 'z': // zoom
irsend.sendNEC(0x10C8D12E,32);
break;
case 'n': // mute
irsend.sendNEC(0x10C88679,32);
break;
case 'e': // eeeee
irsend.sendNEC(0x10C801FE,32);
break;
case 'o': // up
irsend.sendNEC(0x10C841BE,32);
break;
case 'k': // left
irsend.sendNEC(0x10C8C13E,32);
break;
case ' ': // menu
irsend.sendNEC(0x10C821DE,32);
break;
case 'l': // right
irsend.sendNEC(0x10C8817E,32);
break;
case ',': // Down
irsend.sendNEC(0x10C8A15E,32);
break;
case '1': // 1
irsend.sendNEC(0x10C85AA5,32);
break;
case '2': // 2
irsend.sendNEC(0x10C8DA25,32);
break;
case '3': // 3
irsend.sendNEC(0x10C83AC5,32);
break;
case '#': // PgUp
irsend.sendNEC(0x10C8BA45,32);
break;
case '4': // 4
irsend.sendNEC(0x10C8A659,32);
break;
case '5': // 5
irsend.sendNEC(0x10C86699,32);
break;
case '6': // 6
irsend.sendNEC(0x10C8E619,32);
break;
case '-': // PgDn
irsend.sendNEC(0x10C87986,32);
break;
case '7': // 7
irsend.sendNEC(0x10C87A85,32);
break;
case '8': // 8
irsend.sendNEC(0x10C852AD,32);
break;
case '9': // 9
irsend.sendNEC(0x10C8D22D,32);
break;
case '0': // 0
irsend.sendNEC(0x10C8FA05,32);
break;
default:
Serial.print("I received: ");
Serial.println(incomingByte, DEC);
break;
}
delay(1000);
}
}