-
Notifications
You must be signed in to change notification settings - Fork 0
/
velux.things
49 lines (39 loc) · 1.47 KB
/
velux.things
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
/**
*
* Copyright (c) 2010-2019 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*/
/**
* OpenHAB thing definition for velux binding:
* define basic Velux bridge parameters
*
* @author Guenther Schreiner - Initial contribution
*/
//
// Definition of Velux bridge velux:klf200:home
//
Bridge velux:klf200:home [ ipAddress="192.168.45.9", tcpPort=51200 ] {
// Velux scenes
Thing scene windowClosed [ sceneName="V_DG_Window_Mitte_000" ]
Thing scene windowUnlocked [ sceneName="V_DG_Window_Mitte_005" ]
Thing scene windowOpened [ sceneName="V_DG_Window_Mitte_100" ]
Thing scene unknownScene [ sceneName="ThisIsADummySceneName" ]
// Velux IO-homecontrol devices
Thing window V_DG_M_W [ serial="56:23:3E:26:0C:1B:00:10" ]
Thing rollershutter V_DG_M_S [ serial="56:32:14:5A:12:1C:05:5F" ]
Thing rollershutter V_DG_W_S [ serial="53:09:40:5A:0C:2A:05:64" ]
Thing actuator V_DG_O_S [ serial="53:09:40:5A:0C:23:0A:6E" ]
// Virtual rollershutter
Thing vshutter V_WINDOW [ sceneLevels="0,V_DG_Window_Mitte_000#5,V_DG_Window_Mitte_005#100,V_DG_Window_Mitte_100" ]
}
//
// vim: syntax=Xtend vim: noai:ts=4:sw=4
//
// end-of-things/velux.things
//