forked from thijsbekke/Arduino_IR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIRLight.h
More file actions
57 lines (50 loc) · 1.01 KB
/
IRLight.h
File metadata and controls
57 lines (50 loc) · 1.01 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
#ifndef IRLight_h
#define IRLight_h
#include "IRTransmitter.h"
/**
Send IR codes to remote devices
*/
class IRLight : public IRTransmitter {
public:
IRLight(int IRledPin);
/**
* Send on signal to the TV
*/
void on();
/**
* Send off signal to the TV
*/
void off();
/**
* Send bright command
*/
void bright();
/**
* Send darker command
*/
void darker();
/**
* Send sed signal
*/
void red();
void green();
void blue();
void white();
void tomato();
void dark_orange();
void orange();
void yellow();
void lime();
void cyan();
void turquoise();
void dark_turquoise();
void royal_blue();
void dark_violet();
void purple();
void pink();
void flash();
void strobe();
void fade();
void smooth();
};
#endif