[satel] Thing discovery fix (#9718)
Signed-off-by: Krzysztof Goworek <krzysztof.goworek@gmail.com>
This commit is contained in:
@@ -289,7 +289,7 @@ The result of this action is compatible with channels of `event-log` thing and c
|
||||
Usage:
|
||||
|
||||
```
|
||||
val actions = getActions("satel", "satel:event-log:home")
|
||||
val actions = getActions("satel", "satel:event-log:home:EventLog")
|
||||
val eventRec = actions.readEvent(-1)
|
||||
logInfo("EventLog", eventRec.get("description"))
|
||||
```
|
||||
@@ -309,9 +309,9 @@ Bridge satel:ethm-1:home [ host="192.168.0.2", refresh=1000, userCode="1234", en
|
||||
Thing shutter KitchenWindow [ upId=2, downId=3 ]
|
||||
Thing output Siren [ id=17, wireless=true ]
|
||||
Thing atd-100 KitchenTemp [ id=10, refresh=30 ]
|
||||
Thing system System []
|
||||
Thing event-log EventLog []
|
||||
}
|
||||
Thing satel:system:home "System" (satel:ethm-1:home) []
|
||||
Thing satel:event-log:home "Event log" (satel:ethm-1:home) []
|
||||
|
||||
```
|
||||
|
||||
@@ -328,9 +328,9 @@ Switch BEDROOM_TAMPER "Bedroom PIR tampered" (Satel) { channel="satel:zone:home:
|
||||
Switch BEDROOM_TAMPER_M "Bedroom PIR tamper memory" (Satel) { channel="satel:zone:home:BedroomPIR:tamper_alarm_memory" }
|
||||
Switch KITCHEN_LAMP "Kitchen lamp" (Satel) { channel="satel:output:home:KitchenLamp:state" }
|
||||
Rollershutter KITCHEN_BLIND "Kitchen blind" (Satel) { channel="satel:shutter:home:KitchenWindow:shutter_state" }
|
||||
Switch SYSTEM_TROUBLES "Troubles in the system" (Satel) { channel="satel:system:home:troubles" }
|
||||
Switch SYSTEM_TROUBLES "Troubles in the system" (Satel) { channel="satel:system:home:System:troubles" }
|
||||
String KEYPAD_CHAR ">" <none> (Satel)
|
||||
String USER_CODE "User code" (Satel) { channel="satel:system:home:user_code" }
|
||||
String USER_CODE "User code" (Satel) { channel="satel:system:home:System:user_code" }
|
||||
Switch SIREN_LOBATT "Siren: low battery level" (Satel) { channel="satel:output:home:Siren:device_lobatt" }
|
||||
Switch SIREN_NOCOMM "Siren: no communication" (Satel) { channel="satel:output:home:Siren:device_nocomm" }
|
||||
Number:Temperature KITCHEN_TEMP "Kitchen temperature [%.1f °C]" <temperature> (Satel) { channel="satel:atd-100:home:KitchenTemp:temperature" }
|
||||
@@ -380,7 +380,7 @@ rule "Keypad char entered"
|
||||
when
|
||||
Item KEYPAD_CHAR changed
|
||||
then
|
||||
val org.joda.time.DateTime timeout = now.plusSeconds(20)
|
||||
val timeout = now.plusSeconds(20)
|
||||
|
||||
if (KEYPAD_CHAR.state == "-") {
|
||||
logInfo("Keypad", "Changing user code")
|
||||
@@ -414,7 +414,7 @@ rule "Send event log"
|
||||
when
|
||||
Item Alarms changed to ON
|
||||
then
|
||||
val actions = getActions("satel", "satel:event-log:home")
|
||||
val actions = getActions("satel", "satel:event-log:home:EventLog")
|
||||
if (null === actions) {
|
||||
logInfo("EventLog", "Actions not found, check thing ID")
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user