HoneyWell Wifi Thermostat help?

Hi Guys!

So i’m trying to scho the value of the SetPoint number to the end of my script and its not working. I have tried many different ways but no joy. Can i get some input please… :wink:

This is what i am trying to do essentially!

//* Set Heat Setpoint *)
rule "Set Heat SetPoint"
when
    Item IndHeatSet received command
then
    // *executeCommandLine("/etc/therm.py -h 61")
    output = executeCommandLine("/etc/therm.py -h" + receivedCommand)
end


Items:

Number IndHeatSet "Heating [%.2f °F]" (persist)

SiteMap:

Setpoint item=IndHeatSet icon="heating" minValue=60 maxValue=75 step=1

NM. I figured it out. All good :wink:

//* Set Heat Setpoint *)
rule "Set Heat SetPoint"
when
    Item IndHeatSet received command
then
    // *executeCommandLine("/etc/therm.py -h 61")
        executeCommandLine("/etc/therm.py -h " + receivedCommand)
end