<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HackHut</title>
	<atom:link href="http://hackhut.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hackhut.com</link>
	<description>A network for hackers/DIYers to host their work. Fast, free, and simple</description>
	<lastBuildDate>Tue, 15 May 2012 22:53:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>DTR-less Reset Circuitry for the AVR</title>
		<link>http://lackawanna.hackhut.com/2012/05/15/dtr-less-reset-circuitry-for-the-avr/</link>
		<comments>http://lackawanna.hackhut.com/2012/05/15/dtr-less-reset-circuitry-for-the-avr/#comments</comments>
		<pubDate>Tue, 15 May 2012 05:19:12 +0000</pubDate>
		<dc:creator>lackawanna</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://91.504</guid>
		<description><![CDATA[<p></p>
<p>The USART-based bootloader is probably the most popular way of burning code to the AVR.  The Arduino, for one, uses this method.  </p>
<p>For example say you were using a FTDI cable to talk to your Arduino.  First the USB connector end of the cable would go into your host computer.  The other end of the cable .....<br /><br /><a href="http://lackawanna.hackhut.com/2012/05/15/dtr-less-reset-circuitry-for-the-avr/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://lackawanna.hackhut.com/files/2012/05/modembreakcircuit.png" rel="lightbox[1654]"><img src="http://lackawanna.hackhut.com/files/2012/05/modembreakcircuit.png" alt="" width="501" height="357" class="alignnone size-full wp-image-505" /></a></p>
<p>The USART-based bootloader is probably the most popular way of burning code to the AVR.  The Arduino, for one, uses this method.  </p>
<p>For example say you were using a FTDI cable to talk to your Arduino.  First the USB connector end of the cable would go into your host computer.  The other end of the cable would then be plugged into the appropriate header of the Arduino.  The RXD line from the FTDI cable now connects to the AVR&#8217;s TXD pin.  The TXD line connects to the AVR&#8217;s RXD pin.  In this way, the software serial interface on the host computer is converted down to its wire line equivalent for communicating with the bootloader on the AVR.  Even the USB versions of the Arduino burn code effectively the same way &#8211; that is they still use a USART-based bootloader.  </p>
<p>But how do you reset the AVR so you can drop it into the bootloader and burn your code?  One way is to use a third wire from the serial port, namely the DTR signal wire, to do it.  The Arduino places a capacitor between the DTR signal and the AVR&#8217;s reset pin and its pull-up resistor.  When the DTR line is toggled a pulse is generated causing the pin to go low and the AVR to be reset.  Your own personal AVR circuits can be designed to use this method as well, using a pull-up resistor and capacitor.</p>
<p>However, this requires three wires, not including ground, as well as code on the host computer to toggle the DTR signal.</p>
<p>Instead of using three wires, the circuitry illustrated above uses only two: the TXD and RXD wires.   With this circuit the AVR is reset whenever a modem break is sent over the host&#8217;s TXD line.   The RST line goes directly from the 556 to the RESET pin of the AVR with no pull-up or capacitor in between.  </p>
<p>When prototyping saving one wire might not be worth it, but if your microcontrollers were to be remotely controlled or placed a good distance away from each other saving a wire might come in handy.  In addition your development board no longer needs either the pull-up resistor or the capacitor.</p>
<p>Here is a command sequence that you can use to reset and burn the AVR with this reset method.  Note, the ~# escape sequence sends a modem break over the serial port.</p>
<p>$ echo &#8216;~#~.&#8217; | cu -l /dev/ttyUSB0 -s 9600<br />
$ avrdude -c avrisp -b 9600 -P /dev/ttyUSB0 -p m328p [hexfile]</p>
<p>Unfortunately the &#8216;cu&#8217; command is slow to return the command line, so the alternate technique below is recommended.</p>
<p>$ echo &#8216;~#~!avrdude -c avrisp -b 9600 -P /dev/ttyUSB0 -p m328p [hexfile]&#8216; | cu -l /dev/ttyUSB0 -s 9600</p>
<p>Have fun!</p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=DTR-less%20Reset%20Circuitry%20for%20the%20AVR&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=DTR-less%20Reset%20Circuitry%20for%20the%20AVR&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=DTR-less%20Reset%20Circuitry%20for%20the%20AVR&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=DTR-less%20Reset%20Circuitry%20for%20the%20AVR&amp;body=http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F&amp;title=DTR-less+Reset+Circuitry+for+the+AVR">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F&amp;title=DTR-less+Reset+Circuitry+for+the+AVR">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F&amp;title=DTR-less+Reset+Circuitry+for+the+AVR">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F&amp;t=DTR-less+Reset+Circuitry+for+the+AVR">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Flackawanna.hackhut.com%2F2012%2F05%2F15%2Fdtr-less-reset-circuitry-for-the-avr%2F&amp;title=DTR-less+Reset+Circuitry+for+the+AVR">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://lackawanna.hackhut.com/2012/05/15/dtr-less-reset-circuitry-for-the-avr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First post!</title>
		<link>http://volt.hackhut.com/2012/05/10/hello-world/</link>
		<comments>http://volt.hackhut.com/2012/05/10/hello-world/#comments</comments>
		<pubDate>Thu, 10 May 2012 07:14:15 +0000</pubDate>
		<dc:creator>volt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://501.1</guid>
		<description><![CDATA[<p>Okay, this is my first post on the HackHut blog-worklog thing. I&#8217;ll post some of my previous projects later and I will be adding descriptions about my current work too. It will mainly involve robotics, electronics and some other machanical stuff. Everything you can do out of junk using soldering iron, welding equipment, angle grinder, screwdriver, saw and knife.</p>
<p>Yours sincerely, .....<br /><br /><a href="http://volt.hackhut.com/2012/05/10/hello-world/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p>Okay, this is my first post on the HackHut blog-worklog thing. I&#8217;ll post some of my previous projects later and I will be adding descriptions about my current work too. It will mainly involve robotics, electronics and some other machanical stuff. Everything you can do out of junk using soldering iron, welding equipment, angle grinder, screwdriver, saw and knife.</p>
<p><em>Yours sincerely, Volt</em></p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=First%20post%21&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=First%20post%21&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=First%20post%21&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=First%20post%21&amp;body=http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F&amp;title=First+post%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F&amp;title=First+post%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F&amp;title=First+post%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F&amp;t=First+post%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fvolt.hackhut.com%2F2012%2F05%2F10%2Fhello-world%2F&amp;title=First+post%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://volt.hackhut.com/2012/05/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Range Wifi</title>
		<link>http://skolnik.hackhut.com/2012/03/08/long-range-wifi/</link>
		<comments>http://skolnik.hackhut.com/2012/03/08/long-range-wifi/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 15:56:35 +0000</pubDate>
		<dc:creator>skolnik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://88.49</guid>
		<description><![CDATA[<p>Currently doing some work with long range wifi.  waiting to finish what I&#8217;m doing before I share my results, their looking pretty good.</p>


































]]></description>
			<content:encoded><![CDATA[<p>Currently doing some work with long range wifi.  waiting to finish what I&#8217;m doing before I share my results, their looking pretty good.</p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=Long%20Range%20Wifi&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=Long%20Range%20Wifi&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=Long%20Range%20Wifi&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=Long%20Range%20Wifi&amp;body=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F&amp;title=Long+Range+Wifi">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F&amp;title=Long+Range+Wifi">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F&amp;title=Long+Range+Wifi">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F&amp;t=Long+Range+Wifi">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Flong-range-wifi%2F&amp;title=Long+Range+Wifi">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://skolnik.hackhut.com/2012/03/08/long-range-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EM Pendulum</title>
		<link>http://skolnik.hackhut.com/2012/03/08/em-pendulum/</link>
		<comments>http://skolnik.hackhut.com/2012/03/08/em-pendulum/#comments</comments>
		<pubDate>Thu, 08 Mar 2012 15:54:27 +0000</pubDate>
		<dc:creator>skolnik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://88.47</guid>
		<description><![CDATA[<p>Recently did some work with the solar pendulum by Solarbotics&#8230;Check out my pages if your interested in seeing how it went.</p>


































]]></description>
			<content:encoded><![CDATA[<p>Recently did some work with the solar pendulum by Solarbotics&#8230;Check out my pages if your interested in seeing how it went.</p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=EM%20Pendulum&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=EM%20Pendulum&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=EM%20Pendulum&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=EM%20Pendulum&amp;body=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F&amp;title=EM+Pendulum">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F&amp;title=EM+Pendulum">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F&amp;title=EM+Pendulum">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F&amp;t=EM+Pendulum">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fskolnik.hackhut.com%2F2012%2F03%2F08%2Fem-pendulum%2F&amp;title=EM+Pendulum">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://skolnik.hackhut.com/2012/03/08/em-pendulum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You can Fix your M-Audio Axiom 25 for $13, tonight!</title>
		<link>http://riverembedded.hackhut.com/2012/03/07/you-can-fix-your-m-audio-axiom-25-for-13-tonight/</link>
		<comments>http://riverembedded.hackhut.com/2012/03/07/you-can-fix-your-m-audio-axiom-25-for-13-tonight/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 15:16:10 +0000</pubDate>
		<dc:creator>rbwilliams</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://93.77</guid>
		<description><![CDATA[<p>(Sorry no pictures, my camera batteries were dead. And once I am in the zone &#8211; its hard to stop and find more batteries.)</p>
<p>I was looking into purchasing one of the all-in-one MIDI keyboard, knob controller, drum pad jobbies. There are a few models out there, but the axiom 25 looked cool, and seemed right. I had read about their .....<br /><br /><a href="http://riverembedded.hackhut.com/2012/03/07/you-can-fix-your-m-audio-axiom-25-for-13-tonight/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p>(Sorry no pictures, my camera batteries were dead. And once I am in the zone &#8211; its hard to stop and find more batteries.)</p>
<p>I was looking into purchasing one of the all-in-one MIDI keyboard, knob controller, drum pad jobbies. There are a few models out there, but the axiom 25 looked cool, and seemed right. I had read about their problem of the drum pads becoming unresponsive, but I took a chance. </p>
<p>I found one on ebay for really cheap. The description was that it did not communicate with a computer.<br />
&#8220;A ha!&#8221; I thought &#8220;Probably a broken USB jack! easy fix&#8230;&#8221; Or the USB to serial circuit was fried. Well, I bid on it, and won it. Including shipping -$50!</p>
<p>I received it, plugged it in, and the computer saw it right away. Hmmm&#8230;<br />
I started up MIDI-OX to see what was happening. Only a few of the keys were responsive, and only two pads were responsive. Uh-oh.</p>
<p>Seeing as I used to repair keyboards for a living, I opened it and and jumped in. The keyboard is pretty standard. No broken bits of plastic. I unscrewed the keyboard assembly to get at the key contacts.<br />
Once I stripped them off their pegs, I wiped them down with rubbing alcohol. Then popped them back on using a toothpick to push the rubber tabs back in to the holes.There was a lot of dirt, hair and grime I cleaned of the bottom of the keys too. That can interfere with there operation too.</p>
<p>MIDI-OX reports that all the keys are functional now! Onto the pads.</p>
<p>The drum pads are resistive pads sandwiched between sheets of plastic. I could not see anything broken or damaged. However, I noticed that the flex ribbon cable looked dull. I disconnected it and felt the contacts. Its just paint &#8211; it rubs off! Very cheap, M-audio! Well, that could explain it. And, if there were any cracks in the paint, I doubt I could see them. But, the good news is, I know how to fix this!</p>
<p>More paint! Yes &#8211; paint, &#8220;copper paint&#8221; to be exact. Pray tell, where do you find copper paint at 7 o&#8217;clock at night? The answer is: an auto parts store! I bought this stuff: Permatex 15067 Quick Grid Rear Window Defogger Repair Kit at a CarQuest store. Most parts stores will carry defroster repair kits, but don&#8217;t go to O&#8217;reilly , they still sponsor Rush Limbaugh (hey, its my blog).</p>
<p>This stuff was $12.99 at the store I went to. Not the cheapest, I am sure. But, considering I can get it now, and its less than the $20 replacement part that you supposedly can order form M-audio, it was worth it. Another option would be going to Radio Shack and buying a circuit trace pen. But again, its $20.</p>
<p>What to do:<br />
1) Shake up the vile really well.</p>
<p>2) get a tooth pick, or two.</p>
<p>3) DO NOT USE the brush that comes with it. It is not fine enough, and you get get paint all over.</p>
<p>4) Instead use the TIP of a toothpick to dip into the paint. It won&#8217;t do you any good to get the whole toothpick full of paint!</p>
<p>5) Dab the paint on the thicker part of each  trace on the flex cable &#8211; just the top side.</p>
<p>6) LEt it dry 5-10 minutes. Check continuity between traces, or visually inspect for bridges of paint.</p>
<p>7) Push cable back into connector. This will be a little harder because of the friction of the paint, but it will go.</p>
<p> <img src='http://hackhut.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Fire up MIDI-Ox or some other MIDI monitor/ program. Make sure each pad has a different MIDI note number and that the same MIDI note number shows up in the NOTE ON / NOTE OFF category. I had a bridge between two of mine and it showed the numbers of the bridged pads interchanged.</p>
<p>In less than an hour you are done!</p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=You%20can%20Fix%20your%20M-Audio%20Axiom%2025%20for%20%2413%2C%20tonight%21&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=You%20can%20Fix%20your%20M-Audio%20Axiom%2025%20for%20%2413%2C%20tonight%21&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=You%20can%20Fix%20your%20M-Audio%20Axiom%2025%20for%20%2413%2C%20tonight%21&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=You%20can%20Fix%20your%20M-Audio%20Axiom%2025%20for%20%2413%2C%20tonight%21&amp;body=http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F&amp;title=You+can+Fix+your+M-Audio+Axiom+25+for+%2413%2C+tonight%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F&amp;title=You+can+Fix+your+M-Audio+Axiom+25+for+%2413%2C+tonight%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F&amp;title=You+can+Fix+your+M-Audio+Axiom+25+for+%2413%2C+tonight%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F&amp;t=You+can+Fix+your+M-Audio+Axiom+25+for+%2413%2C+tonight%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Friverembedded.hackhut.com%2F2012%2F03%2F07%2Fyou-can-fix-your-m-audio-axiom-25-for-13-tonight%2F&amp;title=You+can+Fix+your+M-Audio+Axiom+25+for+%2413%2C+tonight%21">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://riverembedded.hackhut.com/2012/03/07/you-can-fix-your-m-audio-axiom-25-for-13-tonight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CANed dreams</title>
		<link>http://nerd.hackhut.com/2012/03/04/caned-dreams/</link>
		<comments>http://nerd.hackhut.com/2012/03/04/caned-dreams/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 00:24:14 +0000</pubDate>
		<dc:creator>hanzo</dc:creator>
				<category><![CDATA[Real hacking]]></category>
		<category><![CDATA[CAN bus]]></category>
		<category><![CDATA[cannot buy means make yourself]]></category>

		<guid isPermaLink="false">http://46.240</guid>
		<description><![CDATA[<p>Besides investing mildly into new hardware to keep me able to waste my time I also did some real hacking, or at least prepared it.</p>
<p>During a long phone call with a good friend I got an interesting idea. There&#8217;s a company that offers modules for almost all BMW models with which you can turn them into your own custom light .....<br /><br /><a href="http://nerd.hackhut.com/2012/03/04/caned-dreams/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p>Besides investing mildly into new hardware to keep me able to waste my time I also did some real hacking, or at least prepared it.</p>
<p>During a long phone call with a good friend I got an interesting idea. There&#8217;s a company that offers modules for almost all BMW models with which you can turn them into your own custom light organ. Want to blind people randomly bu putting on the high beams when unlocking it? Just program their 150 bucks module to do so. Yes, people are buying such stuff and pay big money. While I understand that for some generations where BMW used a proprietary IBus interface for all their comfort modules I&#8217;m a bit surprised there&#8217;s no competition for this for CAN bus based models. Also, there&#8217;s no one offering such nonsense for other manufacturers.</p>
<p>Yeah, you get it!</p>
<p>As there is a nice Mercedes Benz in my garage I got the idea to tap into its interior CAN bus and try to fool around there a little. Before you do something like that you should have an idea of what you are about to do and how the stuff you&#8217;re going to interfere is working. So let&#8217;s take a little lesson on the CAN bus.</p>
<p>Basically in the automotive world most manufacturers use a two wire CAN bus, several of them. The common car has at least three. One for the OBD II diagnosis port that is just present for this reason and provided by the main control unit for the engine. It features some standard messages for diagnosis purposes but is practically limited to that. The second is the actual engine bus that&#8217;s used by the important systems, like engine, transmission and security systems. The third is the interesting one, used for everything that&#8217;s not highly mission critical, like lights, radio, AC, seats and such. The engine and interior CAN are, at least for most Mercedes cars,  loosely connected by the instrument panel (or however you call this thing in English). The instrument panel is connected to the engine bus and and the interior bus and acts as a bridge for certain kinds of messages, like speed or steering wheel position. What exactly it bridges and what not I&#8217;ll have to find out.</p>
<p>So we now know the topology. The CAN used for the engine is typically 500kbit, while, at least for older interior buses, 125kbit is common. But how does that whole CAN shenanigans work?</p>
<p>First, it is quite a bit different than the usual bus and network connections you know from computers. It features a different concept of addressing and also arbitration and collision management. Physically it is a bus of two wires with, iirc, differential signaling on those two lines and a 60Ohm termination, one 120Ohm terminator on each end. Signaling voltage is, iirc, again, something about 5V. To provide a constant clock for all devices on the bus, you&#8217;ll see why this is more important than elsewhere, in case nobody feels like talking bit stuffing is used. Ones and zeros get signaled by pulling the voltage down or leaving it, the actual signal is the voltage level, not the change of voltage signals. So three times a one is long low signal (or if I mix it up a long high signal). Therefore after more than 5 times the same bit one inverted bit is sent to ensure the devices stay in sync with their idea of what the clock signal is.</p>
<p>So how does addressing devices work?</p>
<p>Not at all! CAN devices have no device address. The protocol consists mainly of message IDs and payloads for those IDs. So if you want to talk to a specific device on the bus, you need to just send a message with the appropriate ID. If you want to listen to everything a certain device says, you need to know all message IDs it uses. This scheme is actually quite beneficial for tapping into such a bus, as there&#8217;s no way for any other device to detect the presence of a listener or to distinguish between messages sent by two devices. If my device uses the same message idea as another one, nobody on the bus has an idea of that. The only option would be that devices listen to the IDs they use themselves to see if anyone else uses them.</p>
<p>How are collisions handled?</p>
<p>Whenever you have a bus and especially if it is half duplex you have to somehow handle situations where more than one device wants to say something. You might know that for Ethernet it&#8217;s basically that when two start talking both shut up and try again after a random timeout. That&#8217;s done for a reason but it has one big downside. There is no guarantee that anything can be sent in a finite amount of time. Yeah sure, practically and such, but in theory you can solve this in other ways. You could e.g. have a master, like the USB host controller or cell towers, assign time slots and manage it this way, but that would not be too fail safe, as you would at least have to define what happens if the master fails. Your options for this are, in short, failure or complex stuff.</p>
<p>CAN does not have a collision detection approach, but a collision resolution approach. Message IDs not only distinguish between different  kinds of information, they are also responsible for determining priority of a message. The higher priority message always wins during the arbitration period and gets transmitted, while the lower priority message is held back and has to be transmitted later. Now we&#8217;ll see why a steady clock signal for all participants is important. If two participants want to send a message, they start at the same time and also listen to the bus. While both send the same bits, they have no idea whether someone else is also sending or not. Once a bit differs, one has to pull the bus low and one has to leave the level to signal the opposite bit. The one who leaves the bus alone sees it being pulled down, backs off and loses arbitration. The other one, and anybody else on the bus, has no idea that there ever was someone else intending to send and just goes on. The fact that one bit has to differ is determined by ensuring that all devices use different message IDs for sending.</p>
<p>So this way you can avoid congestion for the cost of delaying or suppressing messages with lower priority. This makes perfect sense in an automotive environment, where you can live with an increased latency or loss of unimportant information. Who&#8217;s gonna care about how high the latency for the power window button is when your anti lock brakes are in effect? And besides, I already mentioned power windows and such are separated from the critical bus, so it would maybe be something like adjusting ignition timing when you&#8217;re currently sliding in a 90 degree angle with ESP trying to keep you from acting like a dreidel. And I&#8217;m also sure the capacity of the engine CAN is high enough to not have any relevant latency even in this case.</p>
<p>So what does this tell us in regard to reverse engineering a Mercedes interior CAN?</p>
<p>A lot. For one it tells us to better get hardware that handles the CAN protocol itself, at least for the start. Implementing it with a normal microcontroller should be doable, at 125kbit and 5V signaling level, but that would be a mid sized project in itself. If you wanna do it really good and make sure signal edges and such are clean enough to be within specs and not just clean enough to be just working with whatever you have it would likely be a pretty big project.</p>
<p>Another thing is that we can assume Mercdes kept to the idea of using message IDs for priority. So chances are this can give us hints decoding messages. I&#8217;d guess the brake light gets preferred over the buttons to control the radio.</p>
<p>So yeah, I&#8217;m gonna get my hands on something that can tap the CAN bus sooner or later and see what I&#8217;m able to decode and understand. My current preference is something based on the ELM327 chip, which, among other things, does speak CAN, handles all the bus details and not only has a UART interface, but also comes with a very detailed datasheet explaining a lot not only about the chip and its behavior, but also CAN itself.</p>
<p>Don&#8217;t get too excited, though, this is more a long term idea and not necessarily happening this weekend.</p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=CANed%20dreams&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=CANed%20dreams&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=CANed%20dreams&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=CANed%20dreams&amp;body=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F&amp;title=CANed+dreams">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F&amp;title=CANed+dreams">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F&amp;title=CANed+dreams">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F&amp;t=CANed+dreams">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fcaned-dreams%2F&amp;title=CANed+dreams">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nerd.hackhut.com/2012/03/04/caned-dreams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m back, with a new toy, too</title>
		<link>http://nerd.hackhut.com/2012/03/04/im-back-with-a-new-toy-too/</link>
		<comments>http://nerd.hackhut.com/2012/03/04/im-back-with-a-new-toy-too/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 23:23:39 +0000</pubDate>
		<dc:creator>hanzo</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[TC4400 Slate]]></category>
		<category><![CDATA[Laptop repair]]></category>
		<category><![CDATA[On the workbench just now]]></category>
		<category><![CDATA[RANT!]]></category>
		<category><![CDATA[Tablet PC]]></category>

		<guid isPermaLink="false">http://46.238</guid>
		<description><![CDATA[<p>No I didn&#8217;t die. My mother actually did, but that&#8217;s neither about tablets nor technology.</p>
<p>Until some weeks ago I was still using my trusty Fujitsu T4210/15 as my main mobile computer and the TC4400 slate I built myself also saw some use from time to time.  But the hinge of the T was obviously starting to show its age after .....<br /><br /><a href="http://nerd.hackhut.com/2012/03/04/im-back-with-a-new-toy-too/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p>No I didn&#8217;t die. My mother actually did, but that&#8217;s neither about tablets nor technology.</p>
<p>Until some weeks ago I was still using my trusty Fujitsu T4210/15 as my main mobile computer and the TC4400 slate I built myself also saw some use from time to time.  But the hinge of the T was obviously starting to show its age after more than half a decade of heavy use and abuse. The latter from me as much as likely from the previous owner. Trying to keep it alive was tried with different ways.</p>
<p><strong>How to lube a Tablet PC hinge?</strong></p>
<p>Classic lithium based grease and WD40 have both failed to act as a suitable lubricant for the hinge construction inside the display housing that is responsible for the opening and closing process. MoS2 grease wasn&#8217;t good either. The sound it made when moved with either of those was a little frightening to say the least. The thing that finally made it silent and feel good again was some bicycle chain oil I had lying around. Less watery than WD40 (here in DE WD40 is mainly petroleum, US WD40 might work well) and less solid than any of the other greases, while also being quite adhesive. None the less you could feel that the whole hinge construction was nearing the end of its useful lifetime under the conditions I exposed it to. So I decided to look for a successor and give it to my GF, who should have another year or two of fun with my T.</p>
<p><strong>What to get now? </strong></p>
<p>But what to get? It had to be a Tablet PC again. Normal laptop was not worth considering, annotating PDFs and using OneNote for all kinds of scribbling is way to convenient once you are used to it. A pure slate without a keyboard also was no choice. Handwriting recognition is really good, but its weakpoint to me is recognizing symbols and combinations unusual in normal language. Besides this is way slower than typing.</p>
<p>I looked around for some time and in the end the best bang for the buck was the very same ebay seller selling the very same TC4400 I had recommended to so many people. So I now have not just a TC4400 Slate, but also a normal TC4400. Getting was a ibt of a hassle as the first one I got was way worse then described, but after some encouraging calls I ended up with one that essentially looks brand new. No visible use of the keyboard or trackpad. The backlight also seems to be in a good condition (it&#8217;s CCFL, so gets dimmer and shifts color to a rose tint over time) and no scratches or signs of actual use anywhere. The only thing you can see and feel has been used a bit is the pen. What I paid? Including a secondary battery below 200€!</p>
<p>I thought long about getting something as old as this from a technology point of view. But in the end, I have no reason to buy anything newer as the additional performance from the CPU is not going to make it much faster and the other big point, battery life, also wouldn&#8217;t be substantially better unless I would buy something pretty recent. That would be roughly 5 times the money at least. For a real boost it would have to be Sandy Bridge which equals ~1400€+++, for essentially next to nothing.</p>
<p><strong>How to hack it?</strong></p>
<p>I&#8217;ve cursed this in the past and it has kept me from recommending or getting any Dell, IBM and HP hardware: BIOS whitelisting, blacklisting and all the like.</p>
<p>HP is big in this game, too. If you scroll back a lot here to the early days of this blog, you&#8217;ll find an article describing how I got around HP&#8217;s damned branding of a Wifi Link 5100 by rewriting the device ID and subsystem ID. They take normal hardware and have it customized with changes useless besides making it incompatible. And then they sell &#8220;their&#8221; cards for five times what the generic version is worth. Of course you can&#8217;t upgrade your Wifi too far even when buying their crap, better get something entirely new.</p>
<p>So yeah, the TC4400 of course also has BIOS whitelisting and refuses to take that very same Wifi Link 5100. Well, refused. I googled a lot and got into a thread on some forum where people where quite eagerly deciphering and reverse engineering BIOSes and among that was one for an NC4400, which is essentially the exact same with a different hinge and without a digitizer. After some time of delving into the topic I thought this should be doable. In addition I found out that there are ways to restore a bad BIOS flash easily, without desoldering anything or using JTAG. The damn thing can restore a bad BIOS flash from a USB diskette (!) drive.</p>
<p>It now happily accepts my Wifi Link 5100 and possibly anything else, too. I haven&#8217;t done too much myself, as I have to admit. I mainly ported a BIOS hack to a nearly identical other BIOS.</p>
<p><strong>What the &#8230;?</strong></p>
<p>I noticed a slight misbehavior of my newly acquired toy after its initial defloration, for replacing memory, wifi card and harddisk. The power light never goes out entirely. It merely gets slightly dimmer. Also, the battery gets drained about 5% per hour. In addition, when shut off or sleeping while connected to AC or a non empty battery it later shows very very weird symptoms on its LCD. On the left and right side entire horizontal lines of subpixels are constantly on, like dead pixels. On the upper and lower rim of the screen it&#8217;s just parts of the line. So a problem on the level of display memory or logic is out of the question, also it happens everywhere and is totally independent of picture content.</p>
<p>I have never seen this before. If you wait long enough those colored lines get more and ultimately the display has a border of too high brightness all around. How the fuck ?!?</p>
<p><a href="http://nerd.hackhut.com/files/2012/03/04032012157.jpg" rel="lightbox[1390]"><img class="alignnone size-medium wp-image-242" src="http://nerd.hackhut.com/files/2012/03/04032012157-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Additionally there&#8217;s another quirk. If you disconnect AC and all batteries, inserting a battery will make it change its power state, rev up the fan but not show any image or do anything. You can switch it off again, but there&#8217;s no way to boot it. You have to insert the battery while it is on and connected to AC or a different battery.</p>
<p>Before you read on, try to guess what could cause this. Consider all you know about computers and their sometimes weird behavior. I would have never figured it out be mere thought if I would have been presented the laptop in this state.  As I had changed CPU, HDD, wifi and memory in one go I tried to change back the parts piece by piece after being sure to have no explanation which one of those could cause this.</p>
<p>It was in fact the Wifi card. Once it is pulled the power LED does not stay on for no reason and also inserting a battery is not a problem anymore. I have not found the time to fix this or further investigate how this works, but someone else with a very similar problem has told me that isolating all of the mini PCIe card&#8217;s pins that are unused or NC according to some pinout he found did fix the problem for him. I would have tried the same as a first step.</p>
<p>So, yeah. Once I tape up the wifi card&#8217;s pins I should be done setting this thing up and can just use it.</p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=I%26%238217%3Bm%20back%2C%20with%20a%20new%20toy%2C%20too&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=I%26%238217%3Bm%20back%2C%20with%20a%20new%20toy%2C%20too&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=I%26%238217%3Bm%20back%2C%20with%20a%20new%20toy%2C%20too&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=I%26%238217%3Bm%20back%2C%20with%20a%20new%20toy%2C%20too&amp;body=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F&amp;title=I%26%238217%3Bm+back%2C+with+a+new+toy%2C+too">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F&amp;title=I%26%238217%3Bm+back%2C+with+a+new+toy%2C+too">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F&amp;title=I%26%238217%3Bm+back%2C+with+a+new+toy%2C+too">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F&amp;t=I%26%238217%3Bm+back%2C+with+a+new+toy%2C+too">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fnerd.hackhut.com%2F2012%2F03%2F04%2Fim-back-with-a-new-toy-too%2F&amp;title=I%26%238217%3Bm+back%2C+with+a+new+toy%2C+too">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://nerd.hackhut.com/2012/03/04/im-back-with-a-new-toy-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 channel audio select controller</title>
		<link>http://zajebi.hackhut.com/2012/02/26/7-channel-audio-select-controller/</link>
		<comments>http://zajebi.hackhut.com/2012/02/26/7-channel-audio-select-controller/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 22:33:21 +0000</pubDate>
		<dc:creator>zajebi</dc:creator>
				<category><![CDATA[electronics]]></category>
		<category><![CDATA[16f628a]]></category>
		<category><![CDATA[applicaion]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[pic]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[serial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[vb2008express]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[winxp]]></category>
		<category><![CDATA[wires]]></category>

		<guid isPermaLink="false">http://98.44</guid>
		<description><![CDATA[<p></p>
<p>I&#8217;m separating the controller for the 7 channel audio selector as it&#8217;s own build&#8230; since it has issues of it&#8217;s own to note.</p>
<p>It&#8217;s using (from pc to micro logical view) a usb-to-serial converter and pic microcontroller. Also on the pc side is the interface app.</p>
<p>The usb-to-serial converter is a module from DLP design, which uses the FTDI&#8217;s FT232BM ic. This .....<br /><br /><a href="http://zajebi.hackhut.com/2012/02/26/7-channel-audio-select-controller/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/b0jan/6786491198"><img src="http://farm8.staticflickr.com/7203/6786491198_fb4f149098_z.jpg" alt="" /></a></p>
<p>I&#8217;m separating the controller for the 7 channel audio selector as it&#8217;s own build&#8230; since it has issues of it&#8217;s own to note.</p>
<p>It&#8217;s using (from pc to micro logical view) a usb-to-serial converter and pic microcontroller. Also on the pc side is the interface app.</p>
<p>The usb-to-serial converter is a module from DLP design, which uses the FTDI&#8217;s FT232BM ic. This is what I had from a while ago, and it still works nicely (haven&#8217;t blown it up yet). It allows the use of usb port with the microcontrollers on a pc without the serial/rs232 port. The module is connected in bus powered mode, so it doesn&#8217;t require additional power pin hookup. It only needs the rx, tx and gnd (for reference).  Since the module is already powered with logic level power, it spits out the serial information that way too. No additional level interface ic&#8217;s are needed, just plug in straight into the microcontroller of choice (at least in my case, since they&#8217;re both 5V logic).</p>
<p><a href="http://www.flickr.com/photos/b0jan/6932622185"><img src="http://farm8.staticflickr.com/7039/6932622185_d9035189b7_z.jpg" alt="" /></a></p>
<p>The simples way to use the usb-to-serial converter on the pc side, is to open up the hyperterminal (or any terminal application). To get this working a bit spiffier (don&#8217;t ask), I whipped out a small vb app, using serial port.</p>
<p>I choose to go make a gui app for a few reasons (ranting commences a in a few).  Since I still haven&#8217;t gotten a handle on the C++ gui, i reverted back to the vb line. It seems that in their wisdom, m$ decided to add back the support for the serial port. I heard the rumors about it after vb6, but haven&#8217;t touched it since back in the day. The app was done with the free IDE vb2008express.  The commands that I choose to implement and the meanings will be noted a bit later on.</p>
<p><a href="http://www.flickr.com/photos/b0jan/6786564928"><br />
<img src="http://farm8.staticflickr.com/7046/6786564928_70f33b18f0.jpg" alt="" /></a></p>
<p><a class="downloadlink" href="http://hackhut.com/wp-content/plugins/download-monitor/download.php?id=2" title="Version1.0 downloaded 80 times" >List recent sites wordpress plugin (80)</a><br />
<em>(just the app. it is assumed that there are no warranties or guarantees whatsoever. not releasing the source just yet, but should be easy enough to reproduce if you need something for yourself. good luck <img src='http://hackhut.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )<br />
</em></p>
<p><em><br />
</em></p>
<p>When the app starts up, if it&#8217;s 1st time in that location, and/or there&#8217;s no .ini setup file, it will create one, and fill it in with the defaults. This will also dump a few hidden settings, that can be manually altered/enabled. The information for the convenient explanation of what is connected to which port is stored in the .ini. It has to be manually edited to change it from defaults. This allows to have a way to alter the information displayed by the app, without recompiling the application.  (Hopefully this all makes sense, and it seemed like common sense that I would like to have.)</p>
<p>Another (raw) interface mode is the hyperterminal (or any terminal application), as mentioned previously. For that, simply type in a number, and you get a response. The annoying thing with the hyperterminal is that if you don&#8217;t care about the stupid modem dialup, and don&#8217;t type in some bs area code, it keeps on harassing you about it on startup. Then when you want to exit it, it keeps on annoying you even more about &#8216;are you sure that you want to close the connection?&#8217;. Well no shit, I clicked the exit button for a reason. Also, there is no indication/reminder what do you have connected where, as opposed in the app. Anyways, enough ranting for now.  As mentioned, the command set is noted later.</p>
<p>Lastly, the end of the line interface is the 16f628a microchip pic microcontroller. I have been using this guy on and off for a while now, and had a few still around. In order to minimize power use but not setting it totally in the sleep mode with interrupt wakeups, I set it to run with it&#8217;s internal oscillator at 48kHz. This works nice, since it&#8217;s still responsive, but I haven&#8217;t confirmed the power draw difference yet. The downside to this choice is that the uart is clocked off the ic&#8217;s main oscillator&#8230; Long story short, I got it to communicate at 300 baud rate. It took some tweaking to the spbrg register, compared to the calculations, but for what I need, it works. With the setup as is, there was just enough i/o pins to get it all done for this version and implementation of the overall project.</p>
<p><a href="http://www.flickr.com/photos/b0jan/6932622349"><img src="http://farm8.staticflickr.com/7195/6932622349_50839c8c91_z.jpg" alt="" /></a> <a href="http://www.flickr.com/photos/b0jan/6786505576"><img src="http://farm8.staticflickr.com/7196/6786505576_03d8979c56_z.jpg" alt="" /><br />
</a></p>
<p>[Download not found]<br />
<em>(the compiled code to run on the microcontroller. no source just yet. compiled in the microchip&#8217;s new mplab-x ide. hope it works for you <img src='http://hackhut.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )<br />
</em></p>
<p><em><br />
</em></p>
<p>This ic has 18 pins, so roughly the i/o implementation is as follows:</p>
<ul>
<li>2   &#8211; power (vcc, and gnd/common)</li>
<li>2  &#8211; uart (tx, rx, and tap to gnd)</li>
<li>7  &#8211; input switches, pulled high with external resistors. went with port A, since mclr/reset is on there, and can be used as input only.</li>
<li>7  &#8211; outputs, spread across remaining port A and port B.</li>
</ul>
<p>Also the appropriate pins are tapped for the ICSP header. But to use that, it&#8217;s a good idea to disconnect the relay connections, so that the relays don&#8217;t go chattering to the programming serial/data streams.</p>
<p><a href="http://www.flickr.com/photos/b0jan/6932622469"><img src="http://farm8.staticflickr.com/7185/6932622469_a69422ee35_z.jpg" alt="" /></a></p>
<p><a href="http://www.flickr.com/photos/b0jan/sets/72157629461070995/">The whole set is here</a></p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=7%20channel%20audio%20select%20controller&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=7%20channel%20audio%20select%20controller&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=7%20channel%20audio%20select%20controller&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=7%20channel%20audio%20select%20controller&amp;body=http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F&amp;title=7+channel+audio+select+controller">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F&amp;title=7+channel+audio+select+controller">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F&amp;title=7+channel+audio+select+controller">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F&amp;t=7+channel+audio+select+controller">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fzajebi.hackhut.com%2F2012%2F02%2F26%2F7-channel-audio-select-controller%2F&amp;title=7+channel+audio+select+controller">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://zajebi.hackhut.com/2012/02/26/7-channel-audio-select-controller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ebay Watches Accuracy</title>
		<link>http://badwolf.hackhut.com/2012/02/22/ebay-watches-accuracy/</link>
		<comments>http://badwolf.hackhut.com/2012/02/22/ebay-watches-accuracy/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 03:13:04 +0000</pubDate>
		<dc:creator>BadWolf</dc:creator>
				<category><![CDATA[Funky Stuff]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[watch]]></category>
		<category><![CDATA[watches]]></category>

		<guid isPermaLink="false">http://35.448</guid>
		<description><![CDATA[<p>So, a couple weeks ago I&#8217;ve ordered some mechanical watches on eBay,why?</p>
<p>-Inexpensive</p>
<p>-Good looking</p>
<p>-Kinda reliable</p>
<p>-Really nice mechanical interior,fun to watch and show</p>
<p>Ok so now,everybody know that often,cheap good looking stuff can&#8217;t be reliable.</p>
<p>So upon receiving 3 of em, I wondered just how accurate they were at keeping time&#8230;.</p>
<p>First obvious point : why don&#8217;t you set them and just check the next .....<br /><br /><a href="http://badwolf.hackhut.com/2012/02/22/ebay-watches-accuracy/">Read the Rest</a>]]></description>
			<content:encoded><![CDATA[<p>So, a couple weeks ago I&#8217;ve ordered some mechanical watches on eBay,<strong>why?</strong></p>
<p>-Inexpensive</p>
<p>-Good looking</p>
<p>-Kinda reliable</p>
<p>-Really nice mechanical interior,fun to watch and show</p>
<p>Ok so now,everybody know that often,cheap good looking stuff can&#8217;t be reliable.</p>
<p>So upon receiving 3 of em, I wondered just how accurate they were at keeping time&#8230;.</p>
<p><strong>First obvious point :</strong> why don&#8217;t you set them and just check the next day?  It&#8217;s pretty simple,they are mechanical watches,if you don&#8217;t wear them,they won&#8217;t crank back up and stop pretty quickly. If you wear them 12h/day,they will last forever.</p>
<p>So, a device of some kind was needed to check the Accuracy&#8230;</p>
<p>Unfortunately, I&#8217;m not at home,where I would have used an arduino to do data acquisition and count up the &#8220;ticks&#8221; on a definite time length.</p>
<p><strong>Then I got an idea :</strong> my pentax WG-1 GPS has a pretty cool intervalometer built-in that can take pictures every minutes for a long period&#8230;why not use it to gather &#8220;stroboscopic&#8221; images of the watches running, if they are accurate,the seconds counting hand should stay still while the minutes and the hours go on.</p>
<p><a href="http://badwolf.hackhut.com/files/2012/02/04042408.jpg" rel="lightbox[1359]"><img class="aligncenter size-large wp-image-452" src="http://badwolf.hackhut.com/files/2012/02/04042408-550x456.jpg" alt="" width="550" height="456" /></a></p>
<p><strong>Second Obvious point :</strong> What tells me that the camera is accurate?</p>
<p>Solution was to make a first &#8220;video&#8221; at 1min intervals of a Real time clock,the only one I could find near me was an online website : <a href="http://atomicclock.org/">http://atomicclock.org/</a></p>
<p>Here&#8217;s the video of the snapshot taken of the clock :</p>
<p><a href="http://badwolf.hackhut.com/2012/02/22/ebay-watches-accuracy/"><em>Click here to view the embedded video.</em></a></p>
<p>As you can see,it&#8217;s pretty darn accurate,somewhere about 0,2 s.</p>
<p>From that point,I was ready to go on and test those :</p>
<p><a href="http://badwolf.hackhut.com/files/2012/02/IMGP0245.jpg" rel="lightbox[1359]"><img class="aligncenter size-large wp-image-449" src="http://badwolf.hackhut.com/files/2012/02/IMGP0245-550x344.jpg" alt="" width="550" height="344" /></a></p>
<p>Here is the resulting video:</p>
<p><a href="http://badwolf.hackhut.com/2012/02/22/ebay-watches-accuracy/"><em>Click here to view the embedded video.</em></a></p>
<p>Analysis base on a timescale of 2hours and neglecting the camera&#8217;s error:</p>
<p><strong>Watch #1 :</strong></p>
<p>Lost 2 seconds</p>
<p>-2/7200 = -277.778E-6 seconds</p>
<p>Error of -0.02777 %</p>
<p>Error for one day : -24 sec</p>
<p>Conclusion: Pretty accurate.</p>
<p><strong>Watch #2 :</strong></p>
<p>Gained 14 seconds</p>
<p>14/7200 = 1.944E-3</p>
<p>Error of 0.19444%</p>
<p>Error for one day :  2 min and 48 sec</p>
<p>Conclusion : Not accurate enough</p>
<p><strong>Watch #3:</strong></p>
<p>-2/7200 = -277.778E-6 seconds</p>
<p>Error of -0.02777 %</p>
<p>Error for one day : -24 sec</p>
<p>Conclusion: Pretty accurate.</p>
<p><strong>General conclusion:</strong></p>
<p>It is clear that W1 and W3 bears the same clockworks thus have the same error minus the variations in springs.</p>
<p>So this is how you find out about watches guys. Don&#8217;t get scammed,I&#8217;m returning W2 to the supplier. I have to time to waste. <img src='http://hackhut.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=Ebay%20Watches%20Accuracy&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=Ebay%20Watches%20Accuracy&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=Ebay%20Watches%20Accuracy&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=Ebay%20Watches%20Accuracy&amp;body=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F&amp;title=Ebay+Watches+Accuracy">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F&amp;title=Ebay+Watches+Accuracy">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F&amp;title=Ebay+Watches+Accuracy">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F&amp;t=Ebay+Watches+Accuracy">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Febay-watches-accuracy%2F&amp;title=Ebay+Watches+Accuracy">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://badwolf.hackhut.com/2012/02/22/ebay-watches-accuracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kick Song</title>
		<link>http://badwolf.hackhut.com/2012/02/22/kick-song/</link>
		<comments>http://badwolf.hackhut.com/2012/02/22/kick-song/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 19:54:58 +0000</pubDate>
		<dc:creator>BadWolf</dc:creator>
				<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://35.446</guid>
		<description><![CDATA[<p>This is a song I&#8217;ve made in spare time,between 2 circutis boards&#8230;</p>
<p>
</p>
<p>Hope you like it!</p>
<p>
</p>
<p>(it&#8217;s avaialable for download,look in the youtube info under the video!)</p>


































]]></description>
			<content:encoded><![CDATA[<p><strong>This is a song I&#8217;ve made in spare time,between 2 circutis boards&#8230;</strong></p>
<p><strong><br />
</strong></p>
<p><strong>Hope you like it!</strong></p>
<p><strong><p><a href="http://badwolf.hackhut.com/2012/02/22/kick-song/"><em>Click here to view the embedded video.</em></a></p><br />
</strong></p>
<p><strong>(it&#8217;s avaialable for download,look in the youtube info under the video!)</strong></p>

<div class="hadsubmit">
<a href="mailto:tips@hackaday.com?subject=Kick%20Song&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/had.png" title="Sumbit this to HackaDay" />
</a>
<a href="mailto:tips@hacknmod.com?subject=Kick%20Song&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/hacknmod.png" title="Sumbit this to HacknMod" />
</a>
<a href="mailto:tips@lifehacker.com?subject=Kick%20Song&amp;body=I found an interesting project you may like. Here is the link: http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F">
<img src="http://hackhut.com/wp-content/plugins/HaD-submit/lifehacker.png" title="Sumbit this to LifeHacker" />
</a>
</div>

<div class="jwsharethis">
<br />
<a href="mailto:?subject=Kick%20Song&amp;body=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/email.png" title="Share this page via Email" />
</a>
<a target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F&amp;title=Kick+Song">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/su.png" title="Share this page via Stumble Upon" />
</a>
<a target="_blank" href="http://digg.com/submit?url=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F&amp;title=Kick+Song">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/digg.png" title="Share this page via Digg this" />
</a>
<a target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F&amp;title=Kick+Song">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/reddit.png" title="Share this page via Reddit" />
</a>
<a target="_blank" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F&amp;t=Kick+Song">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/fb.png" title="Share this page via Facebook" />
</a>
<a target="_blank" href="http://twitter.com/intent/tweet?text=I+like+http%3A%2F%2Fbadwolf.hackhut.com%2F2012%2F02%2F22%2Fkick-song%2F&amp;title=Kick+Song">
<img src="http://hackhut.com/wp-content/plugins/jw-share-this/twitter.png" title="Share this page via Twitter" />
</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://badwolf.hackhut.com/2012/02/22/kick-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

