8 lines
245 B
Plaintext
8 lines
245 B
Plaintext
rule "Weatherstation Temperature"
|
|
when
|
|
Item Weatherstation_Temperature received update
|
|
then
|
|
Weatherstation_Temperature.postUpdate(
|
|
(( Float::parseFloat(temperature_out.state.toString) as Number))
|
|
)
|
|
end |