There are a variety of ways to get code fences, but I usually just select the text and press the </> button. Unfortunately, it sometimes gets a little messy with long, unbroken strings of text.
Number onewiretemp1Value_num "HVAC Main [%.1f °C]" (gTemp)
rule “onewiretempValue1 String to Number”
when
Item onewiretemp1Value changed
then
onewiretemp1Value_num.postUpdate(Float::parseFloat(String::format("%s",onewiretemp1Value.state).replace(’ ‘,’’)))
end
Since it works when you revert to 2.5.0, I would guess that the item didn’t load properly after the upgrade.
Why did you go to 2.5.3 instead of straight to 2.5.10?
Russ