-
Notifications
You must be signed in to change notification settings - Fork 0
/
pxt.json
40 lines (40 loc) · 957 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
{
"name": "bluetooth-insecure",
"version": "0.0.2",
"description": "",
"license": "MIT",
"dependencies": {
"microbit": "*"
},
"files": [
"README.md",
"main.cpp",
"extension.cpp",
"extension.ts",
"shims.d.ts",
"enums.d.ts"
],
"testFiles": [
"tests.ts"
],
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 1,
"pairing_mode": 1,
"private_addressing": 0,
"open": 1,
"whitelist": 1,
"advertising_timeout": 0,
"tx_power": 6,
"dfu_service": 1,
"event_service": 1,
"device_info_service": 1
},
"gatt_table_size": "0x700"
}
}
},
"public": true
}