-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-sample.json
54 lines (53 loc) · 1.41 KB
/
config-sample.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
[
{
"filename": "my_lbs",
"file_header_comment": "LED Button Service",
"base_uuid": "xxxxxxxx-1212-efde-1523-785feabcd123",
"service": {
"name": "lbs",
"uuid": "00001523"
},
"characteristics": [
{
"name": "button",
"uuid": "00001524",
"write": {
"enable": false
},
"read": {
"enable": true,
"length": 1
},
"notification": false,
"indication": true
},
{
"name": "led",
"uuid": "00001525",
"write": {
"enable": true,
"check_length": 1,
"check_offset": 0
},
"read": {
"enable": false
},
"notification": false,
"indication": false
},
{
"name": "mysensor",
"uuid": "00001526",
"write": {
"enable": false
},
"read": {
"enable": false,
"length": 4
},
"notification": true,
"indication": false
}
]
}
]