86 lines
2.6 KiB
JSON
Raw Normal View History

2016-06-14 06:30:07 -07:00
{
"name": "bluetooth",
2016-06-14 06:30:07 -07:00
"description": "Bluetooth services",
"files": [
"README.md",
"enums.d.ts",
"shims.d.ts",
"bluetooth.ts",
2017-01-06 06:03:33 -08:00
"bluetooth.cpp",
"_locales/de/bluetooth-jsdoc-strings.json"
2016-06-14 06:30:07 -07:00
],
"public": true,
"dependencies": {
"core": "file:../core"
2016-06-14 06:30:07 -07:00
},
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 1
}
}
},
"optionalConfig": {
"microbit-dal": {
"bluetooth": {
"private_addressing": 0,
"advertising_timeout": 0,
"tx_power": 6,
"dfu_service": 1,
"event_service": 1,
"device_info_service": 1,
"eddystone_url": 1,
2016-12-23 08:58:38 -08:00
"eddystone_uid": 1,
"open": 0,
2016-12-07 08:07:08 -08:00
"pairing_mode": 1,
"whitelist": 1,
2016-12-02 09:45:59 -08:00
"security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM"
2016-12-31 06:36:05 -08:00
},
"gatt_table_size": "0x700"
}
},
"userConfigs": [
{
2016-12-05 15:02:39 -08:00
"description": "Unsecure: Anyone can connect via Bluetooth.",
"config": {
"microbit-dal": {
"bluetooth": {
"open": 1,
2017-01-06 06:03:33 -08:00
"pairing_mode": 0,
2016-12-07 08:07:08 -08:00
"whitelist": 0,
"security_level": null
}
}
}
},
2016-12-02 09:45:59 -08:00
{
2016-12-07 08:07:08 -08:00
"description": "JustWorks pairing (default): Button press to pair.",
2016-12-02 09:45:59 -08:00
"config": {
"microbit-dal": {
"bluetooth": {
2016-12-05 13:02:11 -08:00
"open": null,
"pairing_mode": null,
2016-12-05 15:02:39 -08:00
"whitelist": null,
2016-12-05 13:02:11 -08:00
"security_level": null
2016-12-02 09:45:59 -08:00
}
}
}
},
{
2016-12-07 08:07:08 -08:00
"description": "Passkey pairing: Button press and 6 digit key to pair.",
"config": {
"microbit-dal": {
"bluetooth": {
"open": 0,
"pairing_mode": 1,
2016-12-05 15:02:39 -08:00
"whitelist": 1,
"security_level": "SECURITY_MODE_ENCRYPTION_WITH_MITM"
}
}
}
}
]
2016-06-14 06:30:07 -07:00
},
2016-06-14 13:57:27 -07:00
"installedVersion": "vzlhfd"
}