forked from max22-/ESP32-BLE-MIDI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
48 lines (48 loc) · 1.33 KB
/
library.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
{
"name": "ESP32-BLE-MIDI",
"version": "0.3.0",
"description": "A library to use MIDI over Bluetooth Low Energy on ESP32 boards.",
"keywords": "esp32, bluetooth, ble, midi",
"repository":
{
"type": "git",
"url": "https://github.com/max22-/ESP32-BLE-MIDI.git"
},
"authors":
[
{
"name": "Maxime ANDRÉ",
"email": "[email protected]",
"url": "https://github.com/max22-/"
}
],
"license": "MIT",
"homepage": "https://github.com/max22-/ESP32-BLE-MIDI",
"dependencies": {
"h2zero/NimBLE-Arduino": "^1.4.1"
},
"frameworks": ["arduino"],
"platforms": ["espressif32"],
"examples": [
{
"name": "01-Basic-Midi-Device",
"base": "examples/01-Basic-Midi-Device",
"files": ["01-Basic-Midi-Device.ino"]
},
{
"name": "02-Basic-Midi-Client",
"base": "examples/02-Basic-Midi-Client",
"files": ["02-Basic-Midi-Client.ino"]
},
{
"name": "03-Receiving-Data",
"base": "examples/03-Receiving-Data",
"files": ["03-Receiving-Data.ino"]
},
{
"name": "04-Dump-Messages",
"base": "examples/04-Dump-Messages",
"files": ["04-Dump-Messages.ino"]
}
]
}