-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathlibrary.json
More file actions
29 lines (29 loc) · 787 Bytes
/
library.json
File metadata and controls
29 lines (29 loc) · 787 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "CRC32",
"version": "2.0.1",
"description": "An Arduino library for calculating a CRC32 checksum.",
"keywords": "CRC32,checksum,error-detection,Arduino,Data Processing",
"license": "MIT",
"export": {
"include": ["src", "examples/CRC32", "LICENSE.md", "README.md"]
},
"authors": {
"name": "Christopher Baker",
"email": "info@christopherbaker.net",
"maintainer": true
},
"examples": [
{
"name": "CRC32",
"base": "examples/CRC32",
"files": ["CRC32.ino"]
}
],
"repository": {
"type": "git",
"url": "https://github.com/bakercp/CRC32.git"
},
"frameworks": "*",
"platforms": "*"
}