-
Notifications
You must be signed in to change notification settings - Fork 0
/
pxt.json
42 lines (42 loc) · 977 Bytes
/
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
{
"name": "DumbDisplayMCExtension",
"version": "0.2.2",
"description": "DumbDisplay MakeCode extension is a gateway to extend Micro:bit screen to your Android phone via Micro:bit built-in Bluetooth or USB (Serial).",
"dependencies": {
"core": "*"
},
"files": [
"README.md",
"dumbdisplay.ts",
"ddmb.ts",
"ddturtle.ts",
"ddlayers.ts",
"dumbdisplay.cpp"
],
"testFiles": [
"test.ts"
],
"public": true,
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"disablesVariants": [
"mbcodal"
],
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 1
}
}
},
"optionalConfig": {
"microbit-dal": {
"stack_size": 896,
"gatt_table_size": "0x700"
}
}
}
}