Example for MAX!

Hi Community,
I’m totally fresh to openHAB and Home-Automation, but I owned a MAX!-System already, so I thought, I give it a try.
But after one week I just don’t get how I can actually modify the temperatur settings on my thermostats.
I can read all the values, but I don’t know how to change anything… Is there maybe some kind of walkthrouh or documentation or example on how to accomplish this?
I googelt and searched throuh the board with no real enlightment :-/

Thanks in advance!

If you have a number item like this (in my case zwave):

Number DanLivConnZSet1 <heating> (gRestore) {channel="zwave:device:15ca6a108b9:node8:thermostat_setpoint_heating"}

you could put a setpoint item on your sitemap like this:

Setpoint item=DanLivConnZSet1 minValue=16 maxValue=25 step=1 label="Heizung [%.1f °C]"

http://docs.openhab.org/configuration/sitemaps.html#element-type-setpoint

For MAX!, you would need to set the desired value on the set_temp channel, so your item should look like this

Number K_Buero_Thermo_Soll "SOLL Büro [%.1f °C]" <temperature> (K_Buero,Heizung) { channel="max:thermostat:KMD101XXXX:KMD3XXXXX:set_temp" }

(and if you don’t use items files, configure the corresponding entries in PaperUI)

Wow, Thank you Guys!
Will try this tonight in my environment!