pxt-microbit 6.1.10 → 7.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/built/block-tests.js +1 -1
- package/built/common-sim.d.ts +104 -0
- package/built/common-sim.js +405 -29
- package/built/editor.js +0 -1
- package/built/fieldeditors.js +64 -11
- package/built/sim.js +1 -0
- package/built/target.js +1 -1
- package/built/target.json +1 -1
- package/built/targetlight.json +1 -1
- package/built/theme.json +1 -1
- package/built/web/rtlsemantic.css +2 -2
- package/built/web/semantic.css +2 -2
- package/docs/device/reactive.md +36 -27
- package/docs/extensions/extension-gallery.md +1071 -0
- package/docs/extensions.md +41 -1038
- package/package.json +3 -3
- package/pxtarget.json +2 -1
- package/targetconfig.json +16 -0
- package/built/web/react-common-teachertool.css +0 -13
- package/built/web/rtlreact-common-teachertool.css +0 -13
package/docs/extensions.md
CHANGED
|
@@ -1,1067 +1,70 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Extensions
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Extensions are functional code modules that are installed from outside the MakeCode editor and plug new blocks into the **Toolbox**. These blocks are created by other authors or organizations to do things from simplifying coding tasks to working with hardware devices.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
### ~ reminder
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
#### Extensions were known as "Packages"
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
[{
|
|
11
|
-
"name": "Display",
|
|
12
|
-
"url": "/extensions#display",
|
|
13
|
-
"cardType": "link"
|
|
14
|
-
}, {
|
|
15
|
-
"name": "Electronics",
|
|
16
|
-
"url": "/extensions#electronics",
|
|
17
|
-
"cardType": "link"
|
|
18
|
-
}, {
|
|
19
|
-
"name": "Gaming",
|
|
20
|
-
"url": "/extensions#gaming",
|
|
21
|
-
"cardType": "link"
|
|
22
|
-
}, {
|
|
23
|
-
"name": "Individual sensors",
|
|
24
|
-
"url": "/extensions#individual-sensors",
|
|
25
|
-
"cardType": "link"
|
|
26
|
-
}, {
|
|
27
|
-
"name": "IoT",
|
|
28
|
-
"url": "/extensions#iot",
|
|
29
|
-
"cardType": "link"
|
|
30
|
-
}, {
|
|
31
|
-
"name": "Kits",
|
|
32
|
-
"url": "/extensions#kits",
|
|
33
|
-
"cardType": "link"
|
|
34
|
-
}, {
|
|
35
|
-
"name": "LEDs and lights",
|
|
36
|
-
"url": "/extensions#leds-and-lights",
|
|
37
|
-
"cardType": "link"
|
|
38
|
-
}, {
|
|
39
|
-
"name": "Machine learning",
|
|
40
|
-
"url": "/extensions#machine-learning",
|
|
41
|
-
"cardType": "link"
|
|
42
|
-
}, {
|
|
43
|
-
"name": "Robotics",
|
|
44
|
-
"url": "/extensions#robotics",
|
|
45
|
-
"cardType": "link"
|
|
46
|
-
}, {
|
|
47
|
-
"name": "Sensor boards",
|
|
48
|
-
"url": "/extensions#sensor-boards",
|
|
49
|
-
"cardType": "link"
|
|
50
|
-
}, {
|
|
51
|
-
"name": "Sound",
|
|
52
|
-
"url": "/extensions#sound",
|
|
53
|
-
"cardType": "link"
|
|
54
|
-
}, {
|
|
55
|
-
"name": "Wearables",
|
|
56
|
-
"url": "/extensions#wearables",
|
|
57
|
-
"cardType": "link"
|
|
58
|
-
}, {
|
|
59
|
-
"name": "Utilities",
|
|
60
|
-
"url": "/extensions#utilities",
|
|
61
|
-
"cardType": "link"
|
|
62
|
-
}]
|
|
63
|
-
```
|
|
9
|
+
**Extensions** were previously called **Packages** in MakeCode.
|
|
64
10
|
|
|
65
|
-
|
|
11
|
+
### ~
|
|
66
12
|
|
|
67
|
-
|
|
68
|
-
[{
|
|
69
|
-
"name": "Joy-IT RB-TFT1.8",
|
|
70
|
-
"url": "/pkg/joy-it/pxt-RB-TFT1.8",
|
|
71
|
-
"cardType": "package"
|
|
72
|
-
}, {
|
|
73
|
-
"name": "Kitronik 128x64 Display",
|
|
74
|
-
"url": "/pkg/KitronikLtd/pxt-kitronik-128x64Display",
|
|
75
|
-
"cardType": "package"
|
|
76
|
-
}, {
|
|
77
|
-
"name": "Monk Makes 7-Segment",
|
|
78
|
-
"url": "/pkg/monkmakes/monkmakes-7-segment",
|
|
79
|
-
"cardType": "package"
|
|
80
|
-
}, {
|
|
81
|
-
"name": "Pimoroni inky:bit",
|
|
82
|
-
"url": "/pkg/pimoroni/pxt-inkybit",
|
|
83
|
-
"cardType": "package"
|
|
84
|
-
}, {
|
|
85
|
-
"name": "Kitronik :VIEW text32",
|
|
86
|
-
"url": "/pkg/KitronikLtd/pxt-kitronik-viewtext32",
|
|
87
|
-
"cardType": "package"
|
|
88
|
-
}, {
|
|
89
|
-
"name": "XinaBox OD01 Display",
|
|
90
|
-
"url":"/pkg/xinabox/pxt-OD01",
|
|
91
|
-
"cardType": "package"
|
|
92
|
-
}, {
|
|
93
|
-
"name": "Tinkertanker ssd1306 OLED",
|
|
94
|
-
"url":"/pkg/Tinkertanker/pxt-oled-ssd1306",
|
|
95
|
-
"cardType": "package"
|
|
96
|
-
}, {
|
|
97
|
-
"name": "Tinkertanker ssd1306 OLED with reset pin",
|
|
98
|
-
"url":"/pkg/Tinkertanker/pxt-oled-ssd1306",
|
|
99
|
-
"cardType": "package"
|
|
100
|
-
}, {
|
|
101
|
-
"name": "Muselab ssd1306 OLED",
|
|
102
|
-
"url":"/pkg/MUSELAB/pxt-muselab-oled-v2",
|
|
103
|
-
"cardType": "package"
|
|
104
|
-
}, {
|
|
105
|
-
"name": "I2C LCD 1602 Display",
|
|
106
|
-
"url": "/pkg/1010Technologies/pxt-makerbit-ir-lcd1602",
|
|
107
|
-
"cardType": "package"
|
|
108
|
-
}]
|
|
109
|
-
```
|
|
13
|
+
## Adding an extension to a project
|
|
110
14
|
|
|
111
|
-
|
|
15
|
+
You can add an extension by going to **Toolbox** and clicking on the **Extensions** category.
|
|
112
16
|
|
|
113
|
-
|
|
114
|
-
[{
|
|
115
|
-
"name": "Kitronik Stop:Bit",
|
|
116
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-stopbit",
|
|
117
|
-
"cardType": "package"
|
|
118
|
-
}, {
|
|
119
|
-
"name": "Kitronik Access:Bit",
|
|
120
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-accessbit",
|
|
121
|
-
"cardType": "package"
|
|
122
|
-
}, {
|
|
123
|
-
"name": "PCA9685 LED controller",
|
|
124
|
-
"url":"/pkg/jdarling/pxt-pca9685",
|
|
125
|
-
"cardType": "package"
|
|
126
|
-
}, {
|
|
127
|
-
"name": "Coolguy expansion board",
|
|
128
|
-
"url":"/pkg/CoolGuy-official/pxt-coolguy",
|
|
129
|
-
"cardType": "package"
|
|
130
|
-
}]
|
|
131
|
-
```
|
|
17
|
+

|
|
132
18
|
|
|
133
|
-
|
|
19
|
+
This will open a window giving you a place to search for extensions. Also, a selection of recommended extensions is shown for you to choose from.
|
|
134
20
|
|
|
135
|
-
|
|
136
|
-
[{
|
|
137
|
-
"name": "Kittenbot JoyFrog",
|
|
138
|
-
"url":"/pkg/KittenBot/pxt-joyfrog",
|
|
139
|
-
"cardType": "package"
|
|
140
|
-
}, {
|
|
141
|
-
"name": "Elecfreaks magic wand",
|
|
142
|
-
"url":"/pkg/elecfreaks/pxt-magicwand",
|
|
143
|
-
"cardType": "package"
|
|
144
|
-
}, {
|
|
145
|
-
"name": "Kitronik :GAME ZIP64",
|
|
146
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-zip-64",
|
|
147
|
-
"cardType": "package"
|
|
148
|
-
}, {
|
|
149
|
-
"name": "Kitronik :GAME Controller",
|
|
150
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-game-controller",
|
|
151
|
-
"cardType": "package"
|
|
152
|
-
}, {
|
|
153
|
-
"name": "Sparkfun Gamer:bit",
|
|
154
|
-
"url":"/pkg/sparkfun/pxt-gamer-bit",
|
|
155
|
-
"cardType": "package"
|
|
156
|
-
}, {
|
|
157
|
-
"name": "4tronix BitCommander",
|
|
158
|
-
"url":"/pkg/4tronix/BitCommander",
|
|
159
|
-
"cardType": "package"
|
|
160
|
-
}, {
|
|
161
|
-
"name": "51bit SFC/NES controller",
|
|
162
|
-
"url":"/pkg/51bit/SFC",
|
|
163
|
-
"cardType": "package"
|
|
164
|
-
}, {
|
|
165
|
-
"name": "Pimoroni touch:bit",
|
|
166
|
-
"url":"/pkg/pimoroni/pxt-touchbit",
|
|
167
|
-
"cardType": "package"
|
|
168
|
-
}, {
|
|
169
|
-
"name": "ALS Robot JoyBit",
|
|
170
|
-
"url":"/pkg/alsrobot-microbit-makecode-packages/ALSRobotJoyBit",
|
|
171
|
-
"cardType": "package"
|
|
172
|
-
}]
|
|
173
|
-
```
|
|
21
|
+

|
|
174
22
|
|
|
175
|
-
|
|
23
|
+
When you select an extension, you should see the new extension category appear in the Toolbox of your project.
|
|
176
24
|
|
|
177
|
-
|
|
178
|
-
[{
|
|
179
|
-
"name": "MonkMakes Plant Monitor",
|
|
180
|
-
"url":"/pkg/monkmakes/plant-monitor-makecode",
|
|
181
|
-
"cardType": "package"
|
|
182
|
-
}, {
|
|
183
|
-
"name": "SGBotic Ultimate SR04",
|
|
184
|
-
"url":"/pkg/SGBotic/pxt-SGBotic-Ultimate-SR04-RGB",
|
|
185
|
-
"cardType": "package"
|
|
186
|
-
}, {
|
|
187
|
-
"name": "TCS3200 Color sensor",
|
|
188
|
-
"url":"/pkg/joy-it/pxt-SEN-Color",
|
|
189
|
-
"cardType": "package"
|
|
190
|
-
}, {
|
|
191
|
-
"name": "MPU6050 Gyroscope",
|
|
192
|
-
"url":"/pkg/joy-it/SEN-MPU6050",
|
|
193
|
-
"cardType": "package"
|
|
194
|
-
}, {
|
|
195
|
-
"name": "DS18B20",
|
|
196
|
-
"url":"/pkg/bsiever/microbit-dstemp",
|
|
197
|
-
"cardType": "package"
|
|
198
|
-
}, {
|
|
199
|
-
"name": "DS18B20 two wire",
|
|
200
|
-
"url":"/pkg/bsiever/microbit-dstemp-2wire",
|
|
201
|
-
"cardType": "package"
|
|
202
|
-
}, {
|
|
203
|
-
"name": "DS3231",
|
|
204
|
-
"url":"/pkg/keble6/pxt-DS3231",
|
|
205
|
-
"cardType": "package"
|
|
206
|
-
}, {
|
|
207
|
-
"name": "Let's Talk Science COZIR sensor",
|
|
208
|
-
"url":"/pkg/letstalkscience/pxt-cozir",
|
|
209
|
-
"cardType": "package"
|
|
210
|
-
}, {
|
|
211
|
-
"name": "MAX6675",
|
|
212
|
-
"url":"/pkg/microsoft/pxt-max6675",
|
|
213
|
-
"cardType": "package"
|
|
214
|
-
}, {
|
|
215
|
-
"name": "Sonar",
|
|
216
|
-
"url":"/pkg/microsoft/pxt-sonar",
|
|
217
|
-
"cardType": "package"
|
|
218
|
-
}, {
|
|
219
|
-
"name": "Non-blocking Ultrasonic Sensing",
|
|
220
|
-
"url":"/pkg/1010Technologies/pxt-makerbit-ultrasonic",
|
|
221
|
-
"cardType": "package"
|
|
222
|
-
}, {
|
|
223
|
-
"name": "HX711 Weight Sensor",
|
|
224
|
-
"url":"/pkg/daferdur/pxt-myHX711",
|
|
225
|
-
"cardType": "package"
|
|
226
|
-
}, {
|
|
227
|
-
"name": "Bluetooth Temperature Sensor",
|
|
228
|
-
"url":"/pkg/microsoft/pxt-bluetooth-temperature-sensor",
|
|
229
|
-
"cardType": "package"
|
|
230
|
-
}, {
|
|
231
|
-
"name": "Bluetooth MAX6675",
|
|
232
|
-
"url":"/pkg/microsoft/pxt-bluetooth-max6675",
|
|
233
|
-
"cardType": "package"
|
|
234
|
-
}, {
|
|
235
|
-
"name": "ky040 rotary",
|
|
236
|
-
"url":"/pkg/Tinkertanker/pxt-rotary-encoder-ky040",
|
|
237
|
-
"cardType": "package"
|
|
238
|
-
}, {
|
|
239
|
-
"name": "GY521",
|
|
240
|
-
"url":"/pkg/PaulDFoster/pxt-microbit-GY521",
|
|
241
|
-
"cardType": "package"
|
|
242
|
-
}, {
|
|
243
|
-
"name": "DHT11 & DHT22 Temperature and Humidity",
|
|
244
|
-
"url":"/pkg/alankrantas/pxt-DHT11_DHT22",
|
|
245
|
-
"cardType": "package"
|
|
246
|
-
}, {
|
|
247
|
-
"name": "gator:light Light sensor",
|
|
248
|
-
"url":"/pkg/sparkfun/pxt-gator-light",
|
|
249
|
-
"cardType": "package"
|
|
250
|
-
}, {
|
|
251
|
-
"name": "gator:temp Temperature Sensor",
|
|
252
|
-
"url":"/pkg/sparkfun/pxt-gator-temp",
|
|
253
|
-
"cardType": "package"
|
|
254
|
-
}, {
|
|
255
|
-
"name": "gator:microphone Microphone",
|
|
256
|
-
"url":"/pkg/sparkfun/pxt-gator-microphone",
|
|
257
|
-
"cardType": "package"
|
|
258
|
-
}, {
|
|
259
|
-
"name": "gator:soil Soil Sensor",
|
|
260
|
-
"url":"/pkg/sparkfun/pxt-gator-soil",
|
|
261
|
-
"cardType": "package"
|
|
262
|
-
}, {
|
|
263
|
-
"name": "gator:temp Particle Sensor",
|
|
264
|
-
"url":"/pkg/sparkfun/pxt-gator-particle",
|
|
265
|
-
"cardType": "package"
|
|
266
|
-
}, {
|
|
267
|
-
"name": "MonkMakes Sensor",
|
|
268
|
-
"url":"/pkg/monkmakes/pxt-sensor",
|
|
269
|
-
"cardType": "package"
|
|
270
|
-
}, {
|
|
271
|
-
"name": "ALS Robot Electromagnet",
|
|
272
|
-
"url":"/pkg/alsrobot-microbit-makecode-packages/ALSRobotElectromagnet",
|
|
273
|
-
"cardType": "package"
|
|
274
|
-
}, {
|
|
275
|
-
"name": "MakerBit Touch MPR121",
|
|
276
|
-
"url": "/pkg/1010Technologies/pxt-makerbit-touch",
|
|
277
|
-
"cardType": "package"
|
|
278
|
-
}, {
|
|
279
|
-
"name": "Keyestudio Infrared Receiver",
|
|
280
|
-
"url": "/pkg/1010Technologies/pxt-makerbit-ir-receiver",
|
|
281
|
-
"cardType": "package"
|
|
282
|
-
}, {
|
|
283
|
-
"name": "BMP280 Barrometer",
|
|
284
|
-
"url": "/pkg/rebeccaclavier/pxt-bmp280",
|
|
285
|
-
"cardType": "package"
|
|
286
|
-
}, {
|
|
287
|
-
"name": "STTS751 temperature Sensor",
|
|
288
|
-
"url": "/pkg/makecode-extensions/STTS751",
|
|
289
|
-
"cardType": "package"
|
|
290
|
-
}, {
|
|
291
|
-
"name": "LSM6DSO Accelerometer/Gyroscope",
|
|
292
|
-
"url": "/pkg/makecode-extensions/LSM6DSO",
|
|
293
|
-
"cardType": "package"
|
|
294
|
-
}, {
|
|
295
|
-
"name": "LPS22 Pressure",
|
|
296
|
-
"url": "/pkg/makecode-extensions/LPS22",
|
|
297
|
-
"cardType": "package"
|
|
298
|
-
}, {
|
|
299
|
-
"name": "LIS2DW12 motion sensor",
|
|
300
|
-
"url": "/pkg/makecode-extensions/LIS2DW12",
|
|
301
|
-
"cardType": "package"
|
|
302
|
-
}, {
|
|
303
|
-
"name": "LIS2MDL magnetic sensor",
|
|
304
|
-
"url": "/pkg/makecode-extensions/LIS2MDL",
|
|
305
|
-
"cardType": "package"
|
|
306
|
-
}, {
|
|
307
|
-
"name": "HTS221 Humidity and temperature",
|
|
308
|
-
"url": "/pkg/makecode-extensions/HTS221",
|
|
309
|
-
"cardType": "package"
|
|
310
|
-
}, {
|
|
311
|
-
"name": "gator:UV UV Light sensor",
|
|
312
|
-
"url":"/pkg/sparkfun/pxt-gator-UV",
|
|
313
|
-
"cardType": "package"
|
|
314
|
-
}, {
|
|
315
|
-
"name": "Sensirion SEN55 (Air Quality) Sensor",
|
|
316
|
-
"url":"/pkg/bsiever/pxt-sen55",
|
|
317
|
-
"cardType": "package"
|
|
318
|
-
}]
|
|
319
|
-
```
|
|
25
|
+

|
|
320
26
|
|
|
321
|
-
|
|
27
|
+
The Toolbox category will contain the extension's blocks, ready for you to use in your project's code.
|
|
322
28
|
|
|
323
|
-
|
|
324
|
-
[{
|
|
325
|
-
"name": "DFRobot IoT Cloud Kit",
|
|
326
|
-
"url":"/pkg/DFRobot/pxt-DFRobot_IoT_Cloud_Kit",
|
|
327
|
-
"cardType": "package"
|
|
328
|
-
}, {
|
|
329
|
-
"name": "iClass IoT",
|
|
330
|
-
"url":"/pkg/KelieLeung/pxt-iClassIoT",
|
|
331
|
-
"cardType": "package"
|
|
332
|
-
}, {
|
|
333
|
-
"name": "Kittenbot Wifi",
|
|
334
|
-
"url":"/pkg/KittenBot/pxt-kittenwifi",
|
|
335
|
-
"cardType": "package"
|
|
336
|
-
}, {
|
|
337
|
-
"name": "ESP8266 AT",
|
|
338
|
-
"url":"/pkg/CytronTechnologies/pxt-esp8266",
|
|
339
|
-
"cardType": "package"
|
|
340
|
-
}, {
|
|
341
|
-
"name": "Wappsto:bit",
|
|
342
|
-
"url":"/pkg/Wappsto/pxt-wappsto",
|
|
343
|
-
"cardType": "package"
|
|
344
|
-
}, {
|
|
345
|
-
"name": "Hardwario IoT Kit",
|
|
346
|
-
"url":"/pkg/hardwario/pxt-microbit-hardwario",
|
|
347
|
-
"cardType": "package"
|
|
348
|
-
}, {
|
|
349
|
-
"name": "Pi Supply Lora Node",
|
|
350
|
-
"url":"/pkg/PiSupply/pxt-iot-lora-node",
|
|
351
|
-
"cardType": "package"
|
|
352
|
-
}, {
|
|
353
|
-
"name": "WiFi:Bit",
|
|
354
|
-
"url":"/pkg/e-radionicacom/pxt-wifi",
|
|
355
|
-
"cardType": "package"
|
|
356
|
-
}, {
|
|
357
|
-
"name": "ESP8266 and ThingSpeak",
|
|
358
|
-
"url":"/pkg/alankrantas/pxt-ESP8266_ThingSpeak",
|
|
359
|
-
"cardType": "package"
|
|
360
|
-
}, {
|
|
361
|
-
"name": "DFRobot microIoT board",
|
|
362
|
-
"url":"/pkg/DFRobot/pxt-DFRobot-microIoT",
|
|
363
|
-
"cardType": "package"
|
|
364
|
-
}, {
|
|
365
|
-
"name": "Muselab WiFi IoT Shield",
|
|
366
|
-
"url":"/pkg/MUSELAB/pxt-wifi-shield",
|
|
367
|
-
"cardType": "package"
|
|
368
|
-
}]
|
|
369
|
-
```
|
|
29
|
+

|
|
370
30
|
|
|
371
|
-
|
|
31
|
+
### ~ hint
|
|
372
32
|
|
|
373
|
-
|
|
374
|
-
[{
|
|
375
|
-
"name": "Smarthon Smart City",
|
|
376
|
-
"url": "/pkg/SMARTHON/pxt-smartcity",
|
|
377
|
-
"cardType": "package"
|
|
378
|
-
}, {
|
|
379
|
-
"name": "HacKids hack:bit",
|
|
380
|
-
"url": "/pkg/HackidsEdu/pxt-hackbit",
|
|
381
|
-
"cardType": "package"
|
|
382
|
-
}, {
|
|
383
|
-
"name": "KittenBot Sugar",
|
|
384
|
-
"url": "/pkg/KittenBot/pxt-sugar",
|
|
385
|
-
"cardType": "package"
|
|
386
|
-
}, {
|
|
387
|
-
"name": "KittenBot Powerbrick",
|
|
388
|
-
"url": "/pkg/KittenBot/pxt-powerbrick",
|
|
389
|
-
"cardType": "package"
|
|
390
|
-
}, {
|
|
391
|
-
"name": "Kitronik LAB:bit",
|
|
392
|
-
"url": "/pkg/KitronikLtd/pxt-kitronik-lab-bit",
|
|
393
|
-
"cardType": "package"
|
|
394
|
-
}, {
|
|
395
|
-
"name": "PT-BOT PTKidsBIT",
|
|
396
|
-
"url": "/pkg/iBuilds/pxt-PTKidsBIT",
|
|
397
|
-
"cardType": "package"
|
|
398
|
-
}, {
|
|
399
|
-
"name": "Stemhub City",
|
|
400
|
-
"url": "/pkg/stemhub/pxt-StemhubCity",
|
|
401
|
-
"cardType": "package"
|
|
402
|
-
}, {
|
|
403
|
-
"name": "Tinkercademy Tinker:Kit",
|
|
404
|
-
"url": "/pkg/Tinkertanker/pxt-tinkercademy-tinker-kit",
|
|
405
|
-
"cardType": "package"
|
|
406
|
-
}, {
|
|
407
|
-
"name": "Freenove Starter Kit",
|
|
408
|
-
"url": "/pkg/Freenove/Makecode-Extension-Starter-Kit",
|
|
409
|
-
"cardType": "package"
|
|
410
|
-
}, {
|
|
411
|
-
"name": "Elecfreaks PlanetX sensor kit",
|
|
412
|
-
"url":"/pkg/elecfreaks/pxt-PlanetX",
|
|
413
|
-
"cardType": "package"
|
|
414
|
-
}, {
|
|
415
|
-
"name": "Inksmith Climate Action Kit: Land",
|
|
416
|
-
"url":"/pkg/climate-action-kits/pxt-climate-action-kit-land",
|
|
417
|
-
"cardType": "package"
|
|
418
|
-
}, {
|
|
419
|
-
"name": "Inksmith Climate Action Kit: Energy",
|
|
420
|
-
"url":"/pkg/climate-action-kits/pxt-climate-action-kit-land",
|
|
421
|
-
"cardType": "package"
|
|
422
|
-
}, {
|
|
423
|
-
"name": "Grove inventor kit",
|
|
424
|
-
"url":"/pkg/Seeed-Studio/pxt-grove",
|
|
425
|
-
"cardType": "package"
|
|
426
|
-
}, {
|
|
427
|
-
"name": "Minode Kit",
|
|
428
|
-
"url":"/pkg/minodekit/pxt-minode",
|
|
429
|
-
"cardType": "package"
|
|
430
|
-
}, {
|
|
431
|
-
"name": "DFRobot Boson Kit",
|
|
432
|
-
"url":"/pkg/dfrobot/pxt-dfrobot_bosonkit",
|
|
433
|
-
"cardType": "package"
|
|
434
|
-
}, {
|
|
435
|
-
"name": "Joy-IT Joy-Pi Advanced",
|
|
436
|
-
"url":"/pkg/joy-it/pxt-RB-JoyPi-Advanced",
|
|
437
|
-
"cardType": "package"
|
|
438
|
-
}, {
|
|
439
|
-
"name": "FWD Edu Climate Action Kit Gen. 2 Kit",
|
|
440
|
-
"url":"/pkg/climate-action-kits/pxt-fwd-edu",
|
|
441
|
-
"cardType": "package"
|
|
442
|
-
}]
|
|
443
|
-
```
|
|
33
|
+
#### Extension gallery
|
|
444
34
|
|
|
445
|
-
|
|
35
|
+
For a list of extensions within categories, browse the [Extension Gallery](/extensions/extension-gallery).
|
|
446
36
|
|
|
447
|
-
|
|
448
|
-
[{
|
|
449
|
-
"name": "Kitronik Lamp:Bit",
|
|
450
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-lampbit",
|
|
451
|
-
"cardType": "package"
|
|
452
|
-
}, {
|
|
453
|
-
"name": "Kitronik Halo HD",
|
|
454
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-halohd",
|
|
455
|
-
"cardType": "package"
|
|
456
|
-
}, {
|
|
457
|
-
"name": "NeoPixel",
|
|
458
|
-
"url":"/pkg/microsoft/pxt-neopixel",
|
|
459
|
-
"cardType": "package"
|
|
460
|
-
}, {
|
|
461
|
-
"name": "WS2812B",
|
|
462
|
-
"url": "/pkg/microsoft/pxt-ws2812b",
|
|
463
|
-
"cardType": "package"
|
|
464
|
-
}, {
|
|
465
|
-
"name": "4tronix Cube:Bit",
|
|
466
|
-
"url":"/pkg/4tronix/cubebit",
|
|
467
|
-
"cardType": "package"
|
|
468
|
-
}, {
|
|
469
|
-
"name": "51bit ColorBit",
|
|
470
|
-
"url":"/pkg/51bit/ColorBit",
|
|
471
|
-
"cardType": "package"
|
|
472
|
-
}, {
|
|
473
|
-
"name": "Kitronik Zip Tile",
|
|
474
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-zip-tile",
|
|
475
|
-
"cardType": "package"
|
|
476
|
-
}, {
|
|
477
|
-
"name": "MAX7219 8x8",
|
|
478
|
-
"url":"/pkg/alankrantas/pxt-MAX7219_8x8",
|
|
479
|
-
"cardType": "package"
|
|
480
|
-
}]
|
|
481
|
-
```
|
|
37
|
+
### ~
|
|
482
38
|
|
|
483
|
-
##
|
|
39
|
+
## Removing an extension from a project
|
|
484
40
|
|
|
485
|
-
|
|
486
|
-
[{
|
|
487
|
-
"name": "Kocoafab COCOCAM",
|
|
488
|
-
"url":"/pkg/ekkai/aicococam",
|
|
489
|
-
"cardType": "package"
|
|
490
|
-
}, {
|
|
491
|
-
"name": "KittenBot KOI AI module",
|
|
492
|
-
"url":"/pkg/KittenBot/pxt-koi",
|
|
493
|
-
"cardType": "package"
|
|
494
|
-
}, {
|
|
495
|
-
"name": "Elecfreaks Smart AI Lens",
|
|
496
|
-
"url":"/pkg/elecfreaks/pxt-PlanetX-AI",
|
|
497
|
-
"cardType": "package"
|
|
498
|
-
}, {
|
|
499
|
-
"name": "MU Vision camera",
|
|
500
|
-
"url":"/pkg/mu-opensource/pxt-muvision",
|
|
501
|
-
"cardType": "package"
|
|
502
|
-
}, {
|
|
503
|
-
"name": "DFRobot HuskyLens",
|
|
504
|
-
"url":"/pkg/DFRobot/pxt-DFRobot_HuskyLens",
|
|
505
|
-
"cardType": "package"
|
|
506
|
-
}]
|
|
507
|
-
```
|
|
508
|
-
## Robotics
|
|
41
|
+
To remove an extension from a project, click on the Language toggle to move the project into **JavaScript** or **Python** view. Then expand the **Explorer** view under the micro:bit simulator. Click on the **Delete** button next to the extension you would like to remove.
|
|
509
42
|
|
|
510
|
-
|
|
511
|
-
[{
|
|
512
|
-
"name": "Roversa",
|
|
513
|
-
"url":"/pkg/eb8ga/pxt-roversa-2",
|
|
514
|
-
"cardType": "package"
|
|
515
|
-
}, {
|
|
516
|
-
"name": "4tronix M.A.R.S. Rover",
|
|
517
|
-
"url":"/pkg/4tronix/mars-rover",
|
|
518
|
-
"cardType": "package"
|
|
519
|
-
}, {
|
|
520
|
-
"name": "Cytron MOTION:BIT",
|
|
521
|
-
"url":"/pkg/CytronTechnologies/pxt-motionbit",
|
|
522
|
-
"cardType": "package"
|
|
523
|
-
}, {
|
|
524
|
-
"name": "MAKE&LEARN Didacbot",
|
|
525
|
-
"url":"/pkg/MakeAndLearn/pxt-didacbot",
|
|
526
|
-
"cardType": "package"
|
|
527
|
-
}, {
|
|
528
|
-
"name": "Resolute Apprentice Car",
|
|
529
|
-
"url":"/pkg/resolute-support/pxt-apprentice_Car",
|
|
530
|
-
"cardType": "package"
|
|
531
|
-
}, {
|
|
532
|
-
"name": "Elecfreaks XGO",
|
|
533
|
-
"url":"/pkg/elecfreaks/pxt-xgo",
|
|
534
|
-
"cardType": "package"
|
|
535
|
-
}, {
|
|
536
|
-
"name": "Robotixlab Theta",
|
|
537
|
-
"url":"/pkg/4tronix/Theta",
|
|
538
|
-
"cardType": "package"
|
|
539
|
-
}, {
|
|
540
|
-
"name": "Kitronik :CREATE Simple Servo Control Board",
|
|
541
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-simple-servo",
|
|
542
|
-
"cardType": "package"
|
|
543
|
-
}, {
|
|
544
|
-
"name": "Kittenbot miniLFR",
|
|
545
|
-
"url":"/pkg/KittenBot/pxt-minilfr",
|
|
546
|
-
"cardType": "package"
|
|
547
|
-
}, {
|
|
548
|
-
"name": "Cytron ZOOM:BIT",
|
|
549
|
-
"url":"/pkg/CytronTechnologies/pxt-zoombit",
|
|
550
|
-
"cardType": "package"
|
|
551
|
-
}, {
|
|
552
|
-
"name": "Kid Spark Spark:bit",
|
|
553
|
-
"url":"/pkg/KidSpark/pxt-sparkbit",
|
|
554
|
-
"cardType": "package"
|
|
555
|
-
}, {
|
|
556
|
-
"name": "BPI TriodeCar",
|
|
557
|
-
"url":"/pkg/BPI-STEAM/pxt-triodecar",
|
|
558
|
-
"cardType": "package"
|
|
559
|
-
}, {
|
|
560
|
-
"name": "ArtecRobo Kit",
|
|
561
|
-
"url":"/pkg/artec-kk/pxt-artecrobo-kit",
|
|
562
|
-
"cardType": "package"
|
|
563
|
-
}, {
|
|
564
|
-
"name": "Elecfreaks DRONE:BIT",
|
|
565
|
-
"url":"/pkg/elecfreaks/pxt-Dronebit/",
|
|
566
|
-
"cardType": "package"
|
|
567
|
-
}, {
|
|
568
|
-
"name": "MakeKit Hoverbit",
|
|
569
|
-
"url":"/pkg/gomakekit/Hoverbit_V2",
|
|
570
|
-
"cardType": "package"
|
|
571
|
-
}, {
|
|
572
|
-
"name": "Stemhubbit car",
|
|
573
|
-
"url":"/pkg/stemhub/pxt-Stemhubbit",
|
|
574
|
-
"cardType": "package"
|
|
575
|
-
}, {
|
|
576
|
-
"name": "MATRIX Micro",
|
|
577
|
-
"url":"/pkg/pxt-MatrixMicro",
|
|
578
|
-
"cardType": "package"
|
|
579
|
-
}, {
|
|
580
|
-
"name": "PTKidsBIT",
|
|
581
|
-
"url":"/pkg/iBuilds/pxt-PTKidsBIT-Robot",
|
|
582
|
-
"cardType": "package"
|
|
583
|
-
}, {
|
|
584
|
-
"name": "Finch 2.0",
|
|
585
|
-
"url":"/pkg/BirdBrainTechnologies/pxt-finch",
|
|
586
|
-
"cardType": "package"
|
|
587
|
-
}, {
|
|
588
|
-
"name": "Bouw je BEP",
|
|
589
|
-
"url":"/pkg/Bouw-je-BEP/Bouw-je-BEP",
|
|
590
|
-
"cardType": "package"
|
|
591
|
-
}, {
|
|
592
|
-
"name": "DF Robot Maqueen Plus",
|
|
593
|
-
"url":"/pkg/DFRobot/pxt-DFRobot-Maqueenplus",
|
|
594
|
-
"cardType": "package"
|
|
595
|
-
}, {
|
|
596
|
-
"name": "DF Robot Maqueen Plus V2",
|
|
597
|
-
"url":"/pkg/DFRobot/pxt-DFRobot_MaqueenPlus_v20",
|
|
598
|
-
"cardType": "package"
|
|
599
|
-
}, {
|
|
600
|
-
"name": "Joy IT Joy Car",
|
|
601
|
-
"url":"/pkg/joy-it/Joy-Car",
|
|
602
|
-
"cardType": "package"
|
|
603
|
-
}, {
|
|
604
|
-
"name": "Kitronik :MOVE Motor",
|
|
605
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-move-motor",
|
|
606
|
-
"cardType": "package"
|
|
607
|
-
}, {
|
|
608
|
-
"name": "A4 Technologies CODO",
|
|
609
|
-
"url":"/pkg/CODOmicrobit/pxt-CODO",
|
|
610
|
-
"cardType": "package"
|
|
611
|
-
}, {
|
|
612
|
-
"name": "Strawbees Robotic Inventions Kit",
|
|
613
|
-
"url":"/pkg/strawbees/pxt-robotic-inventions",
|
|
614
|
-
"cardType": "package"
|
|
615
|
-
}, {
|
|
616
|
-
"name": "Kitronik :MOVE mini",
|
|
617
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-servo-lite",
|
|
618
|
-
"cardType": "package"
|
|
619
|
-
}, {
|
|
620
|
-
"name": "Kitronik Integrated Robotics Board",
|
|
621
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-robotics-board",
|
|
622
|
-
"cardType": "package"
|
|
623
|
-
}, {
|
|
624
|
-
"name": "Kitronik Motor Driver Board",
|
|
625
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-motor-driver",
|
|
626
|
-
"cardType": "package"
|
|
627
|
-
}, {
|
|
628
|
-
"name": "Kitronik 16 Servo Board",
|
|
629
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-i2c-16-servo",
|
|
630
|
-
"cardType": "package"
|
|
631
|
-
}, {
|
|
632
|
-
"name": "YFROBOT Valon",
|
|
633
|
-
"url":"/pkg/YFROBOT-TM/pxt-yfrobot-valon",
|
|
634
|
-
"cardType": "package"
|
|
635
|
-
}, {
|
|
636
|
-
"name": "4tronix BitBot",
|
|
637
|
-
"url":"/pkg/4tronix/BitBot",
|
|
638
|
-
"cardType": "package"
|
|
639
|
-
},{
|
|
640
|
-
"name": "4tronix Orbit",
|
|
641
|
-
"url":"/pkg/4tronix/Orbit",
|
|
642
|
-
"cardType": "package"
|
|
643
|
-
}, {
|
|
644
|
-
"name": "4tronix Drive:Bit",
|
|
645
|
-
"url":"/pkg/4tronix/DriveBit",
|
|
646
|
-
"cardType": "package"
|
|
647
|
-
}, {
|
|
648
|
-
"name": "4tronix Servo:Bit",
|
|
649
|
-
"url":"/pkg/4tronix/ServoBit",
|
|
650
|
-
"cardType": "package"
|
|
651
|
-
}, {
|
|
652
|
-
"name": "4tronix MiniBit",
|
|
653
|
-
"url":"/pkg/4tronix/MiniBit",
|
|
654
|
-
"cardType": "package"
|
|
655
|
-
}, {
|
|
656
|
-
"name": "Elecfreaks TPBot",
|
|
657
|
-
"url":"/pkg/elecfreaks/pxt-TPBot",
|
|
658
|
-
"cardType": "package"
|
|
659
|
-
}, {
|
|
660
|
-
"name": "DF Robot Maqueen",
|
|
661
|
-
"url":"/pkg/DFRobot/pxt-maqueen",
|
|
662
|
-
"cardType": "package"
|
|
663
|
-
}, {
|
|
664
|
-
"name": "Sunfounder Sloth",
|
|
665
|
-
"url":"/pkg/sunfounder/pxt-sloth",
|
|
666
|
-
"cardType": "package"
|
|
667
|
-
}, {
|
|
668
|
-
"name": "Sphero RVR",
|
|
669
|
-
"url":"/pkg/sphero-inc/sphero-sdk-microbit-makecode",
|
|
670
|
-
"cardType": "package"
|
|
671
|
-
}, {
|
|
672
|
-
"name": "Sparkfun Moto:bit",
|
|
673
|
-
"url":"/pkg/sparkfun/pxt-moto-bit",
|
|
674
|
-
"cardType": "package"
|
|
675
|
-
}, {
|
|
676
|
-
"name": "EBOTICS MIBO",
|
|
677
|
-
"url":"/pkg/EBOTICS/pxt-eboticsMIBO",
|
|
678
|
-
"cardType": "package"
|
|
679
|
-
}, {
|
|
680
|
-
"name": "ALSRobot MinCruise",
|
|
681
|
-
"url":"/pkg/alsrobot-microbit-makecode-packages/MiniCruise",
|
|
682
|
-
"cardType": "package"
|
|
683
|
-
}, {
|
|
684
|
-
"name": "ReroKit rero:micro",
|
|
685
|
-
"url":"/pkg/ReRoKit/pxt-reromicro",
|
|
686
|
-
"cardType": "package"
|
|
687
|
-
}, {
|
|
688
|
-
"name": "PLEN bit full",
|
|
689
|
-
"url":"/pkg/plenprojectcompany/pxt-PLENbit_full",
|
|
690
|
-
"cardType": "package"
|
|
691
|
-
}, {
|
|
692
|
-
"name": "PLEN bit",
|
|
693
|
-
"url":"/pkg/plenprojectcompany/pxt-PLENbit",
|
|
694
|
-
"cardType": "package"
|
|
695
|
-
}, {
|
|
696
|
-
"name": "UCL Junk Robot",
|
|
697
|
-
"url":"/pkg/chevyng/pxt-ucl-junkrobot",
|
|
698
|
-
"cardType": "package"
|
|
699
|
-
}, {
|
|
700
|
-
"name": "Elecfreaks Cutebot",
|
|
701
|
-
"url":"/pkg/elecfreaks/pxt-cutebot",
|
|
702
|
-
"cardType": "package"
|
|
703
|
-
}, {
|
|
704
|
-
"name": "Elecfreaks Cutebot Pro",
|
|
705
|
-
"url":"/pkg/elecfreaks/pxt-cutebot-pro",
|
|
706
|
-
"cardType": "package"
|
|
707
|
-
}, {
|
|
708
|
-
"name": "Kittenbot RobotBit",
|
|
709
|
-
"url":"/pkg/kittenbot/pxt-robotbit",
|
|
710
|
-
"cardType": "package"
|
|
711
|
-
}, {
|
|
712
|
-
"name": "inex iBit",
|
|
713
|
-
"url":"/pkg/emwta/pxt-iBit",
|
|
714
|
-
"cardType": "package"
|
|
715
|
-
}, {
|
|
716
|
-
"name": "InkSmith k8 robotics kit",
|
|
717
|
-
"url":"/pkg/k8robotics/pxt-k8",
|
|
718
|
-
"cardType": "package"
|
|
719
|
-
}, {
|
|
720
|
-
"name": "Freenove Micro:Rover",
|
|
721
|
-
"url":"/pkg/Freenove/Makecode-Extension-Rover",
|
|
722
|
-
"cardType": "package"
|
|
723
|
-
}, {
|
|
724
|
-
"name": "Gigglebot",
|
|
725
|
-
"url":"/pkg/dexterind/pxt-giggle",
|
|
726
|
-
"cardType": "package"
|
|
727
|
-
}, {
|
|
728
|
-
"name": "Robobit",
|
|
729
|
-
"url":"/pkg/4tronix/Robobit",
|
|
730
|
-
"cardType": "package"
|
|
731
|
-
}, {
|
|
732
|
-
"name": "Pi Supply Bit:Buggy",
|
|
733
|
-
"url":"/pkg/PiSupply/pxt-bitbuggy",
|
|
734
|
-
"cardType": "package"
|
|
735
|
-
}, {
|
|
736
|
-
"name": "ALS Robot Coo Coo",
|
|
737
|
-
"url":"/pkg/alsrobot-microbit-makecode-packages/CooCoo",
|
|
738
|
-
"cardType": "package"
|
|
739
|
-
}, {
|
|
740
|
-
"name": "ALS Robot CruiseBit",
|
|
741
|
-
"url":"/pkg/alsrobot-microbit-makecode-packages/CruiseBit",
|
|
742
|
-
"cardType": "package"
|
|
743
|
-
}, {
|
|
744
|
-
"name": "Hummingbird Bit",
|
|
745
|
-
"url":"/pkg/BirdBrainTechnologies/pxt-hummingbird-bit",
|
|
746
|
-
"cardType": "package"
|
|
747
|
-
}, {
|
|
748
|
-
"name": "Inex iKB-1 controller board",
|
|
749
|
-
"url":"/pkg/jcubuntu/pxt-iKB1",
|
|
750
|
-
"cardType": "package"
|
|
751
|
-
}, {
|
|
752
|
-
"name": "MakerBit motor controller",
|
|
753
|
-
"url":"/pkg/1010Technologies/pxt-makerbit-motor",
|
|
754
|
-
"cardType": "package"
|
|
755
|
-
}, {
|
|
756
|
-
"name": "mikRobot",
|
|
757
|
-
"url":"/pkg/KS-Bulme/pxt-mikRobot",
|
|
758
|
-
"cardType": "package"
|
|
759
|
-
}, {
|
|
760
|
-
"name": "Tobbie II",
|
|
761
|
-
"url":"/pkg/kaku111/pxt-tobbieII",
|
|
762
|
-
"cardType": "package"
|
|
763
|
-
}, {
|
|
764
|
-
"name": "Kitronik ACCESS:bit",
|
|
765
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-accessbit",
|
|
766
|
-
"cardType": "package"
|
|
767
|
-
}, {
|
|
768
|
-
"name": "Kitronik Fischertechnik interface",
|
|
769
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-fischertechnik",
|
|
770
|
-
"cardType": "package"
|
|
771
|
-
}, {
|
|
772
|
-
"name": "Keigan Motor",
|
|
773
|
-
"url": "/pkg/keigan-motor/pxt-KeiganMotor",
|
|
774
|
-
"cardType": "package"
|
|
775
|
-
}, {
|
|
776
|
-
"name": "TCEA Nexus:bit and Nexusbot",
|
|
777
|
-
"url":"/pkg/beyond-coding-tw/pxt-nexusbot",
|
|
778
|
-
"cardType": "package"
|
|
779
|
-
}, {
|
|
780
|
-
"name": "Kitronik Klip Motor",
|
|
781
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-klip-motor",
|
|
782
|
-
"cardType": "package"
|
|
783
|
-
}, {
|
|
784
|
-
"name": "Keyestudio Robot Car",
|
|
785
|
-
"url":"/pkg/Veilkrand/pxt-RobotCar",
|
|
786
|
-
"cardType": "package"
|
|
787
|
-
}, {
|
|
788
|
-
"name": "TinkerTanker Stepper Motor",
|
|
789
|
-
"url":"/pkg/Tinkertanker/pxt-stepper-motor",
|
|
790
|
-
"cardType": "package"
|
|
791
|
-
}]
|
|
792
|
-
```
|
|
43
|
+

|
|
793
44
|
|
|
794
|
-
##
|
|
45
|
+
## What extensions are loaded in my project?
|
|
795
46
|
|
|
796
|
-
|
|
797
|
-
[{
|
|
798
|
-
"name": "Joy IT RFID Module MFRC-522",
|
|
799
|
-
"url": "/pkg/joy-it/pxt-rfid-mfrc522",
|
|
800
|
-
"cardType": "package"
|
|
801
|
-
}, {
|
|
802
|
-
"name": "Joy-IT ADS1115",
|
|
803
|
-
"url":"/pkg/joy-it/pxt-ads1115",
|
|
804
|
-
"cardType": "package"
|
|
805
|
-
}, {
|
|
806
|
-
"name": "DFRobot Environment Science Board ",
|
|
807
|
-
"url":"/pkg/DFRobot/pxt-DFRobot_Environment_Science",
|
|
808
|
-
"cardType": "package"
|
|
809
|
-
}, {
|
|
810
|
-
"name": "PT-BOT KidsBIT",
|
|
811
|
-
"url":"/pkg/iBuilds/pxt-PTKidsBIT-IoT",
|
|
812
|
-
"cardType": "package"
|
|
813
|
-
}, {
|
|
814
|
-
"name": "Kitronik Air Quality & Environmental Board",
|
|
815
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-air-quality",
|
|
816
|
-
"cardType": "package"
|
|
817
|
-
}, {
|
|
818
|
-
"name": "DFRobot Natural Science Board",
|
|
819
|
-
"url":"/pkg/DFRobot/pxt-DFRobot-NaturalScience",
|
|
820
|
-
"cardType": "package"
|
|
821
|
-
}, {
|
|
822
|
-
"name": "Kitronik Klimate Board",
|
|
823
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-klimate",
|
|
824
|
-
"cardType": "package"
|
|
825
|
-
}, {
|
|
826
|
-
"name": "Kitronik Smart Greenhouse",
|
|
827
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-smart-greenhouse",
|
|
828
|
-
"cardType": "package"
|
|
829
|
-
}, {
|
|
830
|
-
"name": "Make&Learn micro:shield",
|
|
831
|
-
"url":"/pkg/MakeAndLearn/pxt-microshield",
|
|
832
|
-
"cardType": "package"
|
|
833
|
-
}, {
|
|
834
|
-
"name": "Sparkfun Weather:bit",
|
|
835
|
-
"url":"/pkg/sparkfun/pxt-weather-bit",
|
|
836
|
-
"cardType": "package"
|
|
837
|
-
}, {
|
|
838
|
-
"name": "Sparkfun gator:environment",
|
|
839
|
-
"url":"/pkg/sparkfun/pxt-gator-environment",
|
|
840
|
-
"cardType": "package"
|
|
841
|
-
}, {
|
|
842
|
-
"name": "XinaBox SW01 Advanced Weather Sensor",
|
|
843
|
-
"url":"/pkg/xinabox/pxt-SW01",
|
|
844
|
-
"cardType": "package"
|
|
845
|
-
}, {
|
|
846
|
-
"name": "Cytron Edubit",
|
|
847
|
-
"url":"/pkg/CytronTechnologies/pxt-edubit",
|
|
848
|
-
"cardType": "package"
|
|
849
|
-
}, {
|
|
850
|
-
"name": "Cytron Rekabit",
|
|
851
|
-
"url":"/pkg/CytronTechnologies/pxt-rekabit",
|
|
852
|
-
"cardType": "package"
|
|
853
|
-
}, {
|
|
854
|
-
"name": "Cytron Rekabit RBT Project Kit",
|
|
855
|
-
"url":"/pkg/CytronTechnologies/pxt-rekabit-rbt-project-kit",
|
|
856
|
-
"cardType": "package"
|
|
857
|
-
}, {
|
|
858
|
-
"name": "Imagimaker Magisheild",
|
|
859
|
-
"url":"/pkg/Imagimaker/pxt-imagimaker",
|
|
860
|
-
"cardType": "package"
|
|
861
|
-
}, {
|
|
862
|
-
"name": "Kitronik clip detector",
|
|
863
|
-
"url": "/pkg/KitronikLtd/pxt-kitronik-clip-detector",
|
|
864
|
-
"cardType": "package"
|
|
865
|
-
}, {
|
|
866
|
-
"name": "Pimoroni Envirobit",
|
|
867
|
-
"url": "/pkg/pimoroni/pxt-envirobit",
|
|
868
|
-
"cardType": "package"
|
|
869
|
-
}, {
|
|
870
|
-
"name": "Pimoroni Automationbit",
|
|
871
|
-
"url":"/pkg/pimoroni/pxt-automationbit",
|
|
872
|
-
"cardType": "package"
|
|
873
|
-
}, {
|
|
874
|
-
"name": "51bit Smart Tools",
|
|
875
|
-
"url": "/pkg/51bit/SmartTools",
|
|
876
|
-
"cardType": "package"
|
|
877
|
-
}, {
|
|
878
|
-
"name": "MakerBit",
|
|
879
|
-
"url": "/pkg/1010Technologies/pxt-makerbit",
|
|
880
|
-
"cardType": "package"
|
|
881
|
-
}, {
|
|
882
|
-
"name": "MakerBit Pins",
|
|
883
|
-
"url": "/pkg/1010Technologies/pxt-makerbit-pins",
|
|
884
|
-
"cardType": "package"
|
|
885
|
-
}, {
|
|
886
|
-
"name": "Elecfreaks Wukon",
|
|
887
|
-
"url": "/pkg/elecfreaks/pxt-wukong",
|
|
888
|
-
"cardType": "package"
|
|
889
|
-
}, {
|
|
890
|
-
"name": "Elite Longanbit",
|
|
891
|
-
"url": "/pkg/longan-link/pxt-longanbit",
|
|
892
|
-
"cardType": "package"
|
|
893
|
-
}, {
|
|
894
|
-
"name": "Adafruit Crickit",
|
|
895
|
-
"url": "/pkg/adafruit/pxt-crickit",
|
|
896
|
-
"cardType": "package"
|
|
897
|
-
}, {
|
|
898
|
-
"name": "Adafruit Seesaw",
|
|
899
|
-
"url": "/pkg/adafruit/pxt-seesaw",
|
|
900
|
-
"cardType": "package"
|
|
901
|
-
}]
|
|
902
|
-
```
|
|
47
|
+
To determine which extensions your project is currently using, you can simply open the project in MakeCode and look at the Toolbox to see the custom categories that are displayed. If you need more information, such as the repository path or version of the extension, open the project in MakeCode and select **Project Settings** from the **Settings** menu in the top right corner of the screen.
|
|
903
48
|
|
|
904
|
-
|
|
49
|
+

|
|
905
50
|
|
|
906
|
-
|
|
907
|
-
[{
|
|
908
|
-
"name": "Kitronik Klef Piano",
|
|
909
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-klef-piano",
|
|
910
|
-
"cardType": "package"
|
|
911
|
-
}, {
|
|
912
|
-
"name": "Catalex Serial MP3 Player v1.0",
|
|
913
|
-
"url": "/pkg/1010Technologies/pxt-makerbit-mp3",
|
|
914
|
-
"cardType": "package"
|
|
915
|
-
}, {
|
|
916
|
-
"name": "51bit DFPlayer mini",
|
|
917
|
-
"url":"/pkg/51bit/dfplayermini",
|
|
918
|
-
"cardType": "package"
|
|
919
|
-
}]
|
|
920
|
-
```
|
|
51
|
+
**Select Edit Settings As text** button.
|
|
921
52
|
|
|
922
|
-
|
|
53
|
+

|
|
923
54
|
|
|
924
|
-
|
|
925
|
-
[{
|
|
926
|
-
"name": "4tronix EggBit",
|
|
927
|
-
"url":"/pkg/4tronix/EggBit",
|
|
928
|
-
"cardType": "package"
|
|
929
|
-
}, {
|
|
930
|
-
"name": "Bright Wearables Bright Board",
|
|
931
|
-
"url":"/pkg/BrightWearables/pxt-microbit-brightboard",
|
|
932
|
-
"cardType": "package"
|
|
933
|
-
}]
|
|
934
|
-
```
|
|
55
|
+
The project settings will appear as text and you can see the extensions used in your project. They are listed under `"dependencies"`:
|
|
935
56
|
|
|
936
|
-
## Utilities
|
|
937
|
-
```codecard
|
|
938
|
-
[{
|
|
939
|
-
"name": "Faces",
|
|
940
|
-
"url": "/pkg/GrandpaBond/pxt-faces",
|
|
941
|
-
"cardType": "package"
|
|
942
|
-
}, {
|
|
943
|
-
"name": "Makey Makey Code-a-Key",
|
|
944
|
-
"url": "/pkg/joylabz/code-a-key-extension",
|
|
945
|
-
"cardType": "package"
|
|
946
|
-
}, {
|
|
947
|
-
"name": "FlexFX",
|
|
948
|
-
"url": "/pkg/GrandpaBond/pxt-flexfx",
|
|
949
|
-
"cardType": "package"
|
|
950
|
-
}, {
|
|
951
|
-
"name": "Meter",
|
|
952
|
-
"url": "/pkg/GrandpaBond/pxt-meter",
|
|
953
|
-
"cardType": "package"
|
|
954
|
-
}, {
|
|
955
|
-
"name": "Morse Code",
|
|
956
|
-
"url": "/pkg/bsiever/pxt-morse",
|
|
957
|
-
"cardType": "package"
|
|
958
|
-
}, {
|
|
959
|
-
"name": "Button clicks",
|
|
960
|
-
"url": "/pkg/bsiever/microbit-pxt-clicks",
|
|
961
|
-
"cardType": "package"
|
|
962
|
-
}, {
|
|
963
|
-
"name": "Rotate Display",
|
|
964
|
-
"url":"/pkg/bsiever/microbit-pxt-rotate",
|
|
965
|
-
"cardType": "package"
|
|
966
|
-
}, {
|
|
967
|
-
"name": "Bluetooth HID",
|
|
968
|
-
"url":"/pkg/bsiever/microbit-pxt-blehid",
|
|
969
|
-
"cardType": "package"
|
|
970
|
-
}, {
|
|
971
|
-
"name": "Soroban abacus",
|
|
972
|
-
"url":"/pkg/aorczyk/soroban",
|
|
973
|
-
"cardType": "package"
|
|
974
|
-
}, {
|
|
975
|
-
"name": "Lego PF recorder",
|
|
976
|
-
"url":"/pkg/aorczyk/pf-recorder",
|
|
977
|
-
"cardType": "package"
|
|
978
|
-
}, {
|
|
979
|
-
"name": "Lego PF transmitter",
|
|
980
|
-
"url":"/pkg/aorczyk/lego-pf-transmitter",
|
|
981
|
-
"cardType": "package"
|
|
982
|
-
}, {
|
|
983
|
-
"name": "Lego PF receiver",
|
|
984
|
-
"url":"/pkg/aorczyk/lego-pf-receiver",
|
|
985
|
-
"cardType": "package"
|
|
986
|
-
}, {
|
|
987
|
-
"name": "Kodely dot",
|
|
988
|
-
"url":"/pkg/Kodely-io/dot",
|
|
989
|
-
"cardType": "package"
|
|
990
|
-
}, {
|
|
991
|
-
"name": "Wait until...",
|
|
992
|
-
"url":"/pkg/TeacherPinky/Wait-Until-Blocks",
|
|
993
|
-
"cardType": "package"
|
|
994
|
-
}, {
|
|
995
|
-
"name": "micro:bit power saving",
|
|
996
|
-
"url":"/pkg/microbit-foundation/pxt-microbit-v2-power",
|
|
997
|
-
"cardType": "package"
|
|
998
|
-
}, {
|
|
999
|
-
"name": "DS3231 Real Time Clock",
|
|
1000
|
-
"url":"/pkg/AlexandreFrolov/DS3231",
|
|
1001
|
-
"cardType": "package"
|
|
1002
|
-
}, {
|
|
1003
|
-
"name": "Time & Date",
|
|
1004
|
-
"url":"/pkg/bsiever/microbit-pxt-timeanddate",
|
|
1005
|
-
"cardType": "package"
|
|
1006
|
-
}, {
|
|
1007
|
-
"name": "Kitronik Realtime Clock",
|
|
1008
|
-
"url":"/pkg/KitronikLtd/pxt-kitronik-rtc",
|
|
1009
|
-
"cardType": "package"
|
|
1010
|
-
}, {
|
|
1011
|
-
"name": "Code Dojo Olney",
|
|
1012
|
-
"url":"/pkg/CoderDojoOlney/pxt-olney",
|
|
1013
|
-
"cardType": "package"
|
|
1014
|
-
}, {
|
|
1015
|
-
"name": "Inventura textbook",
|
|
1016
|
-
"url":"/pkg/assirati/pxt-inventura",
|
|
1017
|
-
"cardType": "package"
|
|
1018
|
-
}, {
|
|
1019
|
-
"name": "micro:turtle",
|
|
1020
|
-
"url":"/pkg/microsoft/pxt-microturtle",
|
|
1021
|
-
"cardType": "package"
|
|
1022
|
-
}, {
|
|
1023
|
-
"name": "MIDI",
|
|
1024
|
-
"url":"/pkg/microsoft/pxt-midi",
|
|
1025
|
-
"cardType": "package"
|
|
1026
|
-
}, {
|
|
1027
|
-
"name": "Bluetooth MIDI",
|
|
1028
|
-
"url":"/pkg/microsoft/pxt-bluetooth-midi",
|
|
1029
|
-
"cardType": "package"
|
|
1030
|
-
}, {
|
|
1031
|
-
"name": "BlockyTalkyBLE",
|
|
1032
|
-
"url":"/pkg/LaboratoryForPlayfulComputation/pxt-BlockyTalkyBLE",
|
|
1033
|
-
"cardType": "package"
|
|
1034
|
-
}, {
|
|
1035
|
-
"name": "Katakana",
|
|
1036
|
-
"url":"/pkg/mbitfun/pxt-katakana",
|
|
1037
|
-
"cardType": "package"
|
|
1038
|
-
}, {
|
|
1039
|
-
"name": "LINE BLE beacon",
|
|
1040
|
-
"url":"/pkg/pizayanz/pxt-linebeacon",
|
|
1041
|
-
"cardType": "package"
|
|
1042
|
-
}, {
|
|
1043
|
-
"name": "Pimoroni Scrollbit",
|
|
1044
|
-
"url":"/pkg/pimoroni/pxt-scrollbit",
|
|
1045
|
-
"cardType": "package"
|
|
1046
|
-
}, {
|
|
1047
|
-
"name": "SBRICK",
|
|
1048
|
-
"url":"/pkg/vengit/pxt-sbrick",
|
|
1049
|
-
"cardType": "package"
|
|
1050
|
-
}, {
|
|
1051
|
-
"name": "Annikken Andee",
|
|
1052
|
-
"url":"/pkg/Annikken/pxt-Andee",
|
|
1053
|
-
"cardType": "package"
|
|
1054
|
-
}, {
|
|
1055
|
-
"name": "Proportional Font",
|
|
1056
|
-
"url":"/pkg/lwchkg/pxt-proportional-font",
|
|
1057
|
-
"cardType": "package"
|
|
1058
|
-
}, {
|
|
1059
|
-
"name": "ALS Robot Keyboard",
|
|
1060
|
-
"url":"/pkg/alsrobot-microbit-makecode-packages/ALSRobotKeyboard",
|
|
1061
|
-
"cardType": "package"
|
|
1062
|
-
}, {
|
|
1063
|
-
"name": "Elecfreaks NeZha",
|
|
1064
|
-
"url": "/pkg/elecfreaks/pxt-nezha",
|
|
1065
|
-
"cardType": "package"
|
|
1066
|
-
}]
|
|
1067
57
|
```
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"core": "*",
|
|
60
|
+
"radio": "*",
|
|
61
|
+
"microphone": "*",
|
|
62
|
+
"maqueen": "github.com:dfrobot/pxt-maqueen#v1.7.2"
|
|
63
|
+
},
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
The extensions with just a path of `"*"` are those included by default with the editor. Others are external and have a repository path, possibly with a version specified.
|
|
67
|
+
|
|
68
|
+
## Custom extensions
|
|
69
|
+
|
|
70
|
+
The [Build Your Own Extension](https://makecode.com/extensions/getting-started) manual is available for advanced users who want to publish their own extension.
|