pxt-calliope/libs/bluetooth/pxt.json

77 lines
2.4 KiB
JSON
Raw Normal View History

2016-06-14 15:30:07 +02:00
{
"name": "bluetooth",
2016-06-14 15:30:07 +02:00
"description": "Bluetooth services",
"files": [
"README.md",
"enums.d.ts",
"shims.d.ts",
"bluetooth.ts",
2017-01-06 15:03:33 +01:00
"bluetooth.cpp",
2017-02-14 16:39:09 +01:00
"_locales/de/bluetooth-jsdoc-strings.json",
2017-04-27 16:13:43 +02:00
"_locales/no/bluetooth-strings.json",
"_locales/nl/bluetooth-strings.json",
"_locales/fr/bluetooth-strings.json",
"_locales/nl/bluetooth-jsdoc-strings.json",
"_locales/fr/bluetooth-jsdoc-strings.json"
2016-06-14 15:30:07 +02:00
],
"public": true,
"dependencies": {
"core": "file:../core"
2016-06-14 15:30:07 +02:00
},
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 1
}
}
},
"optionalConfig": {
"microbit-dal": {
2016-12-31 15:36:05 +01:00
"gatt_table_size": "0x700"
}
},
"userConfigs": [
{
"description": "No Pairing Required: Anyone can connect via Bluetooth.",
"config": {
"microbit-dal": {
"bluetooth": {
"open": 1,
"pairing_mode": 0,
"whitelist": 0,
"security_level": null
}
}
}
},
{
"description": "JustWorks pairing (default): Pairing is automatic once the pairing is initiated.",
"config": {
"microbit-dal": {
"bluetooth": {
"open": null,
"pairing_mode": null,
"whitelist": null,
"security_level": null
}
}
}
},
{
"description": "Passkey pairing: Pairing requires 6 digit key to pair.",
"config": {
"microbit-dal": {
"bluetooth": {
"open": 0,
"pairing_mode": 1,
"whitelist": 1,
"security_level": "SECURITY_MODE_ENCRYPTION_WITH_MITM"
}
}
}
}
]
2016-06-14 15:30:07 +02:00
},
2016-06-14 22:57:27 +02:00
"installedVersion": "vzlhfd"
}