-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpxt.json
73 lines (73 loc) · 2.05 KB
/
pxt.json
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
{
"name": "microbit-robot",
"version": "2.7.2",
"dependencies": {
"core": "*",
"radio": "*",
"ws2812b": "github:microsoft/pxt-ws2812b#v0.1.2"
},
"files": [
"README.md",
"protocol/protocol.ts",
"i2c.ts",
"microbit.ts",
"messages.ts",
"blocks.ts",
"robotdriver.ts",
"storage.cpp",
"storage.ts",
"radio.ts",
"calibration.ts",
"tester.ts",
"sim.ts",
"drivers/drivers.ts",
"drivers/hbridgemotor.ts",
"drivers/ws2812bleds.ts",
"drivers/sr04sonar.ts",
"drivers/pinlinedetectors.ts",
"drivers/servoarm.ts",
"drivers/kalmanfilter1d.ts",
"drivers/sim.ts",
"drivers/rccar.ts",
"robots/robot.ts",
"robots/keystudiominismartrobot.ts",
"robots/yahboomtinybit.ts",
"robots/elecfreakscutebot.ts",
"robots/elecfreakscutebotpro.ts",
"robots/dfrobotmaqueen.ts",
"robots/dfrobotmaqueenplusv2.ts",
"robots/kittenbotminilfr.ts",
"robots/kittenbotrobotbit.ts",
"robots/kittenbotnanobit.ts",
"robots/kittenbottabbybot.ts",
"robots/kitronikmotordriverrccar.ts",
"robots/inksmithk8.ts",
"robots/sim.ts",
"constants.ts",
"robots/knotechcallibot.ts",
"robots/tslmotionkit2.ts",
"_locales/de/microbit-robot-strings.json",
"tutorials/getting-started.md",
"tutorials/light-and-sound.md",
"tutorials/line-follower.md"
],
"testFiles": [
"test.ts"
],
"fileDependencies": {
"kittenbotnanobit.ts": "target:microbit",
"kittenbotrobotbit.ts": "target:microbit",
"kittenbottabbybot.ts": "target:microbit",
"yahboomtinybit.ts": "target:microbit",
"microbit.ts": "target:microbit"
},
"targetVersions": {
"target": "6.0.26",
"targetId": "microbit"
},
"supportedTargets": [
"microbit",
"calliopemini"
],
"preferredEditor": "tsprj"
}