111 lines
3.2 KiB
JSON
Raw Normal View History

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