Hi NY,
Thanks for the complement.
My self I have the channel set as part of the Harmony activity as the same receiver is used for radio as well. So that is an option and the other is a scene with PLEG as Chris explained.
You can also use a little LUA code as part of the scene as below. When you then use the MultiSwitch plugin for your favourite channels you can use that as scene triggers.
luup.call_action("urn:rboer-com:serviceId:Harmony1", "IssueDeviceCommand",{DeviceID="12345678",Command="6",Duration="0"},HDID)
luup.call_action("urn:rboer-com:serviceId:Harmony1", "IssueDeviceCommand",{DeviceID="12345678",Command="0",Duration="0"},HDID)
luup.call_action("urn:rboer-com:serviceId:Harmony1", "IssueDeviceCommand",{DeviceID="12345678",Command="1",Duration="0"},HDID)
You must set the correct DeviceID for how the Harmony knows your TV. You can see that as variable DeviceID of your TV device. HDID is de device number of the main Harmony device.
You may need to put in a little delay to allow the TV to be fully switched on. Best to then make a function and use a luup.call_delay to call that function.
Cheers Rene