pxt-calliope/libs/core/pxt.json

109 lines
3.1 KiB
JSON
Raw Normal View History

2016-03-10 23:01:04 +01:00
{
"name": "core",
2016-03-10 23:01:04 +01:00
"description": "The microbit core library",
"additionalFilePath": "../../node_modules/pxt-common-packages/libs/base",
2016-03-10 23:01:04 +01:00
"files": [
"README.md",
"platform.h",
"pxt.cpp",
"pxt.h",
"pxtbase.h",
"pxtcore.h",
"math.ts",
2016-04-01 23:14:57 +02:00
"dal.d.ts",
2016-04-02 02:45:18 +02:00
"enums.d.ts",
"shims.d.ts",
"pxt-core.d.ts",
2016-04-02 07:32:33 +02:00
"core.cpp",
2016-04-07 20:41:39 +02:00
"pxt-helpers.ts",
2016-04-05 06:18:16 +02:00
"helpers.ts",
"pinscompat.ts",
"codal.cpp",
2016-04-02 04:55:51 +02:00
"images.cpp",
2016-03-30 02:11:17 +02:00
"basic.cpp",
"basic.ts",
2017-01-31 00:03:50 +01:00
"icons.ts",
"icons.jres",
2016-04-02 02:45:18 +02:00
"input.cpp",
2016-03-10 23:01:04 +01:00
"input.ts",
"gestures.jres",
2016-03-11 07:17:32 +01:00
"control.ts",
2016-03-30 02:11:17 +02:00
"control.cpp",
2016-03-11 07:17:32 +01:00
"game.ts",
2016-04-02 06:52:25 +02:00
"led.cpp",
2016-03-11 07:17:32 +01:00
"led.ts",
"music.ts",
"melodies.ts",
2016-04-02 06:26:06 +02:00
"pins.cpp",
"pins.ts",
2016-04-02 07:00:42 +02:00
"serial.cpp",
2016-04-04 01:52:57 +02:00
"serial.ts",
2016-08-08 22:47:45 +02:00
"buffer.cpp",
"buffer.ts",
2016-09-02 00:37:39 +02:00
"pxtparts.json",
2016-09-02 01:24:12 +02:00
"parts/speaker.svg",
2018-02-21 07:17:35 +01:00
"parts/headphone.svg"
2016-03-10 23:01:04 +01:00
],
"public": true,
"dependencies": {},
"yotta": {
"optionalConfig": {
2016-04-19 18:43:23 +02:00
"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,
"eddystone_uid": 1,
2018-10-16 17:54:43 +02:00
"open": 0,
"pairing_mode": 1,
2018-10-16 17:54:43 +02:00
"whitelist": 1,
"security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM",
"partial_flashing": 1
2016-04-19 18:43:23 +02:00
}
}
},
"userConfigs": [
{
2018-10-16 17:54:43 +02:00
"description": "No Pairing Required: Anyone can connect via Bluetooth.",
"config": {
"microbit-dal": {
"bluetooth": {
2018-10-16 17:54:43 +02:00
"open": 1,
"whitelist": 0,
"security_level": null
}
}
}
},
{
2018-10-16 17:54:43 +02:00
"description": "JustWorks pairing (default): Pairing is automatic once the pairing is initiated.",
"config": {
"microbit-dal": {
"bluetooth": {
2018-10-16 17:54:43 +02:00
"open": null,
"whitelist": null,
"security_level": null
}
}
}
},
{
"description": "Passkey pairing: Pairing requires 6 digit key to pair.",
"config": {
"microbit-dal": {
"bluetooth": {
"open": 0,
"whitelist": 1,
"security_level": "SECURITY_MODE_ENCRYPTION_WITH_MITM"
}
}
}
}
]
2016-03-10 23:01:04 +01:00
}
}