-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
53 lines (53 loc) · 1.19 KB
/
library.json
File metadata and controls
53 lines (53 loc) · 1.19 KB
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
{
"name": "HIDForge",
"version": "0.1.0",
"description": "A comprehensive library for creating USB (HID, MSC) and BLE HID devices on ESP32.",
"keywords": "hid, keyboard, mouse, msc, sd card, ble, usb, security, esp32",
"repository": {
"type": "git",
"url": "https://github.com/Meshwa428/HIDForge.git"
},
"authors": [
{
"name": "Bruce Firmware Authors",
"url": "https://bruce.computer"
},
{
"name": "Meshwa",
"email": "meshupatel2847@gmail.com"
}
],
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": {
"h2zero/NimBLE-Arduino": "^2.3.3"
},
"build": {
"libArchive": false,
"srcFilter": [
"+<*>",
"-<examples/>",
"-<tests/>"
],
"headers": [
"BleHid.h",
"BleKeyboard.h",
"BleManager.h",
"BleMouse.h",
"HIDForge.h",
"HIDInterface.h",
"MouseInterface.h",
"UsbHid.h",
"UsbMouse.h",
"UsbMsc.h",
"common/keys.h",
"detail/UsbHidDriver.h",
"layouts/KeyboardLayout.h",
"msc/SDCard.h",
"msc/SDCardArduino.h",
"msc/SDCardIdf.h",
"msc/SDCardLazyWrite.h",
"msc/SDCardMultiSector.h"
]
}
}