-
Notifications
You must be signed in to change notification settings - Fork 1
/
library.json
30 lines (30 loc) · 922 Bytes
/
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
{
"name": "RoveComm",
"author": "MST MRDT",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/MissouriMRDT/RoveComm_Arduino.git"
},
"description": "Communication protocol used by the Missouri S&T Mars Rover Design Team.",
"keywords": [ "rovecomm", "mrdt" ],
"frameworks": [ "arduino" ],
"platforms": [ "titiva", "teensy" ],
"headers": [ "RoveComm.h" ],
"dependencies": [],
"build": {
"libLDFMode": "chain+"
},
"examples": [
{
"name": "RoveComm Ethernet TCP",
"base": "examples/RoveCommEthernetTCP",
"files": ["RoveCommEthernetTCP.h", "RoveCommEthernetTCP.ino"]
},
{
"name": "RoveComm Ethernet UDP",
"base": "examples/RoveCommEthernetUDP",
"files": ["RoveCommEthernetUDP.h", "RoveCommEthernetUDP.ino"]
}
]
}