Skip to main content

How To remap CEC buttons on a Sony TV Remote for XBMC under Xbian 1.0.5a

I recently configured a Raspberry Pi for a friend using Xbian and a Sony 46" LCD. It worked flawlessly with CEC support although there were a few commands that the Sony TV (remote) would not pass through the HDMI cable to the Pi.

As such, I had no Context Menu or Info button which are both rather useful. After spending a few hours searching about, I managed to resolve it by remapping the coloured buttons below the D-Pad to perform the following:

Red = Context Menu
Blue = Info
Yellow = Update video library
Green = Clean video library

You can only remap buttons that are supported by your TV remote. i.e. If you push a button on your TV remote and your TV performs a TV function (in my case the number buttons switched back to TV and that channel) or the TV displays a message saying "Unsupported" or something similar, there is nothing you can do with that button. Those buttons are not being sent via CEC back to the Pi over HDMI.

What you need:
The IP address of your Pi.
WinSCP or a similar tool to SCP into your Xbian instance.

  1. Using WinSCP, navigate to root/usr/local/share/xbmc/system/keymaps/remote.xml
  2. Copy the remote.xml file to your local machine. 
  3. Edit the remote.xml file so that the coloured buttons under the global section match your requirements. Mine is shown right.
  4. Copy the remote.xml file back to /home/xbian/.xbmc/userdata/keymaps then reboot your Pi. 
You should now have access to the Context menu with the Red button and Info (for video information etc.) on the Green button.


Comments

  1. i can't find the initial remote.xml to perform a copy...

    Using ubuntu with xbmc

    best regards Oskar

    ReplyDelete
    Replies
    1. This may help? http://wiki.xbmc.org/index.php?title=Keyboard.xml

      Delete
  2. thanks for the fast answer, but there is no remote.xml like in your post.
    shall i use the keyboard.xml instead of the remote.xml ??

    confused :)

    ReplyDelete
    Replies
    1. Section 2 there is a link to download a default keyboard.xml file. Modify this as required and save to userdata/keymaps. Name is not important as long as it ends with .xml.

      Delete
  3. This comment has been removed by the author.

    ReplyDelete
  4. Thanks! Very useful information.

    I've just attached a Pulse8 CEC adapter and mapped my Sony remote as follows

    LoadProfile(Kids)
    LoadProfile(Master user)
    XBMC.UpdateLibrary(video)
    XBMC.ActivateWindow(videos,TvShowTitles)

    ReplyDelete

Post a Comment

Popular posts from this blog

Using ESPEasy with Home Assistant via MQTT

Preface: I've just started playing around with Home Assistant on a Raspberry Pi and exploring the world of MQTT to control devices on the network. Learning curve is a bit steep but worth the effort as MQTT is very fast. The hardware and software tools I'm using are as follows: 2 x Sonoff relay units 2 x NodeMCU Boards ESPEasy firmware (must be version 121 or above as that contains the MQTT 'retain' flag option. Home Assistant software on Raspberry Pi2 MQTT Test Software: PC: MQTT.fx Android: MQTT Dashboard

My Notepad++ tricks when editing YAML files in Home Assistant

To comment out a whole section in one go: Highlight the text you want to comment out and use CTRL + Q. If you do this at the start of a line, it will only comment that line. CTRL + Q is toggle mode (comment on/off). CTRL + K will allow you to add multiple comments one after the other.

How to check what entities are filling up your Home Assistant database

If you use the Home Assistant MariaDB add-on, this tip will show you how to query the database so see what Home Assistant entity states are triggering the most, filling up your database. What were going to do: Install the phMyAdmin add-on for MariaDB. Query the MariaDB database. See what entity state changes have the most action. Paste the code below into the SQL query box:  select entity_id,count( * ) from states group by entity_id order by count ( * ) desc; And if you're using the internal home-assistant_v2.db instead, you can use the SQLite Web add-on to achieve the same thing.