-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
59 lines (59 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "UIRBcorelib",
"version": "1.2.3",
"description": "Universal IR Blaster core library for Arduino.",
"keywords": [
"uirb",
"core",
"library",
"infrared",
"blaster",
"universal",
"ir"
],
"repository":
{
"type": "git",
"url": "https://github.com/DjordjeMandic/UIRBcorelib.git",
"branch": "release"
},
"authors":
[
{
"name": "Djordje Mandic",
"url": "https://linktr.ee/djordjemandic",
"maintainer": true
}
],
"examples": [
{
"name": "Basic",
"base": "examples/Basic",
"files": ["boards/uirb-v02-atmega328p.json", "src/Basic.ino", "platformio.ini"]
},
{
"name": "Calibration",
"base": "examples/Calibration",
"files": ["boards/uirb-v02-atmega328p.json", "src/Calibration.ino", "platformio.ini"]
},
{
"name": "BypassEEPROM",
"base": "examples/BypassEEPROM",
"files": ["boards/uirb-v02-atmega328p.json", "svd/atmega328p.svd", "src/BypassEEPROM.ino", "platformio.ini"]
}
],
"license": "MIT",
"frameworks": "arduino",
"platforms": "atmelavr",
"headers": "UIRBcore.hpp",
"build":{
"flags": [
"-DUIRB_CORE_LIB"
],
"libLDFMode": "deep"
},
"scripts": {
"postinstall": ["scripts/update_version.py"]
}
}