mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-12 06:01:53 +01:00
a37cceab67
* mavenize openHAB and integrate mavenized ESH repository Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
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
|