-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCAMcodes.c
executable file
·89 lines (71 loc) · 1.64 KB
/
CAMcodes.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
#include <avr/io.h>
#include <avr/pgmspace.h>
#include "main.h"
//Codes captured from Generation 3 TV-B-Gone by Limor Fried & Mitch Altman
// table of POWER codes
// 2000, 27850,
// 390, 1580,
// 410, 3580,
// 400, 63200,
#ifdef NA_CODES
const uint16_t code_nikon000Times[] PROGMEM = {
39, 158,
40, 6320,
41, 358,
200, 2785,
};
const struct IrCode code_nikon000Code PROGMEM = {
freq_to_timerval(38000),
8, // # of pairs
2, // # of bits per index
code_nikon000Times,
{
0xC9,
0XC9,
}
};
const uint16_t code_canon000Times[] PROGMEM = {
11,11,
11,7330,
};
const struct IrCode code_canon000Code PROGMEM = {
freq_to_timerval(38000),
36, // # of pairs
2, // # of bits per index
code_canon000Times,
{
0x00,
0x00,
0x00,
0x00,
0x40,
0x00,
0x00,
0x00,
0x00,
}
};
const uint16_t code_pentax000Times[] PROGMEM = {
100,100,
1300,300,
};
const struct IrCode code_pentax000Code PROGMEM = {
freq_to_timerval(38000),
8, // # of pairs
2, // # of bits per index
code_pentax000Times,
{
0x40,
0x00,
}
};
#endif
////////////////////////////////////////////////////////////////
const struct IrCode * const NApowerCodes[] PROGMEM = {
#ifdef NA_CODES
&code_nikon000Code,
&code_canon000Code,
&code_pen tax000Code,
#endif
};
const uint8_t num_NAcodes = NUM_ELEM(NApowerCodes);