This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
snippets-registry.json
104 lines (104 loc) · 3.4 KB
/
snippets-registry.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"auto-start": {
"title": "Start automatically after boot",
"description": "Start an Activity after boot and re-start whenever the app terminates",
"category": "General",
"samples": []
},
"peripheral-gpio-input-java": {
"title": "Open GPIO input (Java)",
"description": "Open a GPIO pin and configure it as an input",
"category": "Peripheral I/O",
"samples": [
"https://github.com/androidthings/sample-simplepio/tree/master/java"
]
},
"peripheral-gpio-output-java": {
"title": "Open GPIO output (Java)",
"description": "Open a GPIO pin and configure it as an output",
"category": "Peripheral I/O",
"samples": [
"http://github.com/androidthings/sample-simplepio/tree/master/java"
]
},
"peripheral-pwm-java": {
"title": "Open PWM (Java)",
"description": "Open a PWM pin and configure it",
"category": "Peripheral I/O",
"samples": [
"http://github.com/androidthings/sample-simplepio/tree/master/java"
]
},
"peripheral-gpio-input-kotlin": {
"title": "Open GPIO input (Kotlin)",
"description": "Open a GPIO pin and configure it as an input",
"category": "Peripheral I/O",
"samples": [
"http://github.com/androidthings/sample-simplepio/tree/master/kotlin"
]
},
"peripheral-gpio-output-kotlin": {
"title": "Open GPIO output (Kotlin)",
"description": "Open a GPIO pin and configure it as an output",
"category": "Peripheral I/O",
"samples": [
"http://github.com/androidthings/sample-simplepio/tree/master/kotlin"
]
},
"peripheral-pwm-kotlin": {
"title": "Open PWM (Kotlin)",
"description": "Open a PWM pin and configure it",
"category": "Peripheral I/O",
"samples": [
"http://github.com/androidthings/sample-simplepio/tree/master/kotlin"
]
},
"driver-bmx280-java": {
"title": "BMX280 Sensor Driver (Java)",
"description": "Register a sensor input driver that emits sensor values",
"category": "User Drivers",
"samples": [
"https://github.com/androidthings/drivers-samples/tree/master/bmx280"
]
},
"driver-bmx280-kotlin": {
"title": "BMX280 Sensor Driver (Kotlin)",
"description": "Register a sensor input driver that emits sensor values",
"category": "User Drivers",
"samples": [
"https://github.com/androidthings/drivers-samples/tree/master/bmx280"
]
},
"driver-button-java": {
"title": "Button Driver (Java)",
"description": "Register a button driver that emits keycodes",
"category": "User Drivers",
"samples": [
"https://github.com/androidthings/sample-button/tree/master/java"
]
},
"driver-button-kotlin": {
"title": "Button Driver (Kotlin)",
"description": "Register a button driver that emits keycodes",
"category": "User Drivers",
"samples": [
"https://github.com/androidthings/sample-button/tree/master/kotlin"
]
},
"driver-ht16k33-java": {
"title": "Alphanumeric Display (Java)",
"description": "Use an alphanumeric display over I2C",
"category": "User Drivers",
"samples": [
"https://github.com/androidthings/drivers-samples/tree/master/ht16k33"
]
},
"driver-ht16k33-kotlin": {
"title": "Alphanumeric Display (Kotlin)",
"description": "Use an alphanumeric display over I2C",
"category": "User Drivers",
"samples": [
"https://github.com/androidthings/drivers-samples/tree/master/ht16k33"
]
}
}