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
| {
| "name": "BLE Connector",
| "rescanIntervalSeconds": 100,
| "checkIntervalSeconds": 100,
| "scanTimeSeconds": 5,
| "passiveScanMode": true,
| "devices": [
| {
| "name": "Temperature and humidity sensor",
| "MACAddress": "4C:65:A8:DF:85:C0",
| "addrType": "public",
| "telemetry": [
| {
| "key": "temperature",
| "method": "notify",
| "characteristicUUID": "226CAA55-6476-4566-7562-66734470666D",
| "byteFrom": 2,
| "byteTo": 6
| },
| {
| "key": "humidity",
| "method": "notify",
| "characteristicUUID": "226CAA55-6476-4566-7562-66734470666D",
| "byteFrom": 9,
| "byteTo": 13
| }
| ],
| "attributes": [
| {
| "key": "name",
| "characteristicUUID": "00002A00-0000-1000-8000-00805F9B34FB",
| "method": "read",
| "byteFrom": 0,
| "byteTo": -1
| }
| ],
| "attributeUpdates": [
| {
| "attributeOnThingsBoard": "sharedName",
| "characteristicUUID": "00002A00-0000-1000-8000-00805F9B34FB"
| }
| ],
| "serverSideRpc": [
| {
| "methodRPC": "rpcMethod1",
| "withResponse": true,
| "characteristicUUID": "00002A00-0000-1000-8000-00805F9B34FB",
| "methodProcessing": "read"
| }
| ]
| }
| ]
| }
|
|