forked from microsoft/microcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tooltips.ts
138 lines (138 loc) · 3.01 KB
/
tooltips.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// auto-generated, run 'node scripts/lochex.mjs' to refresh
namespace microcode {
export const lang = "en"
export const font = image.font8
export const tooltips: any = {
"tagline": "for micro:bit V2",
"sensors": "when...",
"actuators": "do...",
"when": "when",
"do": "do",
"connect": "connect",
"S1": "page start",
"S2": "press",
"S2B": "release",
"S3": "move",
"S4": "timer",
"S5": "light",
"S6": "temperature",
"S7": "radio receive",
"S8": "hear",
"S9A": "variable X changed",
"S9B": "variable Y changed",
"S9C": "variable Z changed",
"S10": "magnet",
"S11": "slider",
"S12": "dial",
"rule": "rule",
"add_rule": "add rule",
"delete_rule": "delete rule",
"arith_equals": "equals",
"arith_plus": "plus",
"disk": "save",
"load": "load",
"F0": "touch pin 0",
"F1": "touch pin 1",
"F2": "touch pin 2",
"F3": "button A",
"F4": "button B",
"F5": "key 1",
"F6": "key 2",
"F7": "logo",
"F8": "1",
"F9": "2",
"F10": "3",
"F11": "4",
"F12": "5",
"F13": "1/4 second",
"F14": "1 second",
"F18": "1 random second",
"F19": "5 seconds",
"F15": "loud",
"F16": "quiet",
"F17_shake": "shake",
"F17_tilt_up": "tilt up",
"F17_tilt_down": "tilt down",
"F17_tilt_left": "tilt left",
"F17_tilt_right": "tilt right",
"F20A": "variable X",
"F20B": "variable Y",
"F20C": "variable Z",
"F21L": "turn left",
"F21R": "turn right",
"F22U": "warmer",
"F22D": "colder",
"C0": "edit",
"C1": "samples",
"A1": "switch page",
"A2": "play sound",
"A3": "microphone",
"A4": "music",
"A5": "show image",
"A6": "radio send",
"A6A": "radio set group",
"A7": "random number",
"A10": "show number",
"M1": "page 1",
"M2": "page 2",
"M3": "page 3",
"M4": "page 4",
"M5": "page 5",
"M6": "1",
"M7": "2",
"M8": "3",
"M9": "4",
"M10": "5",
"M15": "LED image",
"M18": "music",
"M19giggle": "giggle",
"M19happy": "happy",
"M19hello": "hello",
"M19mysterious": "mysterious",
"M19sad": "sad",
"M19slide": "slide",
"M19soaring": "soaring",
"M19spring": "spring",
"M19twinkle": "twinkle",
"M19yawn": "yawn",
"M20A": "variable X",
"M20B": "variable Y",
"M20C": "variable Z",
"M21": "radio value",
"M22": "dice",
"M23": "repeat",
"M24": "melody",
"M25": "temperature",
"A8": "LED",
"A9A": "set variable X",
"A9B": "set variable Y",
"A9C": "set variable Z",
"N1": "new program",
"N2": "flashing heart",
"N3": "smiley buttons",
"N4": "pet hamster",
"N5": "chuck a duck",
"N6": "reaction time",
"N7": "hot potato",
"N8": "rock paper scissors",
"N9": "head or tail",
"N10": "clap lights",
"N11": "firefly",
"N12": "railroad crossing",
"N13": "7 seconds clap",
"N14": "counter",
"A20_1": "red",
"A20_2": "green",
"A20_3": "blue",
"A20_4": "purple",
"A20_5": "yellow",
"A20_6": "black",
"A20_rainbow": "rainbow",
"A20_sparkle": "sparkle",
"A21_": "servo set angle",
"SR_LED": "LED {x} {y} {state}",
"SR_NOTE": "note {index} {state}",
"SR_ON": "on",
"SR_OFF": "off"
}
}