mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-12 14:11:54 +01:00
47194895ac
* specify directories so we do not rely on the current working directory The current working directory has been changed between Bnd 4.1.0 and 4.2.0 and we should not rely on a specific choosen one. We should set the appropriate directories ourself. 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
|