<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Need help with remote control</title>
		<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control</link>
		<description>Posts in the discussion thread &quot;Need help with remote control&quot; - How to determine if my remote control is  compatible.</description>
				<copyright></copyright>
		<lastBuildDate>Mon, 07 Sep 2026 17:57:59 +0000</lastBuildDate>
		
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-3633393</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-3633393</link>
				<description></description>
				<pubDate>Wed, 15 Nov 2017 20:38:30 +0000</pubDate>
				<wikidot:authorName>riedo</wikidot:authorName>				<wikidot:authorUserId>875981</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thank you! that is very convenient indeed.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-3630405</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-3630405</link>
				<description></description>
				<pubDate>Sat, 11 Nov 2017 13:21:07 +0000</pubDate>
				<wikidot:authorName>tmoerel</wikidot:authorName>				<wikidot:authorUserId>3436815</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I just wrote a simple app which will say the rc5.command numbers when you are testing a remote. This makes it very easy to see which buttons work and what numbers they have.</p> <p>It makes use of a number of sounds files which you will have to put on a microSD card and insert this card in your Thymio.</p> <p>The files can be downloaded here: <a href="http://www.moerel.net/NumberSounds.zip">Number speech files</a></p> <p>Below is the code:</p> <div class="code"> <pre><code>var number = 0 var temp = 0 var rest var words[10] var wordIndex = 0 var command = 0 call leds.top(32, 0, 0) sub sayRC5 temp = command if temp == 0 then words[wordIndex] = 0 wordIndex++ else if temp &gt;= 1000 then words[wordIndex] = temp / 1000 temp = temp - (words[wordIndex] * 1000) wordIndex++ words[wordIndex] = 1000 wordIndex++ end if temp &gt;= 100 then words[wordIndex] = temp / 100 temp = temp - (words[wordIndex] * 100) wordIndex++ words[wordIndex] = 100 wordIndex++ end if temp &gt;= 20 then words[wordIndex] = (temp / 10) * 10 temp = temp - words[wordIndex] wordIndex++ end if temp &gt; 0 then words[wordIndex] = temp wordIndex++ end end callsub nextNumber sub nextNumber if number &lt; wordIndex then call sound.play(words[number]) number++ else wordIndex = 0 number = 0 end onevent sound.finished callsub nextNumber onevent rc5 command = rc5.command callsub sayRC5</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1933635</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1933635</link>
				<description></description>
				<pubDate>Sat, 11 Jan 2014 21:20:44 +0000</pubDate>
				<wikidot:authorName>ritchy</wikidot:authorName>				<wikidot:authorUserId>1803306</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Done :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1931420</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1931420</link>
				<description></description>
				<pubDate>Thu, 09 Jan 2014 08:34:40 +0000</pubDate>
				<wikidot:authorName>StephaneMagnenat</wikidot:authorName>				<wikidot:authorUserId>709253</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Feel free to add these to <a href="https://aseba.wikidot.com/en:thymioirremote">https://aseba.wikidot.com/en:thymioirremote</a></p> <p>thanks! :-)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1931150</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1931150</link>
				<description></description>
				<pubDate>Wed, 08 Jan 2014 21:34:27 +0000</pubDate>
				<wikidot:authorName>ritchy</wikidot:authorName>				<wikidot:authorUserId>1803306</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thymio works correctly with:<br /> - universal remote control Global 4 by Visa Electronics, using code 1011<br /> - universal remote control ROC 610 by Thomson, using code 182</p> <p>I tried both :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1915792</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1915792</link>
				<description></description>
				<pubDate>Sun, 15 Dec 2013 16:16:39 +0000</pubDate>
				<wikidot:authorName>Soixante4</wikidot:authorName>				<wikidot:authorUserId>1790178</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello!<br /> I recently bought a Philips SRP2008B on amazon for 20€.<br /> I worked perfectly with the Philips code + the research phase:<br /> - switch on the Thymio<br /> -Press 8 sec the device button<br /> -press standby until the Thymio blink, release immediatly the standby button<br /> - double press the device button<br /> - enjoy!</p> <p>You can control 8 devices including one or more Thymio.<br /> PS : it worked also with the Samsung code, which is my TV.<br /> I strongly recommend this remote control, this is good stuff (I have 4 different ones from Philips since 10 years&#8230;)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1738818</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1738818</link>
				<description></description>
				<pubDate>Tue, 26 Mar 2013 19:20:56 +0000</pubDate>
				<wikidot:authorName>eziosoma</wikidot:authorName>				<wikidot:authorUserId>1452547</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Have you followed the <a href="https://aseba.wikidot.com/en:thymioirremote#toc3" target="_blank">test procedure</a>?</p> <p>If yes, what is the code in the battery slot? The Haupauge remote control tested by me has the code A415-HPG. For me it has worked without special configurations.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1737528</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1737528</link>
				<description></description>
				<pubDate>Sun, 24 Mar 2013 19:01:20 +0000</pubDate>
				<wikidot:authorName>meppy</wikidot:authorName>				<wikidot:authorUserId>1585031</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I bought a Hauppauge remote control. The red LED blinks when I press any button on the remote but nothing happens. Any specific instructions on setting up the remote would be appreciated - none came with the remote. Thanks.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1608623</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1608623</link>
				<description></description>
				<pubDate>Wed, 07 Nov 2012 01:51:57 +0000</pubDate>
				<wikidot:authorName>i_grok</wikidot:authorName>				<wikidot:authorUserId>1464558</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thank you Franceso, Michael and Podge15:</p> <p>I found that the extra Remote Control left by my local cable company works with my Thymio. So it didn't cost me a cent. As you all did, I just looked up the Philips TV code from the setup sheet the company provided, pointed it at the Thymio and the RC LED's blinked the first time. I will most likely do as you did, Podge15 to customize the buttons.</p> <p>Again, thank you all for helping a fumbling beginner.</p> <p>i_grok</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1605648</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1605648</link>
				<description></description>
				<pubDate>Sat, 03 Nov 2012 14:14:26 +0000</pubDate>
				<wikidot:authorName>Podge15</wikidot:authorName>				<wikidot:authorUserId>1190466</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I use an old Philips TV remote control which works well with Thymio, in the battery compartment it shows:</p> <p>RC 7599/01<br /> SBC RP 420</p> <p>Another Philips TV RC I have shows:</p> <p>RC7540/00&#160;N<br /> 3178 127 00571</p> <p>It might be worth looking around in a junk shop.</p> <p>I have now revisited the problem of independently controlling several Thymios and although I did not take the last step I could see that the solution proposed on the <a href="https://aseba.wikidot.com/en:thymioirremote">IR page</a> is viable. I used a Philips universal remote controller (urc) model SRP2008B which I bought recently for about 25$. This can control up to 8 devices. The code for Philips is 2195.<br /> In the setup instructions after entering this code one should switch on the device to be controlled and then hold down the ON/OFF switch on the urc until the device switches off, at which point the ON/OFF switch must be released. In the case of Thymio of course it does not switch off, but one can see by the IR detector red LEDs flashing on Thymio that the urc is being detected. I performed this setup for the urc devices TV-2 and CABLE. In both cases I tested this using Thymio with the purple built-in behaviour and the 2, 4, 6 and 8 buttons worked correctly.<br /> Then I connected Thymio to Aseba on my PC and tested to see what values were in the RC5-address and RC5-command variables when the urc was used.<br /> With TV-2 the address was 0 as expected and for CABLE it was 10. Clearly a program/script can be written to recognise by the value in the RC5-address variable whether it should react to the command or not. One obvious way to do this is to have a program/script with a constant which can easily be changed between loading the code to one Thymio or another. Another method would be to cause a given Thymio to take up a different identity by using the buttons in a way which the program/script would detect.<br /> Incidentally I have my own IR program which I made using some of the existing built-in code with added modifications so that Thymio can be steered around but will also not bump into objects in its path. Anybody interested can send me a PM.</p> <p>Podge</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1603678</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1603678</link>
				<description></description>
				<pubDate>Thu, 01 Nov 2012 08:27:51 +0000</pubDate>
				<wikidot:authorName>Michael Bonani</wikidot:authorName>				<wikidot:authorUserId>861355</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>To be more complete I am not sure that recent Philips remote control still use the RC5, old one should but not all of them&#8230; Panasonic also use this mode.<br /> If Thymio recognize the remote code, there is a red led blinking near the receptor on the right of the robot. In obedient mode (purple), the robot should follow the 2,4,6,8 buttons.</p> <p>Michael</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1603652</guid>
				<title>Re: Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1603652</link>
				<description></description>
				<pubDate>Thu, 01 Nov 2012 07:21:34 +0000</pubDate>
				<wikidot:authorName>Francesco Mondada</wikidot:authorName>				<wikidot:authorUserId>787993</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello,</p> <p>Welcome!!!!!</p> <p>The IR receiver follows the RC5 standard, which is mainly used by Philips. This means that:</p> <ul> <li>if you have a Philips remote all should work.</li> <li>if you have another remote from another company, probably it will not work.</li> <li>if you have a universal remote, you have to configure it as a Philips one and the instructions are specific to the remote control.</li> </ul> <p>More info are on the page <a href="https://aseba.wikidot.com/en:thymioirremote">https://aseba.wikidot.com/en:thymioirremote</a> .<br /> If you feel this page is not complete, you can contribute to it, it's a wiki :-)<br /> Hoping this is useful.</p> <p>Francesco</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://aseba.wikidot.com/forum/t-579641#post-1603270</guid>
				<title>Need help with remote control</title>
				<link>http://aseba.wikidot.com/forum/t-579641/need-help-with-remote-control#post-1603270</link>
				<description></description>
				<pubDate>Wed, 31 Oct 2012 22:07:30 +0000</pubDate>
				<wikidot:authorName>i_grok</wikidot:authorName>				<wikidot:authorUserId>1464558</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello: I'm a new owner of a Thmyio II and this is my first post. I'm trying to determine if the remote control I have is compatible with the Thmyio. Also, how do I go about setting up the remote with the robot? (Where do I point it, what codes do I use, etc.) I can't seem to find the info on the site.</p> <p>I'm really enjoying myself with the Thmyio, spending as much time as I can with it since I retired. I'm not much of a programmer but I'm having fun learning.</p> <p>Thanks for any help you can provide.</p> <p>i_grok</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>