-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pxt.json
79 lines (79 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "microbit-pxt-blehid - Copy",
"version": "0.1.0",
"description": "BLE HID Support",
"license": "MIT",
"dependencies": {
"core": "*",
"bluetooth": "*"
},
"files": [
"README.md",
"HIDService.cpp",
"HIDService.h",
"HIDReporter.cpp",
"HIDReporter.h",
"debug.h",
"shims.d.ts",
"enums.d.ts",
"main.py",
"ascii2scan.cpp",
"ascii2scan.h",
"keyboard.ts",
"keyboard.cpp",
"KeyboardReporter.cpp",
"KeyboardReporter.h",
"mouse.ts",
"mouse.cpp",
"MouseReporter.cpp",
"MouseReporter.h",
"media.ts",
"media.cpp",
"MediaReporter.cpp",
"MediaReporter.h",
"absmouse.ts",
"absmouse.cpp",
"AbsMouseReporter.cpp",
"AbsMouseReporter.h",
"gamepad.ts",
"gamepad.cpp",
"GamepadReporter.cpp",
"GamepadReporter.h",
"main.ts"
],
"testFiles": [
"test.ts"
],
"public": true,
"targetVersions": {
"target": "6.0.26",
"targetId": "microbit"
},
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"disablesVariants": [
"mbdal"
],
"authors": [
"Bill Siever <[email protected]>"
],
"card": {
"name": "Bluetooth Human Interfaces",
"imageUrl": "file:../icon.png",
"feedbackUrl": "https://github.com/bsiever/microbit-pxt-blehid/discussions/16"
},
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"open": 0,
"whitelist": 1,
"security_level": "SECURITY_MODE_ENCRYPTION_NO_MITM",
"device_info_service": 0
}
}
}
}
}