<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bradynapier</id>
	<title>Official Kodi Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bradynapier"/>
	<link rel="alternate" type="text/html" href="https://kodi.wiki/view/Special:Contributions/Bradynapier"/>
	<updated>2026-06-17T17:27:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://kodi.wiki/index.php?title=JSON-RPC_API/Examples&amp;diff=77702</id>
		<title>JSON-RPC API/Examples</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=JSON-RPC_API/Examples&amp;diff=77702"/>
		<updated>2014-07-27T02:10:31Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[JSON-RPC API]]}}&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
These examples take their base from v4. Any that require a higher version will be marked.&lt;br /&gt;
&lt;br /&gt;
=== Introspect ===&lt;br /&gt;
If you require more detailed information about an API method use:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{ &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;JSONRPC.Introspect&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;filter&amp;quot;: { &amp;quot;id&amp;quot;: &amp;quot;AudioLibrary.GetAlbums&amp;quot;, &amp;quot;type&amp;quot;: &amp;quot;method&amp;quot; } }, &amp;quot;id&amp;quot;: 1 }&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;quot;AudioLibrary.GetAlbums&amp;quot; being the method in this example.&lt;br /&gt;
=== What is playing? ===&lt;br /&gt;
Commands to control the players in XBMC will only work if that player is currently in use.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Player.GetActivePlayers&amp;quot;, &amp;quot;id&amp;quot;: 1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;id&amp;quot;: 1, &amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;result&amp;quot;: [ { &amp;quot;playerid&amp;quot;: 0, &amp;quot;type&amp;quot;: &amp;quot;audio&amp;quot; } ]}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
In the above we can see that the audio player is active. It is possible for more than one player to be active: picture and audio.&lt;br /&gt;
&lt;br /&gt;
Now we know which player is active we can query the current item with:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Player.GetItem&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;properties&amp;quot;: [&amp;quot;title&amp;quot;, &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;duration&amp;quot;, &amp;quot;thumbnail&amp;quot;, &amp;quot;file&amp;quot;, &amp;quot;fanart&amp;quot;, &amp;quot;streamdetails&amp;quot;], &amp;quot;playerid&amp;quot;: 0 }, &amp;quot;id&amp;quot;: &amp;quot;AudioGetItem&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Player.GetItem&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;properties&amp;quot;: [&amp;quot;title&amp;quot;, &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;season&amp;quot;, &amp;quot;episode&amp;quot;, &amp;quot;duration&amp;quot;, &amp;quot;showtitle&amp;quot;, &amp;quot;tvshowid&amp;quot;, &amp;quot;thumbnail&amp;quot;, &amp;quot;file&amp;quot;, &amp;quot;fanart&amp;quot;, &amp;quot;streamdetails&amp;quot;], &amp;quot;playerid&amp;quot;: 1 }, &amp;quot;id&amp;quot;: &amp;quot;VideoGetItem&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
GetItem will ignore any properties that don&#039;t make sense for the specific player.&lt;br /&gt;
&lt;br /&gt;
=== Player play/pause ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Player.PlayPause&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;playerid&amp;quot;: 0 }, &amp;quot;id&amp;quot;: 1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Get Properties ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Application.GetProperties&amp;quot;, &amp;quot;params&amp;quot;: {&amp;quot;properties&amp;quot;: [&amp;quot;volume&amp;quot;]}, &amp;quot;id&amp;quot;: 1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Query the libraries ===&lt;br /&gt;
Artists&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;AudioLibrary.GetArtists&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;limits&amp;quot;: { &amp;quot;start&amp;quot; : 0, &amp;quot;end&amp;quot;: 75 }, &amp;quot;properties&amp;quot;: [ &amp;quot;thumbnail&amp;quot;, &amp;quot;fanart&amp;quot;, &amp;quot;born&amp;quot;, &amp;quot;formed&amp;quot;, &amp;quot;died&amp;quot;, &amp;quot;disbanded&amp;quot;, &amp;quot;yearsactive&amp;quot;, &amp;quot;mood&amp;quot;, &amp;quot;style&amp;quot;, &amp;quot;genre&amp;quot; ], &amp;quot;sort&amp;quot;: { &amp;quot;order&amp;quot;: &amp;quot;ascending&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;artist&amp;quot;, &amp;quot;ignorearticle&amp;quot;: true } }, &amp;quot;id&amp;quot;: 1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Albums&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;AudioLibrary.GetAlbums&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;limits&amp;quot;: { &amp;quot;start&amp;quot; : 0, &amp;quot;end&amp;quot;: 50 }, &amp;quot;properties&amp;quot;: [&amp;quot;playcount&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;genre&amp;quot;, &amp;quot;rating&amp;quot;, &amp;quot;thumbnail&amp;quot;, &amp;quot;year&amp;quot;, &amp;quot;mood&amp;quot;, &amp;quot;style&amp;quot;], &amp;quot;sort&amp;quot;: { &amp;quot;order&amp;quot;: &amp;quot;ascending&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;album&amp;quot;, &amp;quot;ignorearticle&amp;quot;: true } }, &amp;quot;id&amp;quot;: &amp;quot;libAlbums&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Songs&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;AudioLibrary.GetSongs&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;limits&amp;quot;: { &amp;quot;start&amp;quot; : 0, &amp;quot;end&amp;quot;: 25 }, &amp;quot;properties&amp;quot;: [ &amp;quot;artist&amp;quot;, &amp;quot;duration&amp;quot;, &amp;quot;album&amp;quot;, &amp;quot;track&amp;quot; ], &amp;quot;sort&amp;quot;: { &amp;quot;order&amp;quot;: &amp;quot;ascending&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;track&amp;quot;, &amp;quot;ignorearticle&amp;quot;: true } }, &amp;quot;id&amp;quot;: &amp;quot;libSongs&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Movies&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;VideoLibrary.GetMovies&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;filter&amp;quot;: {&amp;quot;field&amp;quot;: &amp;quot;playcount&amp;quot;, &amp;quot;operator&amp;quot;: &amp;quot;is&amp;quot;, &amp;quot;value&amp;quot;: &amp;quot;0&amp;quot;}, &amp;quot;limits&amp;quot;: { &amp;quot;start&amp;quot; : 0, &amp;quot;end&amp;quot;: 75 }, &amp;quot;properties&amp;quot; : [&amp;quot;art&amp;quot;, &amp;quot;rating&amp;quot;, &amp;quot;thumbnail&amp;quot;, &amp;quot;playcount&amp;quot;, &amp;quot;file&amp;quot;], &amp;quot;sort&amp;quot;: { &amp;quot;order&amp;quot;: &amp;quot;ascending&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;label&amp;quot;, &amp;quot;ignorearticle&amp;quot;: true } }, &amp;quot;id&amp;quot;: &amp;quot;libMovies&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
TV Shows&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;VideoLibrary.GetTVShows&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;filter&amp;quot;: {&amp;quot;field&amp;quot;: &amp;quot;playcount&amp;quot;, &amp;quot;operator&amp;quot;: &amp;quot;is&amp;quot;, &amp;quot;value&amp;quot;: &amp;quot;0&amp;quot;}, &amp;quot;limits&amp;quot;: { &amp;quot;start&amp;quot; : 0, &amp;quot;end&amp;quot;: 75 }, &amp;quot;properties&amp;quot;: [&amp;quot;art&amp;quot;, &amp;quot;genre&amp;quot;, &amp;quot;plot&amp;quot;, &amp;quot;title&amp;quot;, &amp;quot;originaltitle&amp;quot;, &amp;quot;year&amp;quot;, &amp;quot;rating&amp;quot;, &amp;quot;thumbnail&amp;quot;, &amp;quot;playcount&amp;quot;, &amp;quot;file&amp;quot;, &amp;quot;fanart&amp;quot;], &amp;quot;sort&amp;quot;: { &amp;quot;order&amp;quot;: &amp;quot;ascending&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;label&amp;quot; } }, &amp;quot;id&amp;quot;: &amp;quot;libTvShows&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Music Videos&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;VideoLibrary.GetMusicVideos&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;properties&amp;quot;: [ &amp;quot;title&amp;quot;, &amp;quot;thumbnail&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;album&amp;quot;, &amp;quot;genre&amp;quot;, &amp;quot;lastplayed&amp;quot;, &amp;quot;year&amp;quot;, &amp;quot;runtime&amp;quot;, &amp;quot;fanart&amp;quot;, &amp;quot;file&amp;quot;, &amp;quot;streamdetails&amp;quot; ], &amp;quot;sort&amp;quot;: { &amp;quot;order&amp;quot;: &amp;quot;ascending&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;artist&amp;quot;, &amp;quot;ignorearticle&amp;quot;: true } }, &amp;quot;id&amp;quot;: &amp;quot;libMusicVideos&amp;quot;}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Audio Playlist&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Playlist.GetItems&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;properties&amp;quot;: [&amp;quot;title&amp;quot;, &amp;quot;album&amp;quot;, &amp;quot;artist&amp;quot;, &amp;quot;duration&amp;quot;], &amp;quot;playlistid&amp;quot;: 0 }, &amp;quot;id&amp;quot;: 1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Video Playlist&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;&lt;br /&gt;
{&amp;quot;jsonrpc&amp;quot;: &amp;quot;2.0&amp;quot;, &amp;quot;method&amp;quot;: &amp;quot;Playlist.GetItems&amp;quot;, &amp;quot;params&amp;quot;: { &amp;quot;properties&amp;quot;: [ &amp;quot;runtime&amp;quot;, &amp;quot;showtitle&amp;quot;, &amp;quot;season&amp;quot;, &amp;quot;title&amp;quot;, &amp;quot;artist&amp;quot; ], &amp;quot;playlistid&amp;quot;: 1}, &amp;quot;id&amp;quot;: 1}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:XBMC Manual]]&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64961</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64961"/>
		<updated>2013-10-24T14:37:33Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote Controls]]|[[Remote_controls/Control_Systems|Control Systems]]}}&lt;br /&gt;
&lt;br /&gt;
Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64960</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64960"/>
		<updated>2013-10-24T14:37:02Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote_controls/Control_Systems|Control Systems]]}}&lt;br /&gt;
&lt;br /&gt;
Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64959</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64959"/>
		<updated>2013-10-24T14:36:49Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote_controls/Control_Systems]]}}&lt;br /&gt;
&lt;br /&gt;
Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64958</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64958"/>
		<updated>2013-10-24T14:35:54Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Control_Systems]]}}&lt;br /&gt;
&lt;br /&gt;
Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64957</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64957"/>
		<updated>2013-10-24T14:35:44Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Control Systems]]}}&lt;br /&gt;
&lt;br /&gt;
Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64956</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64956"/>
		<updated>2013-10-24T14:35:17Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64955</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64955"/>
		<updated>2013-10-24T14:34:46Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.universalremote.com/locator/ Find a Total Control Dealer] - This tool will help you find a dealer/installer of the Total Control Products to get more information, pricing, etc. &lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd Download Total Control/XBMC Control Driver] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64954</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64954"/>
		<updated>2013-10-24T14:32:06Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd Download Total Control/XBMC Control Driver] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64953</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64953"/>
		<updated>2013-10-24T14:31:47Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd Download Total Control/XBMC Control Driver] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com|Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64952</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64952"/>
		<updated>2013-10-24T14:31:23Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd Download Total Control/XBMC Control Driver] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com|Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64951</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64951"/>
		<updated>2013-10-24T14:30:14Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com|Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd|Download Total Control/XBMC Control Driver] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com|Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64950</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64950"/>
		<updated>2013-10-24T14:29:32Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com|Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com|Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64949</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64949"/>
		<updated>2013-10-24T14:28:09Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [http://www.universalremote.com|Visit URC&#039;s Website]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.urccontrolroom.com/drivers/XBMC.csd|Download Control Drivers] - This driver can be used when programming XBMC with Total Control to easily integrate with any XBMC Instance.  No programming/driver creation necessary!&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com|Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64948</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64948"/>
		<updated>2013-10-24T14:24:49Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.universalremote.com|Visit URC&#039;s Website]&lt;br /&gt;
&lt;br /&gt;
[[File:Control4.png]]&lt;br /&gt;
* [http://www.control4.com|Visit Control 4&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Control4.png&amp;diff=64947</id>
		<title>File:Control4.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Control4.png&amp;diff=64947"/>
		<updated>2013-10-24T14:21:44Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64946</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64946"/>
		<updated>2013-10-24T14:20:34Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]] - A look at the products available in the Total Control Product Line that can be used to gain completely customized control of XBMC.  Anything that can be done via the JSON API can be programmed onto all interfaces.&lt;br /&gt;
* [http://www.universalremote.com|Visit URC&#039;s Website]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64945</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64945"/>
		<updated>2013-10-24T14:19:02Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]|[[Remote controls]]}}&lt;br /&gt;
&lt;br /&gt;
Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]]&lt;br /&gt;
* [[http://www.universalremote.com|Visit URC&#039;s Website]]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64944</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64944"/>
		<updated>2013-10-24T14:17:30Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control Quick Overview]]&lt;br /&gt;
* [[http://www.universalremote.com|Visit URC&#039;s Website]]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64943</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64943"/>
		<updated>2013-10-24T14:16:06Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control]]&lt;br /&gt;
* Control 4&lt;br /&gt;
* Crestron&lt;br /&gt;
* Savant&lt;br /&gt;
* RTI&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64942</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64942"/>
		<updated>2013-10-24T14:15:52Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
[[File:TotalControl.png]]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control]]&lt;br /&gt;
* Control 4&lt;br /&gt;
* Crestron&lt;br /&gt;
* Savant&lt;br /&gt;
* RTI&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TotalControl.png&amp;diff=64941</id>
		<title>File:TotalControl.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TotalControl.png&amp;diff=64941"/>
		<updated>2013-10-24T14:15:22Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64940</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64940"/>
		<updated>2013-10-24T14:14:10Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
[[File:Total_control_logo.png]]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control]]&lt;br /&gt;
* Control 4&lt;br /&gt;
* Crestron&lt;br /&gt;
* Savant&lt;br /&gt;
* RTI&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64939</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64939"/>
		<updated>2013-10-24T14:13:47Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
[[Remote_controls/Control_Systems/Total_Control|[[File:Total_control_logo.png]]]]&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control]]&lt;br /&gt;
* Control 4&lt;br /&gt;
* Crestron&lt;br /&gt;
* Savant&lt;br /&gt;
* RTI&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Total_control_logo.png&amp;diff=64938</id>
		<title>File:Total control logo.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Total_control_logo.png&amp;diff=64938"/>
		<updated>2013-10-24T14:12:47Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64937</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64937"/>
		<updated>2013-10-24T14:12:22Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control]]&lt;br /&gt;
* Control 4&lt;br /&gt;
* Crestron&lt;br /&gt;
* Savant&lt;br /&gt;
* RTI&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64936</id>
		<title>Control Systems</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Control_Systems&amp;diff=64936"/>
		<updated>2013-10-24T14:12:13Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Control Systems are generally professional-level products which can interact with XBMC.  They provide the ability to not only control XBMC, but pretty much any other technology in the home as well.  Control Systems are generally professional products that require a programmer to customize the system to your needs.  XBMC has special integration with various Control Systems.  Over time information on each of these integrations will be made available here. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Known Compatible Control Systems:&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Remote_controls/Control_Systems/Total_Control|URC Total Control]]&lt;br /&gt;
* Control 4&lt;br /&gt;
* Crestron&lt;br /&gt;
* Savant&lt;br /&gt;
* RTI&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Remote_controls&amp;diff=64935</id>
		<title>Remote controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Remote_controls&amp;diff=64935"/>
		<updated>2013-10-24T14:10:06Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;In XBMC the primary environment was designed for the living room ([[10-foot interface]]) and controlling it only with a remote control. While XBMC does support mouse, keyboard, and even touch controls, the main method of controlling XBMC is designed around is the typical remote.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Types of remotes==&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Remote controls/MCE|MCE]] -&#039;&#039;&#039;}} Infrared remote controls made for computers that follow the MCE standard. These remotes should work with XBMC out-of-the-box on Windows and Linux.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Remote controls/RF|RF]] -&#039;&#039;&#039;}} Radio frequency remote controls, such as 2.4 GHz dongles and bluetooth remotes. Most of these typically emulate a keyboard interface and/or standard multimedia keys.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[CEC]] -&#039;&#039;&#039;}} Use your existing TV remote if you have a CEC compatible TV and CEC interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Smart phone/tablet]] -&#039;&#039;&#039;}} Turn your smart phone or tablet into the ultimate remote control.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Remote_controls/Control_Systems|Control Systems]] -&#039;&#039;&#039;}} Highly Customizable Programmable Control Systems which can control XBMC as well as Lights, HVAC, A/V Equipment, and much more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Touch controls]] -&#039;&#039;&#039;}} Using XBMC with a touch screen device.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Keyboards]] - &#039;&#039;&#039;}} Still want to use a keyboard and/or mouse? Check this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional topics ==&lt;br /&gt;
* [[Keymap]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:XBMC Manual]]&lt;br /&gt;
[[Category:Remotes|*]]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Remote_controls&amp;diff=64934</id>
		<title>Remote controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Remote_controls&amp;diff=64934"/>
		<updated>2013-10-24T14:08:57Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[General topics]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;intro&amp;quot; /&amp;gt;In XBMC the primary environment was designed for the living room ([[10-foot interface]]) and controlling it only with a remote control. While XBMC does support mouse, keyboard, and even touch controls, the main method of controlling XBMC is designed around is the typical remote.&amp;lt;section end=&amp;quot;intro&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Types of remotes==&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Remote controls/MCE|MCE]] -&#039;&#039;&#039;}} Infrared remote controls made for computers that follow the MCE standard. These remotes should work with XBMC out-of-the-box on Windows and Linux.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Remote controls/RF|RF]] -&#039;&#039;&#039;}} Radio frequency remote controls, such as 2.4 GHz dongles and bluetooth remotes. Most of these typically emulate a keyboard interface and/or standard multimedia keys.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[CEC]] -&#039;&#039;&#039;}} Use your existing TV remote if you have a CEC compatible TV and CEC interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Smart phone/tablet]] -&#039;&#039;&#039;}} Turn your smart phone or tablet into the ultimate remote control.&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Remote_controls/Control_Systems]] -&#039;&#039;&#039;}} Turn your smart phone or tablet into the ultimate remote control.&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Touch controls]] -&#039;&#039;&#039;}} Using XBMC with a touch screen device.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{big|&lt;br /&gt;
* &#039;&#039;&#039;[[Keyboards]] - &#039;&#039;&#039;}} Still want to use a keyboard and/or mouse? Check this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Additional topics ==&lt;br /&gt;
* [[Keymap]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Index]]&lt;br /&gt;
[[Category:XBMC Manual]]&lt;br /&gt;
[[Category:Remotes|*]]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64920</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64920"/>
		<updated>2013-10-24T01:49:50Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
Unlimited Instances of XBMC are supported.  Interfaces &amp;amp; Macros are automatically generated (So a device &amp;quot;TV Shows&amp;quot; is placed on the screen which automatically jumps directly to the Turns on the TV, Switches any Inputs, Jumps to the TV Shows Page in XBMC, then lists all the commands that can control your TV Shows/Navigate. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64912</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64912"/>
		<updated>2013-10-24T01:15:08Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
Many advanced functions can be built into Total Control.  You can integrate almost anything from Lighting to Temperature into your general commands.  Have a single button on any of the interfaces listed set your lights, temperatures, shades, or anything else you can imagine.  Have the &amp;quot;Pause&amp;quot; button turn on the lights, and much more.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TKP100.png&amp;diff=64911</id>
		<title>File:TKP100.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TKP100.png&amp;diff=64911"/>
		<updated>2013-10-24T01:13:27Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TKP2000.png&amp;diff=64910</id>
		<title>File:TKP2000.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TKP2000.png&amp;diff=64910"/>
		<updated>2013-10-24T01:12:57Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TKP7000.png&amp;diff=64909</id>
		<title>File:TKP7000.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TKP7000.png&amp;diff=64909"/>
		<updated>2013-10-24T01:12:37Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64908</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64908"/>
		<updated>2013-10-24T01:11:59Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available In or On-Wall Keypads&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TKP100.png|TKP-100&lt;br /&gt;
File:TKP2000.png|TKP-2000&lt;br /&gt;
File:TKP7000.png|TKP-7000&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64907</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64907"/>
		<updated>2013-10-24T01:10:44Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780&lt;br /&gt;
File:TRC1080.jpg|TRC-1080&lt;br /&gt;
File:TRC1280.png|TRC-1280&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64906</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64906"/>
		<updated>2013-10-24T01:10:21Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780 - $299.99 MSRP&lt;br /&gt;
File:TRC1080.jpg|TRC-1080 - TBA&lt;br /&gt;
File:TRC1280.png|TRC-1280 - $899.99 MSRP&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TRC1280.png&amp;diff=64905</id>
		<title>File:TRC1280.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TRC1280.png&amp;diff=64905"/>
		<updated>2013-10-24T01:09:35Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TRC1080.jpg&amp;diff=64904</id>
		<title>File:TRC1080.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TRC1080.jpg&amp;diff=64904"/>
		<updated>2013-10-24T01:09:12Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64903</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64903"/>
		<updated>2013-10-24T01:08:36Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780 - $299.99 MSRP&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64902</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64902"/>
		<updated>2013-10-24T01:08:17Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:TRC780.png|TRC-780 $299.99 US MSRP&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:TRC780.png&amp;diff=64901</id>
		<title>File:TRC780.png</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:TRC780.png&amp;diff=64901"/>
		<updated>2013-10-24T01:07:41Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: TRC-780 for URC Total Control can control XBMC&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TRC-780 for URC Total Control can control XBMC&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64900</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64900"/>
		<updated>2013-10-24T01:06:04Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64899</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64899"/>
		<updated>2013-10-24T01:04:58Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:http://www.universalremote.com/img/products/trc-780_lg.jpg]]&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64898</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64898"/>
		<updated>2013-10-24T01:04:07Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:www.universalremote.com/img/products/trc-780_lg.jpg|TRC-780 ($299.99)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64897</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64897"/>
		<updated>2013-10-24T01:03:53Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:http://www.universalremote.com/img/products/trc-780_lg.jpg|TRC-780 ($299.99)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64896</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64896"/>
		<updated>2013-10-24T01:03:38Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:http://www.universalremote.com/img/products/trc-780_lg.jpg|TRC-780 ($299.99)&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64895</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64895"/>
		<updated>2013-10-24T01:01:57Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project ([http://www.universalremote.com/product_details.php?id=25&amp;amp;s=residential&amp;amp;c=controllers&amp;amp;p=MRX-10 MRX-10] or MRX-20 (Not Released) as of this article).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64894</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64894"/>
		<updated>2013-10-24T00:59:05Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]] and is facilitated through the Master Control Processor on the project (MRX-10 or MRX-20).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64893</id>
		<title>Archive:Total Control Remote Controls</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Archive:Total_Control_Remote_Controls&amp;diff=64893"/>
		<updated>2013-10-24T00:58:13Z</updated>

		<summary type="html">&lt;p&gt;Bradynapier: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Total Control provides the ability to control XBMC from a multitude of Unique &amp;amp; Powerful Interfaces.  A pre-made driver has been created to assist with programming and a URC Total Control Programmer can generally implement a XBMC Solution on all Interfaces in a matter of minutes.  Control is handled through [[JSON-RPC API|XBMC&#039;s JSON API]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Available Remote Controls&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bradynapier</name></author>
	</entry>
</feed>