Archive:Configure Philips Pronto Universal Remote: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (Karellen moved page HOW-TO:Configure Philips Pronto Universal Remote to Archive:Configure Philips Pronto Universal Remote without leaving a redirect: Outdated Hardware)
No edit summary
 
Line 1: Line 1:
{{cleanup}}
{{cleanup}}
:''See also: [[Pronto Universal Remote Hex Codes]], [[Pronto Universal Remote Hex Codes ATV]]''
:''See also: [[Archive:Pronto_Universal_Remote_Hex_Codes_ATV]], [[Archive:Pronto_Universal_Remote_Hex_Codes_ATV]]''
The [http://www.pronto.philips.com/ Philips Pronto] is a versatile fully programmable touchscreen Universal Remote with advanced capabilities. It is available in several models, this HOW-TO should apply to most or all of them, although I have only experience with Pronto NG.
The [http://www.pronto.philips.com/ Philips Pronto] is a versatile fully programmable touchscreen Universal Remote with advanced capabilities. It is available in several models, this HOW-TO should apply to most or all of them, although I have only experience with Pronto NG.


Line 12: Line 12:
== Using Pronto Custom Functions With XBMC ==
== Using Pronto Custom Functions With XBMC ==
First off download the Pronto [http://downloads.sourceforge.net/xbmc/RCA-5-Pronto-Codes_01.zip?use_mirror=dfn CCF] file from [http://sourceforge.net/project/showfiles.php?group_id=87054 Sourceforge] and import it into ProntoEdit.<br />
First off download the Pronto [http://downloads.sourceforge.net/xbmc/RCA-5-Pronto-Codes_01.zip?use_mirror=dfn CCF] file from [http://sourceforge.net/project/showfiles.php?group_id=87054 Sourceforge] and import it into ProntoEdit.<br />
It contains all the [[Keymap.xml#Universal Remotes|OBC]] codes the Xbox can receive.
It contains all the OBC codes the Xbox can receive.


Then in ProntoEdit link your custom buttons to unused OBC codes from the CCF file.<br />
Then in ProntoEdit link your custom buttons to unused OBC codes from the CCF file.<br />
A list of all the default used OBC codes is here: [[Keymap.xml#Remote Buttons|Remote Buttons]].<br />
A list of all the default used OBC codes is here: Remote Buttons.<br />
Next you have to edit [[Keymap.xml]] for XBMC to recognize your buttons.
Next you have to edit Keymap.xml for XBMC to recognize your buttons.


'''Example, you could insert the following into the <global> section of keymap.xml:'''
'''Example, you could insert the following into the <global> section of keymap.xml:'''
Line 33: Line 33:
</xml>
</xml>
</pre>
</pre>
* [[List of Built In Functions]]
* [[List_of_built-in_functions|List of Built In Functions]]
* List of [[Window IDs]]
* List of [[Window IDs]]
* [[Opening Windows and Dialogs]]
* [[Opening Windows and Dialogs]]


[[Category:Remotes]]
[[Category:Hardware-Archived]]
[[Category:How-to]]

Latest revision as of 10:03, 12 July 2020

Cleanup.png This page or section may require cleanup, updating, spellchecking, reformatting and/or updated images. Please improve this page if you can. The discussion page may contain suggestions.


See also: Archive:Pronto_Universal_Remote_Hex_Codes_ATV, Archive:Pronto_Universal_Remote_Hex_Codes_ATV

The Philips Pronto is a versatile fully programmable touchscreen Universal Remote with advanced capabilities. It is available in several models, this HOW-TO should apply to most or all of them, although I have only experience with Pronto NG.

Using the Pronto with XBMC

I will not go into how to program the Pronto itself, but how to utilize it to the max with XBMC. Basically there are several ways to use your Pronto with the Xbox and XBMC, some of which are:

  • You could program it from scratch, learning IR codes from an original Xbox DVD remote.
  • You could get a predefined layout/configuration from a source like Remote Central and use it like the original DVD remote.
  • To unleash the full potential of your Pronto you can map whatever function you want to a button on your remote. This is what this How-To is all about.

Using Pronto Custom Functions With XBMC

First off download the Pronto CCF file from Sourceforge and import it into ProntoEdit.
It contains all the OBC codes the Xbox can receive.

Then in ProntoEdit link your custom buttons to unused OBC codes from the CCF file.
A list of all the default used OBC codes is here: Remote Buttons.
Next you have to edit Keymap.xml for XBMC to recognize your buttons.

Example, you could insert the following into the <global> section of keymap.xml:

<xml>
     <universalremote>          
       <obc148>RestartApp</obc148> <!-- Warm reboots XBMC -->
       <obc149>ActivateWindow(favourites)</obc149>  <!-- Takes you directly to the favourites menu -->
       <obc150>ActivateWindow(systeminfo)</obc150>  <!-- Takes you directly to the systeminfo menu -->
       <obc151>ActivateWindow(videolibrary,movietitles)</obc151>  <!-- Takes you directly to the title node of the movie library -->
       <obc152>ActivateWindow(videofiles,kids)</obc152>  <!-- Takes you directly to the kids source in the videos files section -->
       <obc153>ActivateWindow(weather)</obc153>  <!-- Takes you directly to weather -->
       <!-- obc154 is reserved for "Record" -->
       <obc155>PlayMedia(Q:\UserData\playlists\music\Test.xsp)</obc155>  <!-- Plays the Test smart playlist -->
    </universalremote>
</xml>