-
Notifications
You must be signed in to change notification settings - Fork 0
/
sendTest_418_Works.ino
41 lines (40 loc) · 1.65 KB
/
sendTest_418_Works.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
//**************
//IR sent demo v1.0
//Connect the IR sent pins to D3 for this demo
//By:http://www.seeedstudio.com/
//******************************
#include <IRSendRev.h>
void setup()
{
//enableIROut(38);
}
//unsigned char d[] = {9, 90, 91, 11, 31, 4, 1, 2, 3, 4};
unsigned char a[] = {15, 70, 70, 20, 60, 10, 1, 2, 3, 4, 5, 6, 7, 1, 0, 0};
unsigned char b[] = {15, 70, 70, 20, 60, 10, 1, 2, 3, 4, 5, 6, 7, 0, 1, 0};
unsigned char c[] = {15, 70, 70, 20, 60, 10, 1, 2, 3, 4, 5, 6, 7, 0, 0, 1};
unsigned char d[] = {15, 70, 70, 20, 60, 10, 1, 2, 3, 4, 5, 6, 7, 1, 1, 0};
unsigned char e[] = {15, 70, 70, 20, 60, 10, 1, 2, 3, 4, 5, 6, 7, 0, 1, 1};
unsigned char f[] = {15, 70, 70, 20, 60, 10, 1, 2, 3, 4, 5, 6, 7, 1, 1, 1};
//Very Important:
//the first parameter(15): the data that needs to be sent;
//the next 2 parameter(70,70): the logic high and low duration of "Start";
//the next 2 parameter(20,60): the logic "short" and "long"duration in the communication
// that to say: if "0", the high duration is 20ms and low is 20 ms; while logic "1",
// the high duration is 20 ms and low is 60 ms;
//the next 2 parameter(10): number of data you will sent;
//the next parameter(1, 2, 3, 4,5,6,7,8,9,10): data you will sent ;
void loop()
{
IR.Send(a, 38);//sent the data via 38Kz IR
delay(1000);
IR.Send(b, 38);//sent the data via 38Kz IR
delay(1000);
IR.Send(c, 38);//sent the data via 38Kz IR
delay(1000);
IR.Send(d, 38);//sent the data via 38Kz IR
delay(1000);
IR.Send(e, 38);//sent the data via 38Kz IR
delay(1000);
IR.Send(f, 38);//sent the data via 38Kz IR
delay(1000);
}