-
Notifications
You must be signed in to change notification settings - Fork 55
/
knx_config.json
90 lines (90 loc) · 2.85 KB
/
knx_config.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
{
"knxconnection": "knxd",
"knxd_ip": "192.168.178.212",
"knxd_port": 6720,
"Devices": [
{
"DeviceName": "Arbeitszimmerlampe",
"Services": [
{
"ServiceType": "Lightbulb",
"ServiceName": "Bürolampe",
"Characteristics": [
{
"Type": "On",
"Set": [
"1/3/5"
],
"Listen": [
"1/3/5"
]
}
]
}
]
},
{
"DeviceName": "Arbeitszimmerrollo",
"Services": [
{
"ServiceType": "WindowCovering",
"Handler": "GiraJalousieActuator",
"ServiceName": "Büro-Rollo",
"Characteristics": [
{
"Type": "TargetPosition",
"Set": [
"2/3/46"
],
"DPT": "DPT5"
},
{
"Type": "CurrentPosition",
"Listen": [
"2/3/26"
]
},
{
"Type": "PositionState"
}
],
"KNXObjects": [
{
"Type": "ShutterMove",
"Listen": "2/3/6",
"DPT": "DPT1"
}
],
"KNXReadRequests": [
"2/3/26",
"2/3/46"
],
"LocalConstants": {
"SomeVariable_notUsedHere": "SomeValue",
"OtherBlinds_notUsedHere": "OfficeShutter"
}
}
]
},
{
"DeviceName": "TestDevice",
"hint": "Sample to show characteristics without KNX addresses",
"Services": [
{
"ServiceType": "LockMechanism",
"Handler": "DummyHandler",
"ServiceName": "Türschloss",
"Characteristics": [
{
"Type": "LockCurrentState"
},
{
"Type": "LockTargetState"
}
]
}
]
}
],
"GroupAddresses": []
}