forked from emakefun/pxt-magicbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
enums.d.ts
74 lines (69 loc) · 1.1 KB
/
enums.d.ts
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
// Auto-generated. Do not edit.
declare const enum Pins {
P0 = 3,
P1 = 2,
P2 = 1,
P3 = 4,
P4 = 5,
P5 = 17,
P6 = 12,
P7 = 11,
P8 = 18,
P9 = 10,
P10 = 6,
P11 = 26,
P12 = 20,
P13 = 23,
P14 = 22,
P15 = 21,
P16 = 16,
P19 = 0,
P20 = 30,
}
declare const enum RemoteButton {
//% block=A
A = 0x45,
//% block=B
B = 0x46,
//% block=C
C = 0x47,
//% block=D
D = 0x44,
//% block=UP
UP = 0x40,
//% block=+
Add = 0x43,
//% block=LEFT
Left = 0x07,
//% block=OK
Ok = 0x15,
//% block=RIGHT
Right = 0x09,
//% block=DOWN
Down = 0x19,
//% block=-
EQ = 0x0d,
//% block=0
NUM0 = 0x16,
//% block=1
NUM1 = 0x0c,
//% block=2
NUM2 = 0x18,
//% block=3
NUM3 = 0x5e,
//% block=4
NUM4 = 0x8,
//% block=5
NUM5 = 0x1c,
//% block=6
NUM6 = 0x5a,
//% block=7
NUM7 = 0x42,
//% block=8
NUM8 = 0x52,
//% block=9
NUM9 = 0x4A,
}
declare namespace IrRemote {
}
// Auto-generated. Do not edit. Really.