Hey folks,
I'm trying to poke around my RaspberryPI which is connected to a Samsung UE46ES6305U TV by HDMI.
The RaspberryPI is installed with Xbian and libcec.
What I'm trying to do is to use the RaspberryPI to control the TV as much as possible.
Right now for example I can use the cec-client to turn the TV on and off by evoking the commands
echo 'on 0' | cec-client -s
echo 'standby 0' | cec-client -s
or to switch between the HDMI sources by
echo "tx 4F 82 10 00" | cec-client -s
echo "tx 4F 82 20 00" | cec-client -s
echo "tx 4F 82 30 00" | cec-client -s
What I have been unsuccessful about is the ability to change between other AV sources, such as SCART and component for example. Also I've tried to change the volume up and down without luck. Did not get mute to work either.
I've tried the
cec-o-matic site but did not manage to have anything working from those codes, probably because I did something wrong by my self.
Could you guys give a hint (or full solution) on how to get on track with getting more control through cec? For example vol+ / vol-, change between other sources, left, right, up, down, enter, menu etc. If possible I would like most functions from my normal remote control to be working through cec-client.
Thanks!