mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-12 06:01:53 +01:00
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
|
rule "Initialize demo items"
|
||
|
when
|
||
|
System started
|
||
|
then
|
||
|
DemoLocation.postUpdate("52,9")
|
||
|
DemoContact.postUpdate(OPEN)
|
||
|
DemoString.postUpdate("Hello SmartHome!")
|
||
|
DemoDateTime.postUpdate(new DateTimeType())
|
||
|
DemoNumber.postUpdate(12.34)
|
||
|
end
|