Hello,
i am sure that is whas written 1 mio times, i have read it und do not understand.
I have Item
DateTime TestDateTime "Test DateTime"
I have rule with which i would like to put current datetime in item
rule "Test DateTime"
when
Time cron "0/2 * * * * ?"
then
val nowDateTime = (now)
logInfo("asrto.rules", "nowDateTime: " + nowDateTime)
TestDateTime.postUpdate(nowDateTime)
end
And i get error
2019-10-24 11:46:14.012 [INFO ] [e.smarthome.model.script.asrto.rules] - nowDateTime: 2019-10-24T11:46:14.009+02:00
2019-10-24 11:46:14.016 [ERROR] [ntime.internal.engine.ExecuteRuleJob] - Error during the execution of rule 'Test DateTime': An error occurred during the script execution: Could not invoke method: org.eclipse.smarthome.model.script.actions.BusEvent.postUpdate(org.eclipse.smarthome.core.items.Item,org.eclipse.smarthome.core.types.State) on instance: null
But why, is this DateTIme format wrong for Openahab item?
Here https://www.openhab.org/docs/configuration/items.html#type i can see only word āStores date and timeā but in whioch format!?
Thanks a lot!