-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
43 lines (43 loc) · 1.08 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
{
"name": "I2C_Scanner",
"version": "1.0.8",
"keywords": "I2C, Device, Scanner, Console, VT100, Multiplexer, Sensor",
"description": "The Two-Wire interface is extremely useful for connecting multiple devices, as they can all share the same two pins (plus a ground return). This is because the devices are \"addressable\". Each device needs to have a unique address in the range 0x03 to 0x77. This tool scans the master I2C bus and reports connected devices.",
"authors":
{
"name": "Mehmet Gunce Akkoyun",
"email": "akkoyun@me.com",
"url": "https://github.com/akkoyun"
},
"license": "MIT",
"frameworks": "arduino",
"headers": "I2C_Scanner.h",
"platforms":
[
"atmelavr",
"atmelmegaavr"
],
"repository":
{
"type": "git",
"url": "https://github.com/akkoyun/I2C_Scanner.git"
},
"dependencies":
[
{
"owner": "akkoyun",
"name": "Console"
},
{
"owner": "akkoyun",
"name": "I2C_Functions"
}
],
"examples": [
{
"name": "I2C Device Scanner With Multiplexer",
"base": "examples/Device_Scanner_With_Mux",
"files": ["Device_Scanner_With_Mux.ino"]
}
]
}