<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>Bob's blog</title><link>http://blogger.xs4all.nl/loosen/</link><description /><managingEditor>Bob</managingEditor><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>Bob</dc:creator><title>Boblight has moved</title><link>http://blogger.xs4all.nl/loosen/archive/2009/11/10/528317.aspx</link><pubDate>Tue, 10 Nov 2009 17:37:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2009/11/10/528317.aspx</guid><description>Boblight has moved to &lt;a href="http://code.google.com/p/boblight/"&gt;google code&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
I have rewritten it in C++, right now there aren't any docs yet and it doesn't work on windows, but boblight-X11 can use Xrender to scale screenshots in hardware, so it works a lot more efficient.&lt;br&gt;
&lt;br&gt;&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/528317.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight 1.3</title><link>http://blogger.xs4all.nl/loosen/archive/2009/01/26/440885.aspx</link><pubDate>Mon, 26 Jan 2009 17:47:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2009/01/26/440885.aspx</guid><description>Boblight 1.3 for linux and windows is here, you can find it at the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; page.&lt;br&gt;
&lt;br&gt;
Changes:&lt;br&gt;
&lt;br&gt;
added XShmGetImage to boblight-X11&lt;br&gt;
added threshold parameter&lt;br&gt;
changed interpolation and method from 0/1 to on/off and average/median&lt;br&gt;
fixed stdin/stdout/stderr file descriptors in cygwin&lt;br&gt;
replaced posix timers with gettimeofday and usleep&lt;br&gt;
replaced windows timers with multimedia timer&lt;br&gt;
replaced windows gettimeofday with QueryPerformanceCounter&lt;br&gt;
added realtime priority support&lt;br&gt;
fixed a bug where a client mutex would be lost forever in case of a timeout&lt;br&gt;
rewrote boblight-v4l, code looks a lot better&lt;br&gt;
changed use from 1/0 to yes/no&lt;br&gt;
added linux/videodev2.h detection to configure script&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Please keep in mind that boblight is still in development.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/440885.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight for windows 1.2 beta 5</title><link>http://blogger.xs4all.nl/loosen/archive/2009/01/05/436357.aspx</link><pubDate>Mon, 05 Jan 2009 17:58:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2009/01/05/436357.aspx</guid><description>Boblight for windows 1.2 beta 5 is released, you can find it at the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; page.&lt;br&gt;
&lt;br&gt;
Fixed a bug where printf statements would be sent out the serial port.&lt;br&gt;
&lt;br&gt;
The rar file contains two configuration files, one for the standard momo controller and one for the standard atmo controller, either rename one to boblight.conf or start boblightd with the -c &amp;lt;filename&amp;gt; flag.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/436357.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>16 bit rgb controller</title><link>http://blogger.xs4all.nl/loosen/archive/2008/12/14/430681.aspx</link><pubDate>Sun, 14 Dec 2008 20:41:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/12/14/430681.aspx</guid><description>When driving led strips with pwm, a strobing effect can be noticed when the dutycycle is changed slowly, this is because our eyes' sensitivity to light is logarithmic while pwm is linear, this effectively decreases the perceived resolution, this is noticed especially in the 0% to 10% dutycycle range.
&lt;br&gt;
&lt;br&gt;
Most rgb controllers have a resolution of 8 bit, why? Because pwm is usually done in software, a timer generates an interrupt every n-th clockcycle, the interrupt causes the controller to jump to a certain section of the program where calculations are performed to determine whether a pin should be at 0 or 1.&lt;br&gt;
&lt;br&gt;
This is fine for most applications and doesn't require a very expensive controller, however it's very inefficient, making it impossible to get something like 16 bit pwm at a high enough frequency (at least 100 hertz).
&lt;br&gt;
&lt;br&gt;
To get pwm at 16 bit resolution a controller is needed with hardware pwm, I chose the &lt;a href="http://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en520468"&gt;dsPIC33FJ12MC201&lt;/a&gt; from microchip, it has three pwm outputs (well six actually, but only three dutycycle generators) which is enough for a single rgb channel.
&lt;br&gt;
&lt;br&gt;
This is the schematic I came up with:
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33087/o_schematic2.jpg"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33087/r_schematic2.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
You might notice that it doesn't have a crystal, that's because it uses the internal oscillator. Internal oscillators are usually not accurate enough for rs232, but there's a simple trick to solve that, the uart of the dsPIC can measure the baudrate when set up correctly and 0x55 is sent to it.&lt;br&gt;
Because most operating systems sent something out the serial port when booting, the dspic is set up to measure its baudrate 64 times in a row, this ensures that the byte used for auto baudrate measurement is really 0x55 and not something else, at least when the software is set up right.&lt;br&gt;
LED1 turns on when the auto baudrate measurement is complete.&lt;br&gt;
It works with baudrates from 50 to 115200 baud.
&lt;br&gt;
&lt;br&gt;
The protocol used is the &lt;a href="http://blogger.xs4all.nl/loosen/articles/420470.aspx"&gt;LTBL&lt;/a&gt; protocol.
&lt;br&gt;
&lt;br&gt;
It doesn't use a level shifter for rs232, the tx signal is fed directly to the pin using R4 to limit the current, the rx signal is sent through the TSC427 because it had an unused mosfet driver section anyway, R6 is used to limit the current because the TSC427 has a very low output impedance, without R6 the TSC427 will blow up if the output is shorted.
&lt;br&gt;
&lt;br&gt;
When the controller is not being controlled over rs232, the color can be adjusted with S1, S2 and S3, S1 selects the channel to adjust and S2 and S3 are used to increase or decrease the selected channel's dutycycle. The selected color is stored in the eeprom.
&lt;br&gt;
&lt;br&gt;
The firmware and sourcecode for the controller can be downloaded &lt;a href="http://www.xs4all.nl/~loosen/elektronica/16%20bit%20rgb%20controller/16%20bit%20rgb.rar"&gt;here&lt;/a&gt;, to program the controller a programmer like the &lt;a href="http://blogger.xs4all.nl/loosen/archive/2008/10/19/419397.aspx"&gt;pickit2&lt;/a&gt; is needed, as far as I know there are no simple programmers like the jdm programmer for the dspic.
&lt;br&gt;
&lt;br&gt;
I built it on some experimentation board and mounted it in a metal case that I got with my lighter from dealextreme.
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/158133.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33087/t_16-bit%20rgb-4.jpg"&gt;&lt;/a&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/158132.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33087/t_16-bit%20rgb-3.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/158134.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33087/r_16-bit%20rgb-5.jpg"&gt;&lt;/a&gt;
&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/430681.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight for windows 1.2 beta 4</title><link>http://blogger.xs4all.nl/loosen/archive/2008/11/12/422944.aspx</link><pubDate>Wed, 12 Nov 2008 00:12:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/11/12/422944.aspx</guid><description>Boblight for windows 1.2 beta 4 is released, you can find it at the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; page.&lt;br&gt;
&lt;br&gt;
Added all the new stuff in boblight-1.2, added -c and -h flags to boblightd, added -h, -s, -v, -i, -a, -p, -t, -u, -e, -h and -m flags to boblight-getpixel. Start boblight-getpixel with the -h flag for a help message. Added nicer icons for boblightd and boblight-getpixel. &lt;br&gt;
&lt;br&gt;
The rar file contains two configuration files, one for the standard momo controller and one for the standard atmo controller, either rename one to boblight.conf or start boblightd with the -c &amp;lt;filename&amp;gt; flag.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/422944.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight 1.2 released</title><link>http://blogger.xs4all.nl/loosen/archive/2008/11/09/422601.aspx</link><pubDate>Sun, 09 Nov 2008 21:48:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/11/09/422601.aspx</guid><description>&lt;a href="http://blogger.xs4all.nl/loosen/articles/408184.aspx"&gt;Boblight 1.2&lt;/a&gt; is released, you can find it at the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; section.
&lt;br&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;strong&gt;Changes&lt;/strong&gt;
&lt;dd&gt;Fixed a bug where a light would select a wrong color.
&lt;dd&gt;Made the proportional independent of interval.
&lt;dd&gt;Added boblight-getpixel.
&lt;dd&gt;Boblightd exits when an LTBL device does not respond, instead of completely freezing.
&lt;dd&gt;Changed the LTBL protocol to allow for auto baudrate measurement.
&lt;dd&gt;Added median method.
&lt;dd&gt;Added interpolation, proportional, saturation, value, valuerange, method and use parameters to the global section, useful if you have a lot of lights with the same parameters.
&lt;dd&gt;Added support for atmo devices.
&lt;dd&gt;Added parameters to boblight-jack to change the low, mid and high multipliers.
&lt;dd&gt;Added RGB24, BGR24 and RGB32 formats to boblight-v4l.
&lt;dd&gt;Added alsa, jack and X11 detection to the configure script.
&lt;dd&gt;Added alsa, jack, X11, v4l2 and cygwin parameters to the configure script.
&lt;dd&gt;Added a ping timeout checker to the clients, the clients will exit when the server exits or times out.
&lt;dd&gt;Added a grab parameter to boblight-X11.
&lt;dd&gt;Changed the parameter for address:port to also accept an address without a port.
&lt;dd&gt;Added version to the help messages.
&lt;dd&gt;Removed useless debugging info from the clients.
&lt;dd&gt;Banged my head on a table for not writing down changes when they're made.
&lt;/dl&gt;&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/422601.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight for windows 1.2 beta 3</title><link>http://blogger.xs4all.nl/loosen/archive/2008/10/29/420723.aspx</link><pubDate>Wed, 29 Oct 2008 16:45:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/10/29/420723.aspx</guid><description>Boblight for windows 1.2 beta 3 is released, the cygwin timers are replaced with native windows timers and the return value of GetDC() is checked for NULL.&lt;br&gt;
The cygwin timers have a lot of overhead, this works a lot more efficient.&lt;br&gt;
&lt;br&gt;
You can find it on the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; page.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/420723.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight with atmo hardware</title><link>http://blogger.xs4all.nl/loosen/archive/2008/10/27/420466.aspx</link><pubDate>Mon, 27 Oct 2008 21:05:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/10/27/420466.aspx</guid><description>Boblight 1.2 will have support for atmo hardware, but since it's not done yet you can use &lt;a href="http://www.xs4all.nl/~loosen/boblight/config/atmo/boblight.conf"&gt;this&lt;/a&gt; config file to get your atmo hardware working with boblight.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/420466.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Pickit2 clone</title><link>http://blogger.xs4all.nl/loosen/archive/2008/10/19/419397.aspx</link><pubDate>Sun, 19 Oct 2008 19:41:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/10/19/419397.aspx</guid><description>I made a pickit2 clone based on this &lt;a href="http://www.mcuhobby.com/articles.php?article_id=7"&gt;article&lt;/a&gt; with some modifications.&lt;br&gt;
I used a PIC18F4550 instead of a PIC18F2550 and added some extra components to make the target voltage auto adjustable.&lt;br&gt;
&lt;br&gt;
Here's the schematic:&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33069/o_schematic.jpg"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33069/r_schematic.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
R4 is used for minor adjustments of the target voltage, because the original pickit2 has an extra schottky diode which causes a 0.3 volt drop.
&lt;br&gt;
&lt;br&gt;
The circuit board is a bit messy, but it works great. The 40 pins socket is wired for PIC16 and PIC18, the 28 pins socket is wired for dspic33F.
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/157944.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/33069/t_pcb.jpg"&gt;&lt;/a&gt;&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/419397.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight for windows</title><link>http://blogger.xs4all.nl/loosen/archive/2008/10/11/417965.aspx</link><pubDate>Sat, 11 Oct 2008 20:31:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/10/11/417965.aspx</guid><description>With cygwin I was able to compile boblightd on windows, I also made a client for it that uses the getpixel api.&lt;br&gt;
You can download it at the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; page.
&lt;br&gt;
&lt;br&gt;
Extract the rar file to a directory somewhere, edit boblight.conf with notepad, it's already set up for a momo controller on com1.&lt;br&gt;
Check the page of &lt;a href="http://blogger.xs4all.nl/loosen/articles/408236.aspx"&gt;boblightd&lt;/a&gt; for the options in boblight.conf.&lt;br&gt;
&lt;br&gt;
Start boblightd.exe, you'll get a trayicon, now start boblight-getpixel.exe and everything should work.
&lt;br&gt;
To close boblightd and boblight-getpixel, doubleclick on the trayicon.
&lt;br&gt;&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/417965.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Class A headphone amp with crossfeed, using the LM317 as output device</title><link>http://blogger.xs4all.nl/loosen/archive/2008/10/02/416239.aspx</link><pubDate>Thu, 02 Oct 2008 18:12:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/10/02/416239.aspx</guid><description>I wanted to make a headphone amplifier with a crossfeed like &lt;a href="http://www.headwize.com/projects/meier_prj.htm"&gt;this&lt;/a&gt; one, elsewhere on the net I saw that some people where using the LM317 voltage regulator as output devices, I had a couple spare ones laying around so I figured, why not?
&lt;br&gt;
&lt;br&gt;
After some thinking and experimenting I finally settled on this schematic:
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/o_schematic.jpg"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/r_schematic.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
R1 and R2 simulate a headphone load, because the headphone output of my receiver is connected to the outputs of the amplifiers with a 390 ohm series resistor. That's fine for driving a pair of headphones but it can destroy an opamp if it's directly connected to its input.
&lt;br&gt;
Without R8 and R9 the amplifier oscillates, the 10k resistor forms a lowpass with the input capacitance of the opamp, this attenuates the feedback signal at high frequencies.
&lt;br&gt;
&lt;br&gt;
If you want an amplifier that can handle a line level input, you can use this schematic:
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/o_schematic2.jpg"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/r_schematic2.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
This is what it looks like, the power supply is in a separate casing.
&lt;br&gt;
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/157154.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/t_headphone_amp-0.jpg"&gt;&lt;/a&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/157155.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/t_headphone_amp-1.jpg"&gt;&lt;/a&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/157156.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32956/t_headphone_amp-2.jpg"&gt;&lt;/a&gt;&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/416239.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight 1.1 released</title><link>http://blogger.xs4all.nl/loosen/archive/2008/09/20/414027.aspx</link><pubDate>Sat, 20 Sep 2008 19:27:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/09/20/414027.aspx</guid><description>&lt;a href="http://blogger.xs4all.nl/loosen/articles/408184.aspx"&gt;Boblight 1.1&lt;/a&gt; is released, you can find it at the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408218.aspx"&gt;downloads&lt;/a&gt; section.
&lt;br&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;strong&gt;Changes&lt;/strong&gt;
&lt;dd&gt;Fixed a bug where a really low interval value in boblightd would cause a memory leak.
&lt;dd&gt;Boblight-X11 can handle resolution changes now.
&lt;dd&gt;Added black bar detection to boblight-v4l.
&lt;dd&gt;Cleaned up error handling.
&lt;dd&gt;Fixed some other things, forgot what they are though.
&lt;/dl&gt;&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/414027.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Boblight software version 1.0</title><link>http://blogger.xs4all.nl/loosen/archive/2008/08/29/409353.aspx</link><pubDate>Fri, 29 Aug 2008 02:05:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/08/29/409353.aspx</guid><description>&lt;a href="http://blogger.xs4all.nl/loosen/articles/408184.aspx"&gt;Boblight&lt;/a&gt; version 1.0 is released, together with a &lt;a href="http://blogger.xs4all.nl/loosen/articles/408881.aspx"&gt;howto&lt;/a&gt; for adding ambilight to your tv.
&lt;br&gt;
The results are very nice.
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/155276.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32633/t_100_097-1.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;
Check out more in the &lt;a href="http://blogger.xs4all.nl/loosen/articles/408819.aspx"&gt;pictures and videos&lt;/a&gt; section.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/409353.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Using the Picdem bootloader in Ubuntu</title><link>http://blogger.xs4all.nl/loosen/archive/2008/08/20/407519.aspx</link><pubDate>Wed, 20 Aug 2008 16:38:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/08/20/407519.aspx</guid><description>Microchip has a very useful bootloader for the PIC18F4550 so you can program it using usb.
&lt;br&gt;
Look &lt;a href="http://eegeek.net/content/view/13/32/"&gt;here&lt;/a&gt; for more information.
&lt;br&gt;
&lt;br&gt;
You can use the bootloader to program the 18F4550 using &lt;a href="http://piklab.sourceforge.net/"&gt;Piklab&lt;/a&gt;, but since piklab uses libusb, you have to set the permissions to be able to program it as a user.
&lt;br&gt;
In /etc/udev/rules.d create a file called 46-microchip-picdem.rules (as root) and put in this line:
&lt;br&gt;
&lt;br&gt;
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", SYSFS{idVendor}=="04d8", SYSFS{idProduct}=="000b", MODE="0666"
&lt;br&gt;
&lt;br&gt;
Now run "/etc/init.d/udev restart" (as root) and you should be able to use the bootloader from piklab without root permissions.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/407519.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Bob</dc:creator><title>Modify a cheap rc car for more speed</title><link>http://blogger.xs4all.nl/loosen/archive/2008/08/15/406786.aspx</link><pubDate>Fri, 15 Aug 2008 01:30:00 GMT</pubDate><guid>http://blogger.xs4all.nl/loosen/archive/2008/08/15/406786.aspx</guid><description>Recently I bought a cheap rc car from &lt;a href="http://www.dealextreme.com/details.dx/sku.4644"&gt;dealextreme&lt;/a&gt;, it can go forwards, backwards, left and right.
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/154825.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32575/t_rc-0.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
It also has a turbo button which makes the car go faster, the only downside is the turbo button doesn't work when you steer left or right.
I wanted to do something about that, so I opened it up and discovered that there was an ic inside called RX-2C, which apparently is a very common ic for these cars.
&lt;br&gt;
&lt;br&gt;
I looked up the datasheet and found that the turbo function is on pin 12 while the forward function is on pin 11, I soldered these pins together and tried it out.
&lt;br&gt;
&lt;a href="http://blogger.xs4all.nl/loosen/gallery/image/154826.aspx"&gt;&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/loosen/32575/t_rc-2.jpg"&gt;&lt;/a&gt;
&lt;br&gt;
Now when you press forward the turbo mode is engaged and also works when you steer left or right.
&lt;br&gt;
This has the added effect of being able to get more power out of the battery so you don't have to recharge as often.&lt;img src ="http://blogger.xs4all.nl/loosen/aggbug/406786.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>
