[SOLVED] Transform map issue

What I’m thinking about is autoupdate, which by default should update an Item in response to a command.
That should log a “prediction” first - where are those?

As per your instructions i get command has been sent successfully.
So what i ;ve noticed is when i sent the command 500_9 i can see in my ui TEMP NOT RISING, but when i send 500_80 i still see MAP(BOILER.MAP):500_80.

Okay, that’s progress. Is there still this associated message?

I’m rather puzzled by why this message is in a different form to

which is a simple lookup failure.

There is something funny about what you think is 500_80. Remember your Item is a String type, really you should test it by sending “500_80”

1 Like

At last!!!
I created a new number item (BoilerStatus)

I created the rule below

rule "BoilerStatus"
when
Item BoilerStatus_str changed
then
BoilerStatus.postUpdate(BoilerStatus_str.state.toString.split("_").get(1))
end

So i get just a bare number (9,2,80) i created a NEW map file and voila!!!
Thanks everyone.