forked from Vegz78/micro-bit-game-pad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pxt.json
43 lines (43 loc) · 1.08 KB
/
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
41
42
43
{
"name": "BLE-Microbit-Gamepad",
"version": "1.0.13",
"description": "Microbit Bluetooth package to make MicroBit as a two button + accelerometer based gamepad",
"license": "MIT",
"dependencies": {
"core": "*",
"bluetooth": "*"
},
"files": [
"README.md",
"extension.cpp",
"HIDServiceBase.cpp",
"HIDServiceBase.h",
"JoystickService.cpp",
"JoystickService.h",
"HIDDeviceInformationService.h",
"USBHID_Types.h",
"shims.d.ts",
"enums.d.ts"
],
"testFiles": [
"test.ts"
],
"public": true,
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"dfu_service": 0,
"event_service": 0,
"device_info_service": 0,
"security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM"
},
"gatt_table_size": "0x700"
}
}
}
}