I would like to have a button up and a button down, like the ones in Setpoint of Site Maps. But I don’t know who to make one button call the VOLUP binding and the other call VOLDOWN. Is this possible?
Use a Design Pattern: Proxy Item to put on your sitemap and use a Mappings to make the two buttons and a Rule to forward the command to the right Switch.
rule "Tv Volume Proxy received command"
when
Item FF_LivingRoom_LivingRoom_TvVolumeProxy received command
then
if(receivedCommand == ON) FF_LivingRoom_LivingRoom_TvVolumeUp.sendCommand(ON)
else FF_LivingRoom_LivingRoom_TvVolumeDown.sendCommand(ON)
end