forked from vitska/PCA9685-Arduino-Library
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
library.json
62 lines (62 loc) · 1.84 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
60
61
62
{
"name": "PCA9685-Arduino",
"version": "1.2.15",
"keywords": "PCA9685, pwm, i2c, controller, driver",
"description": "Library to control a PCA9685 16-channel PWM driver module from an Arduino board.",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "NachtRaveVL",
"email": "nachtravevl@gmail.com",
"url": "https://github.com/NachtRaveVL",
"maintainer": true
},
{
"name": "Vitska",
"url": "https://github.com/vitska"
},
{
"name": "Kasper Skårhøj",
"url": "https://github.com/kasperskaarhoj"
}
],
"homepage": "https://github.com/NachtRaveVL/PCA9685-Arduino/",
"repository": {
"type": "git",
"url": "https://github.com/NachtRaveVL/PCA9685-Arduino.git"
},
"examples": [
{
"name": "SimpleExample",
"base": "examples/SimpleExample",
"files": ["SimpleExample.ino"]
},
{
"name": "BatchingExample",
"base": "examples/BatchingExample",
"files": ["BatchingExample.ino"]
},
{
"name": "MultiDeviceProxyExample",
"base": "examples/MultiDeviceProxyExample",
"files": ["MultiDeviceProxyExample.ino"]
},
{
"name": "ServoEvaluatorExample",
"base": "examples/ServoEvaluatorExample",
"files": ["ServoEvaluatorExample.ino"]
},
{
"name": "SoftwareI2CExample",
"base": "examples/SoftwareI2CExample",
"files": ["SoftwareI2CExample.ino"]
},
{
"name": "ModuleInfo",
"base": "examples/ModuleInfo",
"files": ["ModuleInfo.ino"]
}
],
"frameworks": "arduino",
"platforms": "*"
}