-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathlibrary.json
More file actions
45 lines (45 loc) · 949 Bytes
/
library.json
File metadata and controls
45 lines (45 loc) · 949 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "Ds1302",
"version": "1.1.1",
"keywords": "library, C, C++, RTC, DS1302, clock, date, time, datetime",
"description": "A C/C++ library to use DS1302 RTC chip.",
"license": "AGPL-3.0",
"homepage": "https://github.com/Treboada/Ds1302",
"frameworks": "arduino",
"platforms": [
"atmelavr",
"espressif8266",
"espressif32"
],
"headers": [
"Ds1302.h"
],
"build": {
"srcDir": "lib/Ds1302"
},
"examples": [
{
"name": "GetDateTime",
"base": "examples/get-date-time/src",
"files": [
"main.cpp"
]
},
{
"name": "SetDateTime",
"base": "examples/set-date-time/src",
"files": [
"main.cpp"
]
}
],
"repository": {
"type": "git",
"url": "https://github.com/Treboada/Ds1302.git"
},
"authors": {
"name": "Rafa Couto",
"email": "caligari@treboada.net",
"url": "http://www.linkedin.com/in/rafacouto"
}
}