-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
51 lines (51 loc) · 1.17 KB
/
library.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "sensor-VEML7700LightSensor",
"version": "0.5.0",
"description": "VEML7700 Ambient light sensor",
"keywords": "Fabrica-IO, sensor, light",
"repository":
{
"type": "git",
"url": "https://github.com/FabricaIO/sensor-VEML7700LightSensor.git"
},
"authors":
[
{
"name": "Sam Groveman",
"email": "SamGroveman@outlook.com",
"url": "https://github.com/FabricaIO"
}
],
"dependencies": {
"Sparkfun VEML7700 Arduino Library": "sparkfun/SparkFun VEML7700 Arduino Library @ ^1.0.0"
},
"license": "GPLv3",
"homepage": "https://github.com/FabricaIO",
"frameworks": "arduino",
"platforms": "*",
"fabricaio" : {
"name": "LightSensor",
"type": 0,
"category": "Environment Sensor",
"libname": "VEML7700LightSensor",
"includes": ["VEML7700LightSensor"],
"description": "A sensor that measures ambient light",
"constructor":
[
[
{
"name": "I2C_bus",
"type": "TwoWire*",
"description": "The I2C bus the sensor is connected to",
"default": "&Wire"
},
{
"name": "configFile",
"type": "String",
"description": "The name of the config file",
"default": "VEML7700LightSensor.json"
}
]
]
}
}