pxt-microbit 4.1.53 → 5.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/hexcache/{7b81443eba5eb35bd5641711bb1366ea74e7bffa0deb1f29ba957bc48a272be2.hex → 523847a64a39d936972bb116ae62f3572fc68bbfaab239b9668a73843129f62d.hex} +9397 -9397
- package/built/hexcache/{64b3bde6cc2a08bff02c27b4f850c35c6b9da63143da33234243ef4c9a0a4ab3.hex → b3453e568175cf180eacd9bc7dbb01b5c8a3d08a615bc1f9c1da7291cd084375.hex} +9590 -9588
- package/built/sim.d.ts +1 -0
- package/built/sim.js +44 -34
- package/built/target.js +57 -56
- package/built/target.json +57 -56
- package/built/targetlight.json +6 -6
- package/built/theme.json +2 -1
- package/built/web/react-common-authcode.css +9 -0
- package/built/web/react-common-skillmap.css +1 -1
- package/built/web/rtlreact-common-skillmap.css +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/docs/reference/music/create-sound-effect.md +21 -1
- package/docs/reference/music/play-sound-effect.md +32 -2
- package/package.json +3 -3
- package/pxtarget.json +3 -2
- package/targetconfig.json +130 -130
|
@@ -34,7 +34,9 @@ A sound expression is set of parameters that describe a **[Sound](/types/sound)*
|
|
|
34
34
|
|
|
35
35
|
* a [sound](/types/sound) expression [string](/types/string) with the the desired sound effect parameters.
|
|
36
36
|
|
|
37
|
-
##
|
|
37
|
+
## Examples
|
|
38
|
+
|
|
39
|
+
### Sine wave sound
|
|
38
40
|
|
|
39
41
|
Create a sound expression string and assign it to a variable. Play the sound for the sound expression.
|
|
40
42
|
|
|
@@ -43,6 +45,24 @@ let mySound = music.createSoundEffect(WaveShape.Sine, 2000, 0, 1023, 0, 500, Sou
|
|
|
43
45
|
music.playSoundEffect(mySound, SoundExpressionPlayMode.UntilDone)
|
|
44
46
|
```
|
|
45
47
|
|
|
48
|
+
### Complex waveform sound
|
|
49
|
+
|
|
50
|
+
Create a `triangle` wave sound expression with `vibrato` and a `curve` interpolation. Play the sound until it finishes.
|
|
51
|
+
|
|
52
|
+
```typescript
|
|
53
|
+
let mySound = music.createSoundEffect(
|
|
54
|
+
WaveShape.Triangle,
|
|
55
|
+
1000,
|
|
56
|
+
2700,
|
|
57
|
+
255,
|
|
58
|
+
255,
|
|
59
|
+
500,
|
|
60
|
+
SoundExpressionEffect.Vibrato,
|
|
61
|
+
InterpolationCurve.Curve
|
|
62
|
+
)
|
|
63
|
+
music.playSoundEffect(mySound, SoundExpressionPlayMode.UntilDone)
|
|
64
|
+
```
|
|
65
|
+
|
|
46
66
|
## See also
|
|
47
67
|
|
|
48
68
|
[play sound effect](/reference/music/play-sound-effect), [built-in sound effect](/reference/music/builtin-sound-effect)
|
|
@@ -8,6 +8,8 @@ music.playSoundEffect("", SoundExpressionPlayMode.UntilDone)
|
|
|
8
8
|
|
|
9
9
|
This will play a **[Sound](/types/sound)** object created from a sound expression. The sound will play for the duration that was set in the sound expression. The sound can play on the speaker or at a pin that is set for sound output.
|
|
10
10
|
|
|
11
|
+
You can also play [built-in sound effects](/reference/music/builtin-sound-effect) like `giggle`, `happy`, or `twinkle`.
|
|
12
|
+
|
|
11
13
|
Your program can wait for the sound to finish before it runs its next step. To do this, set the play mode to `until done`. Otherwise, use `background` for the program to continue immediately after the sound starts.
|
|
12
14
|
|
|
13
15
|
### ~ reminder
|
|
@@ -25,14 +27,42 @@ This block requires the [micro:bit V2](/device/v2) hardware. If you use this blo
|
|
|
25
27
|
* **sound**: a [string](/types/string) that is the sound expression for the sound you want to play.
|
|
26
28
|
* **mode**: the play mode for the sound, either `until done` or `background`.
|
|
27
29
|
|
|
28
|
-
##
|
|
30
|
+
## Examples
|
|
31
|
+
|
|
32
|
+
### Simple waveform sound
|
|
29
33
|
|
|
30
|
-
Play
|
|
34
|
+
Play the sound effect from a sine wave sound expression for `1` second.
|
|
31
35
|
|
|
32
36
|
```blocks
|
|
33
37
|
music.playSoundEffect(music.createSoundEffect(WaveShape.Sine, 2000, 0, 1023, 0, 1000, SoundExpressionEffect.None, InterpolationCurve.Linear), SoundExpressionPlayMode.UntilDone)
|
|
34
38
|
```
|
|
35
39
|
|
|
40
|
+
### Complex waveform sound
|
|
41
|
+
|
|
42
|
+
Play a `triangle` wave sound effect with `vibrato` and a `curve` interpolation.
|
|
43
|
+
|
|
44
|
+
```typescript
|
|
45
|
+
music.playSoundEffect(music.createSoundEffect(
|
|
46
|
+
WaveShape.Triangle,
|
|
47
|
+
1000,
|
|
48
|
+
2700,
|
|
49
|
+
255,
|
|
50
|
+
255,
|
|
51
|
+
500,
|
|
52
|
+
SoundExpressionEffect.Vibrato,
|
|
53
|
+
InterpolationCurve.Curve
|
|
54
|
+
), SoundExpressionPlayMode.UntilDone)
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Built-in sounds
|
|
58
|
+
|
|
59
|
+
Play the `giggle` [built-in sound effect](/reference/music/builtin-sound-effect) until it finishes.
|
|
60
|
+
|
|
61
|
+
```blocks
|
|
62
|
+
music.playSoundEffect(music.builtinSoundEffect(soundExpression.giggle), SoundExpressionPlayMode.UntilDone)
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
|
|
36
66
|
## See also
|
|
37
67
|
|
|
38
68
|
[create sound effect](/reference/music/create-sound-effect),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxt-microbit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "micro:bit target for Microsoft MakeCode (PXT)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"JavaScript",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"typescript": "4.2.3"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"pxt-common-packages": "
|
|
48
|
-
"pxt-core": "
|
|
47
|
+
"pxt-common-packages": "10.0.1",
|
|
48
|
+
"pxt-core": "8.0.1"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/pxtarget.json
CHANGED
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"codalTarget": {
|
|
166
166
|
"name": "codal-microbit-v2",
|
|
167
167
|
"url": "https://github.com/lancaster-university/codal-microbit-v2",
|
|
168
|
-
"branch": "v0.2.
|
|
168
|
+
"branch": "v0.2.40",
|
|
169
169
|
"type": "git"
|
|
170
170
|
},
|
|
171
171
|
"codalBinary": "MICROBIT",
|
|
@@ -560,7 +560,8 @@
|
|
|
560
560
|
"1": "v1",
|
|
561
561
|
"2": "v2",
|
|
562
562
|
"3": "v3",
|
|
563
|
-
"4": "v4"
|
|
563
|
+
"4": "v4",
|
|
564
|
+
"5": "v5"
|
|
564
565
|
},
|
|
565
566
|
"editorVersionPaths": {
|
|
566
567
|
"0": "v0"
|
package/targetconfig.json
CHANGED
|
@@ -338,30 +338,30 @@
|
|
|
338
338
|
],
|
|
339
339
|
"approvedRepoLib": {
|
|
340
340
|
"microsoft/pxt-neopixel": {
|
|
341
|
-
"tags": [ "
|
|
341
|
+
"tags": [ "Lights and Display" ],
|
|
342
342
|
"preferred": true
|
|
343
343
|
},
|
|
344
344
|
"microsoft/pxt-microturtle": {
|
|
345
|
-
"tags": [ "
|
|
345
|
+
"tags": [ "Software" ],
|
|
346
346
|
"preferred": true
|
|
347
347
|
},
|
|
348
348
|
"microsoft/pxt-sonar": {
|
|
349
|
-
"tags": [ "
|
|
349
|
+
"tags": [ "Science" ],
|
|
350
350
|
"preferred": true
|
|
351
351
|
},
|
|
352
352
|
"microsoft/pxt-bluetooth-temperature-sensor": {
|
|
353
|
-
"tags": [ "
|
|
353
|
+
"tags": [ "Science" ],
|
|
354
354
|
"upgrades": [ "dv:mbcodal" ]
|
|
355
355
|
},
|
|
356
|
-
"microsoft/pxt-bluetooth-midi": {
|
|
357
|
-
"microsoft/pxt-max6675": {
|
|
358
|
-
"microsoft/pxt-midi": {
|
|
356
|
+
"microsoft/pxt-bluetooth-midi": { },
|
|
357
|
+
"microsoft/pxt-max6675": {},
|
|
358
|
+
"microsoft/pxt-midi": {},
|
|
359
359
|
"microsoft/pxt-radio-blockchain": {},
|
|
360
360
|
"microsoft/pxt-bluetooth-max6675": {
|
|
361
|
-
"tags": [ "
|
|
361
|
+
"tags": [ "Science" ],
|
|
362
362
|
"upgrades": [ "dv:mbcodal" ]
|
|
363
363
|
},
|
|
364
|
-
"microsoft/pxt-ws2812b": { "tags": [ "
|
|
364
|
+
"microsoft/pxt-ws2812b": { "tags": [ "Lights and Display" ] },
|
|
365
365
|
"microsoft/pxt-apa102": {},
|
|
366
366
|
"microsoft/pxt-radio-firefly": {},
|
|
367
367
|
"microsoft/pxt-ml": {},
|
|
@@ -375,23 +375,23 @@
|
|
|
375
375
|
},
|
|
376
376
|
"kitronikltd/pxt-kitronik-i2c-16-servo": { "tags": [ "Robotics" ] },
|
|
377
377
|
"kitronikltd/pxt-kitronik-stopbit": { "tags": [ "Electronics" ] },
|
|
378
|
-
"kitronikltd/pxt-kitronik-lampbit": { "tags": [ "
|
|
379
|
-
"kitronikltd/pxt-kitronik-klimate": { "tags": [ "
|
|
378
|
+
"kitronikltd/pxt-kitronik-lampbit": { "tags": [ "Lights and Display" ] },
|
|
379
|
+
"kitronikltd/pxt-kitronik-klimate": { "tags": [ "Science" ] },
|
|
380
380
|
"kitronikltd/pxt-kitronik-zip-64": {
|
|
381
381
|
"tags": [ "Gaming" ],
|
|
382
382
|
"upgrades": [ "min:v0.1.0" ]
|
|
383
383
|
},
|
|
384
|
-
"kitronikltd/pxt-kitronik-rtc": {
|
|
384
|
+
"kitronikltd/pxt-kitronik-rtc": {},
|
|
385
385
|
"kitronikltd/pxt-kitronik-game-controller": {
|
|
386
386
|
"tags": [ "Gaming" ],
|
|
387
387
|
"upgrades": [ "min:v0.0.2" ]
|
|
388
388
|
},
|
|
389
389
|
"kitronikltd/pxt-kitronik-robotics-board": { "tags": [ "Robotics" ] },
|
|
390
|
-
"kitronikltd/pxt-kitronik-klef-piano": {
|
|
391
|
-
"adafruit/pxt-crickit": { "tags": [ "
|
|
392
|
-
"adafruit/pxt-seesaw": { "tags": [ "
|
|
390
|
+
"kitronikltd/pxt-kitronik-klef-piano": {},
|
|
391
|
+
"adafruit/pxt-crickit": { "tags": [ "Science" ] },
|
|
392
|
+
"adafruit/pxt-seesaw": { "tags": [ "Science" ] },
|
|
393
393
|
"seeed-studio/pxt-grove": {
|
|
394
|
-
"tags": [ "
|
|
394
|
+
"tags": [ "Science" ],
|
|
395
395
|
"preferred": true
|
|
396
396
|
},
|
|
397
397
|
"seeed-studio/pxt-grove-zero-for-microbit": {},
|
|
@@ -404,11 +404,11 @@
|
|
|
404
404
|
"tinkertanker/pxt-realtimeclock-ds1307": {},
|
|
405
405
|
"tinkertanker/pxt-tinkercademy-tinker-kit": { "preferred": true },
|
|
406
406
|
"tinkertanker/pxt-rotary-encoder-ky040": {
|
|
407
|
-
"tags": [ "
|
|
407
|
+
"tags": [ "Science" ],
|
|
408
408
|
"upgrades": [ "min:v1.2.1" ]
|
|
409
409
|
},
|
|
410
410
|
"tinkertanker/pxt-tinkercademy-microbot": { "upgrades": [ "dv:mbcodal" ] },
|
|
411
|
-
"tinkertanker/pxt-oled-ssd1306": { "tags": [ "Display" ] },
|
|
411
|
+
"tinkertanker/pxt-oled-ssd1306": { "tags": [ "Lights and Display" ] },
|
|
412
412
|
"tinkertanker/pxt-range-vl53l0x": { "upgrades": [ "min:v1.0.1" ] },
|
|
413
413
|
"tinkertanker/pxt-continuous-servo": {},
|
|
414
414
|
"tinkertanker/pxt-joystickbit": {},
|
|
@@ -419,9 +419,9 @@
|
|
|
419
419
|
"tinkertanker/udriver_pca9585": { "upgrades": [ "dv:mbcodal" ] },
|
|
420
420
|
"tinkertanker/pxt-alphanumeric-ht16k33": { "upgrades": [ "min:v1.1.0" ] },
|
|
421
421
|
"tinkertanker/pxt-stepper-motor": { "tags": [ "Robotics" ] },
|
|
422
|
-
"coderdojoolney/pxt-olney": {
|
|
422
|
+
"coderdojoolney/pxt-olney": {},
|
|
423
423
|
"pauldfoster/pxt-microbit-gy521": {
|
|
424
|
-
"tags": [ "
|
|
424
|
+
"tags": [ "Science" ],
|
|
425
425
|
"upgrades": [ "dv:mbcodal" ]
|
|
426
426
|
},
|
|
427
427
|
"chevyng/pxt-ucl-junkrobot": { "tags": [ "Robotics" ] },
|
|
@@ -430,23 +430,23 @@
|
|
|
430
430
|
"upgrades": [ "dv:mbcodal" ]
|
|
431
431
|
},
|
|
432
432
|
"sparkfun/pxt-moto-bit": { "tags": [ "Robotics" ] },
|
|
433
|
-
"sparkfun/pxt-weather-bit": { "tags": [ "
|
|
433
|
+
"sparkfun/pxt-weather-bit": { "tags": [ "Science" ] },
|
|
434
434
|
"sparkfun/pxt-gator-environment": {
|
|
435
|
-
"tags": [ "
|
|
435
|
+
"tags": [ "Science" ],
|
|
436
436
|
"upgrades": [ "dv:mbcodal" ]
|
|
437
437
|
},
|
|
438
438
|
"minodekit/pxt-minode": {
|
|
439
|
-
"tags": [ "
|
|
439
|
+
"tags": [ "Science" ],
|
|
440
440
|
"upgrades": [ "dv:mbcodal" ]
|
|
441
441
|
},
|
|
442
442
|
"laboratoryforplayfulcomputation/pxt-blockytalkyble": {
|
|
443
|
-
"tags": [ "
|
|
443
|
+
"tags": [ "Software" ],
|
|
444
444
|
"upgrades": [ "dv:mbcodal" ]
|
|
445
445
|
},
|
|
446
|
-
"mbitfun/pxt-katakana": { "tags": [ "
|
|
446
|
+
"mbitfun/pxt-katakana": { "tags": [ "Software" ] },
|
|
447
447
|
"jdarling/pxt-pca9685": { "tags": [ "Electronics" ] },
|
|
448
448
|
"muselab/pxt-wifi-shield": {
|
|
449
|
-
"tags": [ "
|
|
449
|
+
"tags": [ "Networking" ],
|
|
450
450
|
"upgrades": [ "min:v1.8.82" ]
|
|
451
451
|
},
|
|
452
452
|
"kittenbot/pxt-robotbit": {
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
"preferred": true
|
|
455
455
|
},
|
|
456
456
|
"pizayanz/pxt-linebeacon": {
|
|
457
|
-
"tags": [ "
|
|
457
|
+
"tags": [ "Software" ],
|
|
458
458
|
"upgrades": [ "min:v0.0.14" ]
|
|
459
459
|
},
|
|
460
460
|
"sunfounder/pxt-sloth": { "tags": [ "Robotics" ] },
|
|
@@ -463,35 +463,35 @@
|
|
|
463
463
|
"preferred": true
|
|
464
464
|
},
|
|
465
465
|
"pimoroni/pxt-scrollbit": {
|
|
466
|
-
"tags": [ "
|
|
466
|
+
"tags": [ "Software" ],
|
|
467
467
|
"upgrades": [ "min:v0.0.7" ]
|
|
468
468
|
},
|
|
469
469
|
"emwta/pxt-ibit": { "tags": [ "Robotics" ] },
|
|
470
|
-
"vengit/pxt-sbrick": {
|
|
471
|
-
"pimoroni/pxt-envirobit": { "tags": [ "
|
|
472
|
-
"annikken/pxt-andee": {
|
|
473
|
-
"1010technologies/pxt-makerbit": { "tags": [ "
|
|
470
|
+
"vengit/pxt-sbrick": {},
|
|
471
|
+
"pimoroni/pxt-envirobit": { "tags": [ "Science" ] },
|
|
472
|
+
"annikken/pxt-andee": {},
|
|
473
|
+
"1010technologies/pxt-makerbit": { "tags": [ "Science" ] },
|
|
474
474
|
"1010technologies/pxt-makerbit-motor": { "tags": [ "Robotics" ] },
|
|
475
|
-
"1010technologies/pxt-makerbit-mp3": {
|
|
476
|
-
"1010technologies/pxt-makerbit-ultrasonic": { "tags": [ "
|
|
475
|
+
"1010technologies/pxt-makerbit-mp3": {},
|
|
476
|
+
"1010technologies/pxt-makerbit-ultrasonic": { "tags": [ "Science" ] },
|
|
477
477
|
"1010technologies/pxt-makerbit-lcd1602": {},
|
|
478
|
-
"1010technologies/pxt-makerbit-ir-receiver": { "tags": [ "
|
|
479
|
-
"1010technologies/pxt-makerbit-touch": { "tags": [ "
|
|
480
|
-
"1010technologies/pxt-makerbit-pins": { "tags": [ "
|
|
481
|
-
"pimoroni/pxt-automationbit": { "tags": [ "
|
|
478
|
+
"1010technologies/pxt-makerbit-ir-receiver": { "tags": [ "Science" ] },
|
|
479
|
+
"1010technologies/pxt-makerbit-touch": { "tags": [ "Science" ] },
|
|
480
|
+
"1010technologies/pxt-makerbit-pins": { "tags": [ "Science" ] },
|
|
481
|
+
"pimoroni/pxt-automationbit": { "tags": [ "Science" ] },
|
|
482
482
|
"k8robotics/pxt-k8": { "tags": [ "Robotics" ] },
|
|
483
483
|
"dexterind/pxt-giggle": { "tags": [ "Robotics" ] },
|
|
484
484
|
"dexterind/pxt-gigglebot": {},
|
|
485
485
|
"imagimaker/pxt-imagimaker": {
|
|
486
|
-
"tags": [ "
|
|
486
|
+
"tags": [ "Science" ],
|
|
487
487
|
"upgrades": [ "dv:mbcodal" ]
|
|
488
488
|
},
|
|
489
|
-
"sparkfun/pxt-gator-light": { "tags": [ "
|
|
490
|
-
"sparkfun/pxt-gator-temp": { "tags": [ "
|
|
489
|
+
"sparkfun/pxt-gator-light": { "tags": [ "Science" ] },
|
|
490
|
+
"sparkfun/pxt-gator-temp": { "tags": [ "Science" ] },
|
|
491
491
|
"4tronix/robobit": { "tags": [ "Robotics" ] },
|
|
492
492
|
"alsrobot-microbit-makecode-packages/alsrobotjoybit": { "tags": [ "Gaming" ] },
|
|
493
|
-
"alsrobot-microbit-makecode-packages/alsrobotkeyboard": {
|
|
494
|
-
"alsrobot-microbit-makecode-packages/alsrobotelectromagnet": { "tags": [ "
|
|
493
|
+
"alsrobot-microbit-makecode-packages/alsrobotkeyboard": {},
|
|
494
|
+
"alsrobot-microbit-makecode-packages/alsrobotelectromagnet": { "tags": [ "Science" ] },
|
|
495
495
|
"alsrobot-microbit-makecode-packages/coocoo": { "tags": [ "Robotics" ] },
|
|
496
496
|
"alsrobot-microbit-makecode-packages/cruisebit": {
|
|
497
497
|
"tags": [ "Robotics" ],
|
|
@@ -513,34 +513,34 @@
|
|
|
513
513
|
"makecode-extensions/ntc": {},
|
|
514
514
|
"makecode-extensions/ds1302": {},
|
|
515
515
|
"birdbraintechnologies/pxt-hummingbird-bit": { "tags": [ "Robotics" ] },
|
|
516
|
-
"pisupply/pxt-iot-lora-node": { "tags": [ "
|
|
517
|
-
"pisupply/pxt-tinker-kit": { "tags": [ "
|
|
516
|
+
"pisupply/pxt-iot-lora-node": { "tags": [ "Networking" ] },
|
|
517
|
+
"pisupply/pxt-tinker-kit": { "tags": [ "Science" ] },
|
|
518
518
|
"pisupply/pxt-bitbuggy": { "tags": [ "Robotics" ] },
|
|
519
519
|
"pisupply/pxt-oled-ssd1306": { "upgrades": [ "dv:mbcodal" ]},
|
|
520
520
|
"pimoroni/pxt-touchbit": { "tags": [ "Gaming" ] },
|
|
521
|
-
"4tronix/cubebit": { "tags": [ "
|
|
521
|
+
"4tronix/cubebit": { "tags": [ "Lights and Display" ] },
|
|
522
522
|
"4tronix/bitcommander": {
|
|
523
523
|
"tags": [ "Gaming" ],
|
|
524
524
|
"upgrades": [ "min:v1.1.1" ]
|
|
525
525
|
},
|
|
526
|
-
"alankrantas/pxt-max7219_8x8": { "tags": [ "
|
|
526
|
+
"alankrantas/pxt-max7219_8x8": { "tags": [ "Lights and Display" ] },
|
|
527
527
|
"rerokit/pxt-reromicro": { "tags": [ "Robotics" ] },
|
|
528
|
-
"51bit/colorbit": { "tags": [ "
|
|
528
|
+
"51bit/colorbit": { "tags": [ "Lights and Display" ] },
|
|
529
529
|
"51bit/sfc": { "tags": [ "Gaming" ] },
|
|
530
|
-
"51bit/smarttools": { "tags": [ "
|
|
530
|
+
"51bit/smarttools": { "tags": [ "Science" ] },
|
|
531
531
|
"kitronikltd/pxt-kitronik-zip-tile": {
|
|
532
|
-
"tags": [ "
|
|
532
|
+
"tags": [ "Lights and Display" ],
|
|
533
533
|
"upgrades": [ "min:v0.1.0" ]
|
|
534
534
|
},
|
|
535
|
-
"lwchkg/pxt-proportional-font": {
|
|
535
|
+
"lwchkg/pxt-proportional-font": {},
|
|
536
536
|
"jcubuntu/pxt-ikb1": { "tags": [ "Robotics" ] },
|
|
537
|
-
"kitronikltd/pxt-kitronik-accessbit": { "tags": [ "
|
|
537
|
+
"kitronikltd/pxt-kitronik-accessbit": { "tags": [ "Robotics" ] },
|
|
538
538
|
"kaku111/pxt-tobbieii": { "tags": [ "Robotics" ] },
|
|
539
|
-
"alankrantas/pxt-dht11_dht22": { "tags": [ "
|
|
539
|
+
"alankrantas/pxt-dht11_dht22": { "tags": [ "Science" ] },
|
|
540
540
|
"freenove/makecode-extension-rover": { "tags": [ "Robotics" ] },
|
|
541
|
-
"letstalkscience/pxt-cozir": { "tags": [ "
|
|
542
|
-
"e-radionicacom/pxt-wifi": { "tags": [ "
|
|
543
|
-
"monkmakes/pxt-sensor": { "tags": [ "
|
|
541
|
+
"letstalkscience/pxt-cozir": { "tags": [ "Science" ] },
|
|
542
|
+
"e-radionicacom/pxt-wifi": { "tags": [ "Networking" ] },
|
|
543
|
+
"monkmakes/pxt-sensor": { "tags": [ "Science" ] },
|
|
544
544
|
"beyond-coding-tw/pxt-nexusbot": { "tags": [ "Robotics" ] },
|
|
545
545
|
"elecfreaks/pxt-cutebot": {
|
|
546
546
|
"tags": [ "Robotics" ],
|
|
@@ -549,77 +549,77 @@
|
|
|
549
549
|
"kitronikltd/pxt-kitronik-fischertechnik": { "tags": [ "Robotics" ] },
|
|
550
550
|
"keigan-motor/pxt-keiganmotor": { "tags": [ "Robotics" ] },
|
|
551
551
|
"kitronikltd/pxt-kitronik-klip-motor": { "tags": [ "Robotics" ] },
|
|
552
|
-
"alankrantas/pxt-esp8266_thingspeak": { "tags": [ "
|
|
553
|
-
"kitronikltd/pxt-kitronik-viewtext32": { "tags": [ "Display" ] },
|
|
552
|
+
"alankrantas/pxt-esp8266_thingspeak": { "tags": [ "Networking" ] },
|
|
553
|
+
"kitronikltd/pxt-kitronik-viewtext32": { "tags": [ "Lights and Display" ] },
|
|
554
554
|
"plenprojectcompany/pxt-plenbit": { "tags": [ "Robotics" ] },
|
|
555
555
|
"4tronix/minibit": { "tags": [ "Robotics" ] },
|
|
556
|
-
"elecfreaks/pxt-wukong": { "tags": [ "
|
|
556
|
+
"elecfreaks/pxt-wukong": { "tags": [ "Science" ] },
|
|
557
557
|
"sparkfun/pxt-gator-particle": {
|
|
558
|
-
"tags": [ "
|
|
558
|
+
"tags": [ "Science" ],
|
|
559
559
|
"upgrades": [ "dv:mbcodal" ]
|
|
560
560
|
},
|
|
561
|
-
"sparkfun/pxt-gator-soil": { "tags": [ "
|
|
561
|
+
"sparkfun/pxt-gator-soil": { "tags": [ "Science" ] },
|
|
562
562
|
"sparkfun/pxt-gator-microphone": {
|
|
563
|
-
"tags": [ "
|
|
563
|
+
"tags": [ "Science" ],
|
|
564
564
|
"upgrades": [ "min:v1.0.21" ]
|
|
565
565
|
},
|
|
566
566
|
"rebeccaclavier/pxt-bmp280": {
|
|
567
|
-
"tags": [ "
|
|
567
|
+
"tags": [ "Science" ],
|
|
568
568
|
"upgrades": [ "dv:mbcodal" ]
|
|
569
569
|
},
|
|
570
|
-
"xinabox/pxt-sw01": { "tags": [ "
|
|
571
|
-
"xinabox/pxt-od01": { "tags": [ "Display" ] },
|
|
572
|
-
"51bit/dfplayermini": {
|
|
573
|
-
"makecode-extensions/stts751": { "tags": [ "
|
|
574
|
-
"makecode-extensions/lsm6dso": { "tags": [ "
|
|
575
|
-
"makecode-extensions/lps22": { "tags": [ "
|
|
576
|
-
"makecode-extensions/lis2dw12": { "tags": [ "
|
|
577
|
-
"makecode-extensions/lis2mdl": { "tags": [ "
|
|
578
|
-
"makecode-extensions/hts221": { "tags": [ "
|
|
579
|
-
"assirati/pxt-inventura": {
|
|
570
|
+
"xinabox/pxt-sw01": { "tags": [ "Science" ] },
|
|
571
|
+
"xinabox/pxt-od01": { "tags": [ "Lights and Display" ] },
|
|
572
|
+
"51bit/dfplayermini": {},
|
|
573
|
+
"makecode-extensions/stts751": { "tags": [ "Science" ] },
|
|
574
|
+
"makecode-extensions/lsm6dso": { "tags": [ "Science" ] },
|
|
575
|
+
"makecode-extensions/lps22": { "tags": [ "Science" ] },
|
|
576
|
+
"makecode-extensions/lis2dw12": { "tags": [ "Science" ] },
|
|
577
|
+
"makecode-extensions/lis2mdl": { "tags": [ "Science" ] },
|
|
578
|
+
"makecode-extensions/hts221": { "tags": [ "Science" ] },
|
|
579
|
+
"assirati/pxt-inventura": {},
|
|
580
580
|
"veilkrand/pxt-robotcar": { "tags": [ "Robotics" ] },
|
|
581
581
|
"4tronix/drivebit": { "tags": [ "Robotics" ] },
|
|
582
|
-
"freenove/makecode-extension-starter-kit": { "tags": [ "
|
|
582
|
+
"freenove/makecode-extension-starter-kit": { "tags": [ "Science" ] },
|
|
583
583
|
"sphero-inc/sphero-sdk-microbit-makecode": { "tags": [ "Robotics" ] },
|
|
584
|
-
"brightwearables/pxt-microbit-brightboard": {
|
|
584
|
+
"brightwearables/pxt-microbit-brightboard": {},
|
|
585
585
|
"ebotics/pxt-eboticsmibo": { "tags": [ "Robotics" ] },
|
|
586
|
-
"kitronikltd/pxt-kitronik-halohd": { "tags": [ "
|
|
587
|
-
"climate-action-kits/pxt-climate-action-kit-land": { "tags": [ "
|
|
586
|
+
"kitronikltd/pxt-kitronik-halohd": { "tags": [ "Lights and Display" ] },
|
|
587
|
+
"climate-action-kits/pxt-climate-action-kit-land": { "tags": [ "Science" ] },
|
|
588
588
|
"alsrobot-microbit-makecode-packages/minicruise": { "tags": [ "Robotics" ] },
|
|
589
589
|
"4tronix/servobit": { "tags": [ "Robotics" ] },
|
|
590
590
|
"dfrobot/pxt-maqueen": {
|
|
591
591
|
"tags": [ "Robotics" ],
|
|
592
592
|
"preferred": true
|
|
593
593
|
},
|
|
594
|
-
"dfrobot/pxt-dfrobot-microiot": { "tags": [ "
|
|
594
|
+
"dfrobot/pxt-dfrobot-microiot": { "tags": [ "Networking" ] },
|
|
595
595
|
"mu-opensource/pxt-muvision": {
|
|
596
|
-
"tags": [ "
|
|
596
|
+
"tags": [ "Science" ],
|
|
597
597
|
"upgrades": [ "min:v1.2.28" ]
|
|
598
598
|
},
|
|
599
|
-
"kitronikltd/pxt-kitronik-clip-detector": { "tags": [ "
|
|
599
|
+
"kitronikltd/pxt-kitronik-clip-detector": { "tags": [ "Science" ] },
|
|
600
600
|
"dfrobot/pxt-dfrobot-naturalscience": {
|
|
601
|
-
"tags": [ "
|
|
601
|
+
"tags": [ "Science" ],
|
|
602
602
|
"upgrades": [ "dv:mbcodal" ]
|
|
603
603
|
},
|
|
604
604
|
"strawbees/pxt-robotic-inventions": { "tags": [ "Robotics" ] },
|
|
605
|
-
"daferdur/pxt-myhx711": { "tags": [ "
|
|
606
|
-
"cytrontechnologies/pxt-edubit": { "tags": [ "
|
|
607
|
-
"makeandlearn/pxt-microshield": { "tags": [ "
|
|
605
|
+
"daferdur/pxt-myhx711": { "tags": [ "Science" ] },
|
|
606
|
+
"cytrontechnologies/pxt-edubit": { "tags": [ "Science" ] },
|
|
607
|
+
"makeandlearn/pxt-microshield": { "tags": [ "Science" ] },
|
|
608
608
|
"4tronix/orbit": { "tags": [ "Robotics" ] },
|
|
609
609
|
"elecfreaks/pxt-tpbot": { "tags": [ "Robotics" ] },
|
|
610
|
-
"longan-link/pxt-longanbit": { "tags": [ "
|
|
610
|
+
"longan-link/pxt-longanbit": { "tags": [ "Science" ] },
|
|
611
611
|
"codomicrobit/pxt-codo": { "tags": [ "Robotics" ] },
|
|
612
612
|
"kitronikltd/pxt-kitronik-move-motor": { "tags": [ "Robotics" ] },
|
|
613
613
|
"elecfreaks/pxt-planetx": {
|
|
614
|
-
"tags": [ "
|
|
614
|
+
"tags": [ "Science" ],
|
|
615
615
|
"upgrades": [ "min:v0.13.1" ]
|
|
616
616
|
},
|
|
617
|
-
"elecfreaks/pxt-nezha": { "tags": [ "
|
|
617
|
+
"elecfreaks/pxt-nezha": { "tags": [ "Robotics" ] },
|
|
618
618
|
"philipphenkel/pxt-powerfunctions": {},
|
|
619
619
|
"1010technologies/pxt-makerbit-ir-transmitter": {},
|
|
620
|
-
"dfrobot/pxt-dfrobot_huskylens": { "tags": [ "
|
|
620
|
+
"dfrobot/pxt-dfrobot_huskylens": { "tags": [ "Science" ] },
|
|
621
621
|
"bsiever/microbit-pxt-timeanddate": {
|
|
622
|
-
"tags": [ "
|
|
622
|
+
"tags": [ "Software" ],
|
|
623
623
|
"upgrades": [ "min:v2.0.11" ]
|
|
624
624
|
},
|
|
625
625
|
"dfrobot/pxt-dfrobot-maqueenplus": {
|
|
@@ -627,19 +627,19 @@
|
|
|
627
627
|
"preferred": true
|
|
628
628
|
},
|
|
629
629
|
"joy-it/joy-car": { "tags": [ "Robotics" ] },
|
|
630
|
-
"alexandrefrolov/ds3231": {
|
|
630
|
+
"alexandrefrolov/ds3231": {},
|
|
631
631
|
"elecfreaks/pxt-magicwand": { "tags": [ "Gaming" ] },
|
|
632
632
|
"yfrobot-tm/pxt-yfrobot-valon": { "tags": [ "Robotics" ] },
|
|
633
|
-
"kitronikltd/pxt-kitronik-smart-greenhouse": { "tags": [ "
|
|
634
|
-
"hardwario/pxt-microbit-hardwario": { "tags": [ "
|
|
633
|
+
"kitronikltd/pxt-kitronik-smart-greenhouse": { "tags": [ "Science" ] },
|
|
634
|
+
"hardwario/pxt-microbit-hardwario": { "tags": [ "Networking" ] },
|
|
635
635
|
"schoumi/ssd1306-with-reset": {},
|
|
636
|
-
"keble6/pxt-ds3231": { "tags": [ "
|
|
636
|
+
"keble6/pxt-ds3231": { "tags": [ "Science" ] },
|
|
637
637
|
"microsoft/expressivepixelsmakecode": {},
|
|
638
|
-
"pimoroni/pxt-inkybit": { "tags": [ "Display" ] },
|
|
639
|
-
"muselab/pxt-muselab-oled-v2": { "tags": [ "Display" ] },
|
|
638
|
+
"pimoroni/pxt-inkybit": { "tags": [ "Lights and Display" ] },
|
|
639
|
+
"muselab/pxt-muselab-oled-v2": { "tags": [ "Lights and Display" ] },
|
|
640
640
|
"microsoft/pxt-jacdac": {
|
|
641
|
-
"tags": [ "
|
|
642
|
-
"upgrades": [ "min:
|
|
641
|
+
"tags": [ "Science" ],
|
|
642
|
+
"upgrades": [ "min:v1.8.13" ]
|
|
643
643
|
},
|
|
644
644
|
"microsoft/pxt-jacdac/accelerometer": {},
|
|
645
645
|
"microsoft/pxt-jacdac/acidity": {},
|
|
@@ -708,57 +708,57 @@
|
|
|
708
708
|
"microsoft/pxt-jacdac/wifi": {},
|
|
709
709
|
"microsoft/pxt-jacdac/wind-direction": {},
|
|
710
710
|
"microsoft/pxt-jacdac/wind-speed": {},
|
|
711
|
-
"coolguy-official/pxt-coolguy": {
|
|
711
|
+
"coolguy-official/pxt-coolguy": {},
|
|
712
712
|
"bouw-je-bep/bouw-je-bep": { "tags": [ "Robotics" ] },
|
|
713
713
|
"birdbraintechnologies/pxt-finch": { "tags": [ "Robotics" ] },
|
|
714
|
-
"ibuilds/pxt-ptkidsbit": { "tags": [ "
|
|
715
|
-
"wappsto/pxt-wappsto": { "tags": [ "
|
|
714
|
+
"ibuilds/pxt-ptkidsbit": { "tags": [ "Science" ] },
|
|
715
|
+
"wappsto/pxt-wappsto": { "tags": [ "Networking" ] },
|
|
716
716
|
"ks-bulme/pxt-mikrobot": { "tags": [ "Robotics" ] },
|
|
717
|
-
"cytrontechnologies/pxt-rekabit": { "tags": [ "
|
|
718
|
-
"bsiever/microbit-dstemp": { "tags": [ "
|
|
719
|
-
"bsiever/microbit-dstemp-2wire": { "tags": [ "
|
|
717
|
+
"cytrontechnologies/pxt-rekabit": { "tags": [ "Science" ] },
|
|
718
|
+
"bsiever/microbit-dstemp": { "tags": [ "Science" ] },
|
|
719
|
+
"bsiever/microbit-dstemp-2wire": { "tags": [ "Science" ] },
|
|
720
720
|
"microsoft/pxt-data-streamer": {},
|
|
721
721
|
"ibuilds/pxt-ptkidsbit-robot": { "tags": [ "Robotics" ] },
|
|
722
|
-
"4tronix/eggbit": {
|
|
723
|
-
"joy-it/sen-mpu6050": { "tags": [ "
|
|
722
|
+
"4tronix/eggbit": {},
|
|
723
|
+
"joy-it/sen-mpu6050": { "tags": [ "Science" ] },
|
|
724
724
|
"gomakekit/hoverbit_v2": { "tags": [ "Robotics" ] },
|
|
725
725
|
"matrix-robotics/pxt-matrixmicro": {},
|
|
726
|
-
"joy-it/pxt-rb-tft1.8": { "tags": [ "Display" ] },
|
|
727
|
-
"cytrontechnologies/pxt-esp8266": { "tags": [ "
|
|
726
|
+
"joy-it/pxt-rb-tft1.8": { "tags": [ "Lights and Display" ] },
|
|
727
|
+
"cytrontechnologies/pxt-esp8266": { "tags": [ "Networking" ] },
|
|
728
728
|
"elecfreaks/pxt-dronebit": {},
|
|
729
|
-
"elecfreaks/pxt-planetx-ai": { "tags": [ "
|
|
730
|
-
"joy-it/pxt-sen-color": { "tags": [ "
|
|
729
|
+
"elecfreaks/pxt-planetx-ai": { "tags": [ "Science" ] },
|
|
730
|
+
"joy-it/pxt-sen-color": { "tags": [ "Science" ] },
|
|
731
731
|
"stemhub/pxt-stemhubbit": { "tags": [ "Robotics" ] },
|
|
732
|
-
"kitronikltd/pxt-kitronik-lab-bit": { "tags": [ "
|
|
733
|
-
"kitronikltd/pxt-kitronik-128x64display": { "tags": [ "Display" ] },
|
|
734
|
-
"monkmakes/monkmakes-7-segment": { "tags": [ "Display" ] },
|
|
735
|
-
"stemhub/pxt-stemhubcity": { "tags": [ "
|
|
736
|
-
"kittenbot/pxt-powerbrick": { "tags": [ "
|
|
737
|
-
"microbit-foundation/pxt-microbit-v2-power": { "tags": [ "
|
|
732
|
+
"kitronikltd/pxt-kitronik-lab-bit": { "tags": [ "Science" ] },
|
|
733
|
+
"kitronikltd/pxt-kitronik-128x64display": { "tags": [ "Lights and Display" ] },
|
|
734
|
+
"monkmakes/monkmakes-7-segment": { "tags": [ "Lights and Display" ] },
|
|
735
|
+
"stemhub/pxt-stemhubcity": { "tags": [ "Science" ] },
|
|
736
|
+
"kittenbot/pxt-powerbrick": { "tags": [ "Science" ] },
|
|
737
|
+
"microbit-foundation/pxt-microbit-v2-power": { "tags": [ "Software" ] },
|
|
738
738
|
"kittenbot/pxt-joyfrog": { "tags": [ "Gaming" ] },
|
|
739
|
-
"kittenbot/pxt-sugar": { "tags": [ "
|
|
740
|
-
"kittenbot/pxt-koi": { "tags": [ "
|
|
739
|
+
"kittenbot/pxt-sugar": { "tags": [ "Science" ] },
|
|
740
|
+
"kittenbot/pxt-koi": { "tags": [ "Science" ] },
|
|
741
741
|
"kidspark/pxt-sparkbit": { "tags": [ "Robotics" ] },
|
|
742
742
|
"bpi-steam/pxt-triodecar": { "tags": [ "Robotics" ] },
|
|
743
|
-
"kitronikltd/pxt-kitronik-air-quality": { "tags": [ "
|
|
743
|
+
"kitronikltd/pxt-kitronik-air-quality": { "tags": [ "Science" ] },
|
|
744
744
|
"kitronikltd/pxt-kitronik-air-quality-v2-only": {},
|
|
745
745
|
"artec-kk/pxt-artecrobo-kit": { "tags": [ "Robotics" ] },
|
|
746
|
-
"teacherpinky/wait-until-blocks": { "tags": [ "
|
|
747
|
-
"kittenbot/pxt-kittenwifi": { "tags": [ "
|
|
748
|
-
"sgbotic/pxt-sgbotic-ultimate-sr04-rgb": { "tags": [ "
|
|
746
|
+
"teacherpinky/wait-until-blocks": { "tags": [ "Software" ] },
|
|
747
|
+
"kittenbot/pxt-kittenwifi": { "tags": [ "Networking" ] },
|
|
748
|
+
"sgbotic/pxt-sgbotic-ultimate-sr04-rgb": { "tags": [ "Science" ] },
|
|
749
749
|
"cytrontechnologies/pxt-zoombit": { "tags": [ "Robotics" ] },
|
|
750
|
-
"kodely-io/dot": { "tags": [ "
|
|
750
|
+
"kodely-io/dot": { "tags": [ "Software" ] },
|
|
751
751
|
"climate-action-kits/pxt-climate-action-kit-energy": {},
|
|
752
752
|
"kitronikltd/pxt-kitronik-simple-servo": { "tags": [ "Robotics" ] },
|
|
753
|
-
"hackidsedu/pxt-hackbit": { "tags": [ "
|
|
754
|
-
"aorczyk/lego-pf-transmitter": {
|
|
753
|
+
"hackidsedu/pxt-hackbit": { "tags": [ "Science" ] },
|
|
754
|
+
"aorczyk/lego-pf-transmitter": {},
|
|
755
755
|
"kittenbot/pxt-minilfr": { "tags": [ "Robotics" ] },
|
|
756
|
-
"ibuilds/pxt-ptkidsbit-iot": { "tags": [ "
|
|
757
|
-
"kelieleung/pxt-iclassiot": { "tags": [ "
|
|
758
|
-
"aorczyk/lego-pf-receiver": {
|
|
759
|
-
"smarthon/pxt-smartcity": { "tags": [ "
|
|
760
|
-
"aorczyk/soroban": { "tags": [ "
|
|
761
|
-
"aorczyk/pf-recorder": {
|
|
756
|
+
"ibuilds/pxt-ptkidsbit-iot": { "tags": [ "Science" ] },
|
|
757
|
+
"kelieleung/pxt-iclassiot": { "tags": [ "Networking" ] },
|
|
758
|
+
"aorczyk/lego-pf-receiver": {},
|
|
759
|
+
"smarthon/pxt-smartcity": { "tags": [ "Science" ] },
|
|
760
|
+
"aorczyk/soroban": { "tags": [ "Software" ] },
|
|
761
|
+
"aorczyk/pf-recorder": {},
|
|
762
762
|
"4tronix/theta": { "tags": [ "Robotics" ] },
|
|
763
763
|
"bsiever/microbit-pxt-blehid": {},
|
|
764
764
|
"dfrobot/pxt-dfrobot_environment_science": {},
|