Thanks!!
one last question, as e.g. after changing config files the item will go to “NULL” m rules run (i guess) into a problem. What is the smartest way to overcome this…i already did a rule on systemstart…but this seems to not trigger when e.g. only config files change. would it make sense to change it that way…so if it is NULL when charging starts…it would immediately go to ON and from there its no problem again ???
// ***************************************************************************************************
rule "ChargeStart Detection"
when
Item EVchargePower received update
then
if ((EVchargePower.state > 1000) && (Car_Charging.state == OFF) || (Car_Charging.state == NULL)
{ Car_Charging.sendCommand(ON)
EVchargeStartMeter.postUpdate(EVchargeWhImp.state)
}
end