<?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>Tony Blews &#187; Tony</title>
	<atom:link href="http://www.tonyblews.co.uk/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tonyblews.co.uk</link>
	<description>Jack of all, master of none</description>
	<lastBuildDate>Mon, 26 Jul 2010 02:10:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Genesis of the Arduino Dalek</title>
		<link>http://www.tonyblews.co.uk/2010/07/genesis-of-the-arduino-dalek/</link>
		<comments>http://www.tonyblews.co.uk/2010/07/genesis-of-the-arduino-dalek/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 01:36:15 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Dalek]]></category>
		<category><![CDATA[Make Stuff]]></category>
		<category><![CDATA[Programming Bits]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Toys]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[dalek]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=850</guid>
		<description><![CDATA[As previously mentioned here, I was recently given a broken toy Dalek, which I promptly took apart (in the name of Science). Here it is before surgery commenced&#8230; Having stripped the thing down, I found inside two perfectly good electric motors, and when you find two working motors inside a toy there is only one [...]]]></description>
			<content:encoded><![CDATA[<p>As previously mentioned <a href="http://www.tonyblews.co.uk/2010/05/dalek-autopsy/">here</a>, I was recently given a broken toy Dalek, which I promptly took apart (in the name of Science).</p>
<p>Here it is before surgery commenced&#8230;</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-1.jpg"><img class="aligncenter size-full wp-image-852" title="dalek-1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-1.jpg" alt="" width="400" height="300" /></a></p>
<p>Having stripped the thing down, I found inside two perfectly good electric motors, and when you find two working motors inside a toy there is only one thing to do: Work out how to use a computer to control them!</p>
<p>So, figuring out that the easiest way of doing this was with an <a href="http://arduino.cc/">Arduino</a>, I <a href="http://www.amazon.co.uk/gp/product/B003CR56MU?ie=UTF8&amp;tag=ukwatransit-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=B003CR56MU">bought one</a>.</p>
<p>I won&#8217;t bleat on about how good the Arduino is, or how easy it is to use. There are hundreds of sites that do that.</p>
<p>Instead, here is a list of things wot i dun to get a PC controlling the Dalek.</p>
<p>To start with, I think we&#8217;ll have a bit of circuit design. Below is a simple circuit that takes 2 inputs from the Arduino and runs a motor either forwards or backwards. One input decides the direction of the motor, the other whether it is on or off.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-circuit.jpg"><img class="aligncenter size-full wp-image-856" title="relay-circuit" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-circuit.jpg" alt="" width="250" height="270" /></a></p>
<p>All very nice and abstract, but to be of any use it&#8217;ll need to be built. The quickest and easiest way is on Veroboard. So here is the design for that:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-vero.jpg"><img class="aligncenter size-full wp-image-858" title="relay-vero" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/relay-vero.jpg" alt="" width="250" height="236" /></a></p>
<p>The relays do the switching, and the diodes are there to protect the Arduino from back-emf currents when the relays toggle. Two of these circuits will be used, one for each motor. I built them on separate strips of board to make things easier for myself. This is what they look like when all connected up and dumped onto the Dalek chassis:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-wired1.jpg"><img class="aligncenter size-full wp-image-860" title="dalek-wired1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-wired1.jpg" alt="" width="400" height="300" /></a></p>
<p>The small board in the top left of the picture is just a plug I bodged up to make connecting the thing easier.</p>
<p>The parts used are 4x 1A5VDC DPDT relays, 4x 1N4004 diodes, a 10&#215;39 strip of Veroboard and some wires.</p>
<p>After all that soldering and burning my fingers, the next step is to write some code to make the thing move.</p>
<p>Each motor can be controlled to go backwards, forwards or stop. This gives nine possible movements, as this table shows:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-matrix.jpg"><img class="aligncenter size-full wp-image-865" title="dalek-matrix" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/dalek-matrix.jpg" alt="" width="200" height="170" /></a></p>
<p>And now its time to test this whole think by writing a program that takes keyboard commands (the letters in red, above) and sending signals to the circuitry to control the motors. Heres it is:</p>
<pre>// Project: Dalek control system
// Version 0.1 - Written before my Arduino even arrived
// Tony Blews tony@tonyblews.co.uk

int MotorDirectionR = 10;
int MotorDirectionL = 11;
int MotorPowerR     = 12;
int MotorPowerL     = 13;

void setup()
{
 pinMode(MotorDirectionR, OUTPUT);
 pinMode(MotorDirectionL, OUTPUT);
 pinMode(MotorPowerR, OUTPUT);
 pinMode(MotorPowerL, OUTPUT);

 Serial.begin(9600);
 Serial.println("Serial control Dalek system starting...");

}

// modes for the motor control
// convention here is modeXX - where X is F for forward, S for stationary and B for backwards
// first X is the left motor, second X is the right one
// for direction control, the LOW if forward and HIGH is backward
// for power control, LOW is off and HIGH is on

// all stop
void modeSS()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,LOW);
 digitalWrite(MotorPowerL,LOW);
}

// move straight ahead
void modeFF()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

// move straight backwards
void modeBB()
{
 digitalWrite(MotorDirectionR, HIGH);
 digitalWrite(MotorDirectionL, HIGH);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

// spin left
void modeBF()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, HIGH);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

//spin right
void modeFB()
{
 digitalWrite(MotorDirectionR, HIGH);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,HIGH);
}

// move forward left
void modeSF()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,LOW);
}

// move forward right
void modeFS()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,LOW);
 digitalWrite(MotorPowerL,HIGH);
}

// move backward left
void modeSB()
{
 digitalWrite(MotorDirectionR, HIGH);
 digitalWrite(MotorDirectionL, LOW);
 digitalWrite(MotorPowerR,HIGH);
 digitalWrite(MotorPowerL,LOW);
}

// move backward right
void modeBS()
{
 digitalWrite(MotorDirectionR, LOW);
 digitalWrite(MotorDirectionL, HIGH);
 digitalWrite(MotorPowerR,LOW);
 digitalWrite(MotorPowerL,HIGH);
}

//main program loop
void loop()
{
 if (Serial.available() &gt;0)
 {
 char inByte = Serial.read();
 // this version uses the QWEASDZXC "square" on the keyboard
 // as my laptop doesn't have a numeric keypad
 switch (inByte)
 {
 case 'q':
 modeSF();
 break;
 case 'w':
 modeFF();
 break;
 case 'e':
 modeFS();
 break;
 case 'a':
 modeBF();
 break;
 case 's':
 modeSS();
 break;
 case 'd':
 modeFB();
 break;
 case 'z':
 modeBS();
 break;
 case 'x':
 modeBB();
 break;
 case 'c':
 modeSB();
 break;
 default:
 modeSS();
 break;
 }
 }
}
</pre>
<p>And with that done, I suppose all that is left to do is show a video of the bottom bit of the dalek trundling around under computer control&#8230;</p>
<p>&#8230; which have to wait until the next post.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/07/genesis-of-the-arduino-dalek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Citroen Picasso Hating</title>
		<link>http://www.tonyblews.co.uk/2010/07/more-citroen-picasso-hating/</link>
		<comments>http://www.tonyblews.co.uk/2010/07/more-citroen-picasso-hating/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 03:42:44 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Adverts]]></category>
		<category><![CDATA[Cars]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[citroen]]></category>
		<category><![CDATA[claudia schiffer]]></category>
		<category><![CDATA[picasso]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=836</guid>
		<description><![CDATA[In 1998 Claudia Schiffer made an advert for the excrable Citroen Xsara. The car, although bad in every respect, was only the second worst Citroen of recent years. That dubious honour goes to the Xsara Picasso. The Picasso is one of only two cars that I completely refuse to drive (I&#8217;ll reveal the other one [...]]]></description>
			<content:encoded><![CDATA[<p>In 1998 Claudia Schiffer made an advert for the excrable Citroen Xsara. The car, although bad in every respect, was only the second worst Citroen of recent years. That dubious honour goes to the Xsara Picasso.</p>
<p>The Picasso is one of only two cars that I completely refuse to drive (I&#8217;ll reveal the other one in the future). To celebrate the removal of the Picasso from the Citroen UK catalogue I present a badly thought out and poorly executed video:</p>
<p><center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/7RCIjiY1VCQ&amp;hl=en_GB&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/7RCIjiY1VCQ&amp;hl=en_GB&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></center></p>
<p>Anyway, why would a German supermodel want to be associated with a shite French saloon car (apart from the cash &#8211; £3,000,000 allegedly)? Surely she&#8217;d have been better off whoring herself for the benefit of BMW or Mercedes?</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/07/more-citroen-picasso-hating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WowWee PaperJamz Guitar</title>
		<link>http://www.tonyblews.co.uk/2010/07/wowwee-paperjamz-guitar/</link>
		<comments>http://www.tonyblews.co.uk/2010/07/wowwee-paperjamz-guitar/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 02:03:28 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Guitar]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Toys]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[paperjamz]]></category>
		<category><![CDATA[toy guitar]]></category>
		<category><![CDATA[wowwee]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=812</guid>
		<description><![CDATA[I&#8217;ve always wanted a &#8220;Flying V&#8221; guitar, so when Postman Pat called today I was overjoyed. For about 10 minutes. What he brought was this: a WowWee PaperJamz Guitar, bought from Amazon for £25.99. The PaperJamz Guitar is essentially a paper thin toy guitar, or at least thats what the marketing bumph says. In reality [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always wanted a &#8220;Flying V&#8221; guitar, so when Postman Pat called today I was overjoyed. For about 10 minutes. What he brought was this: a <a href="http://wowwee.com/en/products/toys/entertainment/paper-jamz/guitars">WowWee PaperJamz Guitar</a>, bought from <a href="http://www.amazon.co.uk/gp/product/B003L5CVD0?ie=UTF8&amp;tag=ukwatransit-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B003L5CVD0">Amazon</a> for £25.99.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/paperjamz1.jpg"><img class="aligncenter size-full wp-image-813" title="paperjamz1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/paperjamz1.jpg" alt="" width="400" height="296" /></a></p>
<p>The PaperJamz Guitar is essentially a paper thin toy guitar, or at least thats what the marketing bumph says. In reality it is only paper thin if the paper in question is The Mail On Sunday (including all supplements).</p>
<p>The reason for this is simple. Whilst the actual capacitive sensors and sound transducer are paper thin, batteries are not. Plus, it it were paper this, it would flop about like a rabbit&#8217;s ears. So its actually about an inch thick at its fattest point.</p>
<p>This particular &#8220;guitar&#8221; is number 4 in a series of 6. Each one has a different look and is programmed with three songs to strum along to. On this model they are:</p>
<ol>
<li><strong>You Really Got Me</strong> (The Kinks)</li>
<li><strong>Blitzkrieg Bop</strong> (The Ramones)</li>
<li><strong>Godzilla</strong> (Blue Oyster Cult) &#8211; I had never heard of this one!</li>
</ol>
<p>For each song, you can either play in &#8220;Perfect Play Mode&#8221;, where you just bash away at the strumming area to hear the song play, and &#8220;Rhythm Mode&#8221;, where you have to get the strumming at least vaguely correct. Neither of these are really that interesting.</p>
<p>What is interesting about the thing is the &#8220;Freestyle Mode&#8221;, which allows you to play your own songs by using the fretboard as a, well, fretboard. While you can&#8217;t actually make real chords on it, you can play pre-recorded chord samples by touching parts of the fretboard to select the base chord and modifiers, and strumming the strum area. They even include a handy chord chart to help you:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/paperjamz2.jpg"><img class="aligncenter size-full wp-image-820" title="paperjamz2" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/07/paperjamz2.jpg" alt="" width="400" height="254" /></a></p>
<p>To sum this up briefly, to get the major chord, starting at E (don&#8217;t touch the fretboard), the frets count up FGABCDEFGA. To get a sharpened major, select the appropriate chord and also touch the next fret towards the body of the guitar. To get minor chords, select the base chord and also the fret two places towards the body. Sort of. Note that the frets don&#8217;t count up in the usual F F# G G# A etc. manner, and that they are all the same distance apart (a minor niggle &#8211; and a pisspoor joke on my part there, if you spotted it).</p>
<p>But, can you actually use this thing to bash out a real tune? Well lets have a look (and play<strong> Name That Tune </strong>at the same time)&#8230;</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="play" value="false" /><param name="loop" value="false" /><param name="src" value="http://www.youtube.com/v/hzR3zCcpz68" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/hzR3zCcpz68" loop="false" play="false"></embed></object></p>
<p>So there you have it. Its a sort of guitar, but not a really good one. If your could form real chords on it, then it would be a winner. Currently its just an amusing toy. I&#8217;m sure a future version will allow proper playing, and when it does I&#8217;ll buy one. Cos i&#8217;m sad like that.</p>
<p><center><iframe src="http://rcm-uk.amazon.co.uk/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=ukwatransit-21&#038;o=2&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=0M5A6TN3AXP2JHJBWT02&#038;asins=B003L5CVD0" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br />
</center></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/07/wowwee-paperjamz-guitar/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Harecastle and McCormick</title>
		<link>http://www.tonyblews.co.uk/2010/06/harecastle-and-mccormick/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/harecastle-and-mccormick/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 00:10:09 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Canals]]></category>
		<category><![CDATA[TV]]></category>
		<category><![CDATA[Tv Shows I'd Like To See]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=807</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/HardcastleMcCormick.jpg"><img class="aligncenter size-full wp-image-808" title="HardcastleMcCormick" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/HardcastleMcCormick.jpg" alt="" width="400" height="567" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/harecastle-and-mccormick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallifrey 1st XI</title>
		<link>http://www.tonyblews.co.uk/2010/06/gallifrey-1st-xi/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/gallifrey-1st-xi/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 03:44:40 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[TV]]></category>
		<category><![CDATA[b3ta]]></category>
		<category><![CDATA[doctor who]]></category>
		<category><![CDATA[timelords]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=803</guid>
		<description><![CDATA[The squad has been named for Gallifrey&#8217;s quarter final game against the Cybermen. The Doctor(sub), The Doctor, The Doctor, The Doctor(goal), The Doctor, The Doctor,The Doctor, The Doctor(sub), The Doctor, The Doctor, The Doctor, The Doctor, The Doctor.]]></description>
			<content:encoded><![CDATA[<p>The squad has been named for Gallifrey&#8217;s quarter final game against the Cybermen.</p>
<p><img class="aligncenter" src="http://www.tonyblews.co.uk/mypics/u/tony/20100625024233-11doctors.jpg" alt="" width="400" height="308" />The Doctor(sub), The Doctor, The Doctor, The Doctor(goal), The Doctor, The Doctor,The Doctor, The Doctor(sub), The Doctor, The Doctor, The Doctor, The Doctor, The Doctor.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/gallifrey-1st-xi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It disappears down into the bottomless pit&#8230;</title>
		<link>http://www.tonyblews.co.uk/2010/06/it-disappears-down-into-the-bottomless-pit/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/it-disappears-down-into-the-bottomless-pit/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 03:15:57 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Mud]]></category>
		<category><![CDATA[abermud]]></category>
		<category><![CDATA[computer games]]></category>
		<category><![CDATA[mud]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=793</guid>
		<description><![CDATA[It disappears down into the bottomless pit&#8230; Back in 1990, that could have summed up my computing degree, but it was the response you got when dropping items into the sacrificial pit on AberMUD. AberMUD was a Multi User Dungeon written (mainly) by Alan Cox, long before he started doing bits with Linux. If you [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>It disappears down into the bottomless pit&#8230;</p></blockquote>
<p>Back in 1990, that could have summed up my computing degree, but it was the response you got when dropping items into the sacrificial pit on <a href="http://en.wikipedia.org/wiki/Abermud">AberMUD</a>.</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mudscreen.gif"><img class="aligncenter size-full wp-image-797" title="mudscreen" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mudscreen.gif" alt="" width="420" height="209" /></a></p>
<p>AberMUD was a Multi User Dungeon written (mainly) by <a href="http://en.wikipedia.org/wiki/Alan_Cox">Alan Cox</a>, long before he started doing bits with Linux.</p>
<p>If you don&#8217;t remember AberMUD, then you won&#8217;t want to bother reading any further. But if you do recall it, then prepare to rejoice.</p>
<p>I&#8217;ve located a copy of the sources that will compile under Linux, and got it running.</p>
<p>If you want to play it, SSH or <span style="text-decoration: line-through;">TELNET</span> to <strong>bl83.homelinux.net </strong>and login with the username<strong> mud </strong>and password<strong> mud</strong><strong></strong></p>
<p>I&#8217;ve had to take Telnet access off, so now you&#8217;ll need some form of SSH client such as <a href="http://www.putty.org/">Putty</a><strong>, </strong>or use the web-based <a href="http://www.serfish.com/console/">ConsoleFish</a>.<strong><br />
</strong></p>
<p>(bl83 was the name of the machine it ran on briefly at Staffordshire University)</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/it-disappears-down-into-the-bottomless-pit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Turning a ViaMichelin SatNav into a Media Player</title>
		<link>http://www.tonyblews.co.uk/2010/06/turning-a-viamichelin-satnav-into-a-media-player/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/turning-a-viamichelin-satnav-into-a-media-player/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 22:28:54 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Make Stuff]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[media player]]></category>
		<category><![CDATA[satnav]]></category>
		<category><![CDATA[viamichelin]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=769</guid>
		<description><![CDATA[How do you turn a £20 quid satnav, bought from the local Steptoe and Son, into a pocket media player? Well, I&#8217;ll show you. The aforementioned ViaMichelin X-950 runs Windows CE 4.2 Core as its base OS, with the GPS and mapping software running on top of that. What we need is to stop it [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_770" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav1.jpg"><img class="size-full wp-image-770" title="satnav1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav1.jpg" alt="" width="300" height="172" /></a><p class="wp-caption-text">ViaMichelin X-950</p></div>
<p>How do you turn a £20 quid satnav, bought from the local Steptoe and Son, into a pocket media player? Well, I&#8217;ll show you.</p>
<p>The aforementioned ViaMichelin X-950 runs Windows CE 4.2 Core as its base OS, with the GPS and mapping software running on top of that.</p>
<p>What we need is to stop it running the the mapping software automatically, but leave it on there with an option to run it.</p>
<p>To do this you&#8217;ll need the driver disk that can with the unit. ActiveSync alone won&#8217;t suffice here, and anyway it has to be ActiveSync 3.8 as later versions won&#8217;t work correctly (especially with WinXP SP3).</p>
<p>So install the software, fire up ActiveSync and connect the unit with a USB cable.</p>
<p>Next you&#8217;ll need to download the file at <a href="http://www.gpspassion.com/download/custVM_GpsPasSion_buddy.zip">http://www.gpspassion.com/download/custVM_GpsPasSion_buddy.zip</a> and extract it somewhere (to your desktop will do).</p>
<p>Run the <strong>custVM_GpsPasSion_buddy.exe</strong> program and follow the onscreen prompts. Answer Next/Yes/OK until its done.</p>
<p>Now unplug the satnav from the USB and reset it using the button on the back.</p>
<p>Click the OK box on the screen twice to install both software items, and then wait for the thing to reset itself. It should now look like this:</p>
<div id="attachment_775" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav2.jpg"><img class="size-full wp-image-775" title="satnav2" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/satnav2.jpg" alt="" width="300" height="185" /></a><p class="wp-caption-text">Win CE Screen</p></div>
<p>Next you&#8217;ll want to download<a href="http://hautil.free.fr/bm/ScreenRotate.zip"> http://hautil.free.fr/bm/ScreenRotate.zip</a>, and copy the files in it to <strong>\Program Files\ScreenRotate</strong>. Running that program will, surprisingly, rotate the screen through 90 degrees.</p>
<p>Using Windows Explorer, find the file <strong>\Program Files\ScreenRotate\ScreenRotate.exe</strong> and create a Destktop short cut (File -&gt; Send to -&gt; Desktop as Shortcut).</p>
<p>Next you&#8217;ll need to run <strong>\My Documents\CustoVM\RegEdit.exe</strong> and change some settings.</p>
<p>Change the value of <strong>HKEY_LOCAL_MACHINE  \ System \ CurrentControlSet \ Control \ Power \ Timeouts \  BattSuspendTimeOut</strong> to be <strong>2700</strong> (which is 45 minutes).</p>
<p>By now you&#8217;ll be wondering where the WinCE control bar is, and how to input data. Well if you tap the very bottom edge of the screen near the plastic, the control bar will appear, and from here you can enable the on screen keyboard.</p>
<p>So far you should have a machine that boots into Win CE and has a video player (CORE) installed, and the mapping system still available (as an icon on the desktop called <strong>MapSonic</strong>.</p>
<p>You&#8217;ll be wanting an image viewer too, so download the file <a href="http://hp.vector.co.jp/authors/VA003011/gqe/gq151hpce.zip">http://hp.vector.co.jp/authors/VA003011/gqe/gq151hpce.zip</a> and extract it somewhere on your PC. The copy the files from the <strong>ARM</strong> directory to <strong>\Program Files\GQ</strong> and create a desktop shortcut.</p>
<p>And there you have it. Copy some sound files, JPGs and videos onto the thing and away you go.</p>
<p>You want a demo? Oh go on.</p>
<p><center><br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/0dAQ0q4_1oU&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0dAQ0q4_1oU&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object><br />
</center><br />
<br />
(The song &#8220;Happy Birthday Tony&#8221; is (c) Crackerwax 2008)</p>
<p>This info was gleaned from <a href="http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=57135">http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=57135</a> but that is in French, and this isn&#8217;t.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/turning-a-viamichelin-satnav-into-a-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Huawei E5830 Mifi Device</title>
		<link>http://www.tonyblews.co.uk/2010/06/huawei-e5830-mifi-device/</link>
		<comments>http://www.tonyblews.co.uk/2010/06/huawei-e5830-mifi-device/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 03:55:10 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mobile Internet]]></category>
		<category><![CDATA[Phones]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[dongle]]></category>
		<category><![CDATA[huawei]]></category>
		<category><![CDATA[mifi]]></category>
		<category><![CDATA[three]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=748</guid>
		<description><![CDATA[Another month brings another Gadget purchase. This time its the Huawei E5830 Mifi thingummy, a combined 3g mobile broadband modem and portable wifi hotspot. Once again it is on the 3 network. The reasons for buy it are twofold. Firstly the internal GPRS modem in my Ubisurfer has gone down, rendering it useless without another [...]]]></description>
			<content:encoded><![CDATA[<p>Another month brings another Gadget purchase. This time its the Huawei E5830 Mifi thingummy, a combined 3g mobile broadband modem and portable wifi hotspot. Once again it is on the 3 network.</p>
<div id="attachment_757" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifisize.jpg"><img class="size-full wp-image-757" title="mifisize" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifisize.jpg" alt="" width="300" height="265" /></a><p class="wp-caption-text">A rough indication of size</p></div>
<p>The reasons for buy it are twofold. Firstly the internal GPRS modem in my <a href="http://www.tonyblews.co.uk/2010/01/datawind-ubisurfer-first-impressions/">Ubisurfer</a> has gone down, rendering it useless without another means of connectivity (at least until Datawind&#8217;s tech support sort me out a replacement or fix); and secondly, my trust <a href="http://www.tonyblews.co.uk/2008/06/3-mobile-huawei-e220-usb-modem/">Huawei E220 USB broadband modem</a> is being pressed into service as a permanet net connection for my Linux box running a game server (until Virgin can final get around to installing proper broadband for me).</p>
<p>That&#8217;s enough of me justifying the purchase, let&#8217;s have a look at the thing.</p>
<div id="attachment_751" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifi.jpg"><img class="size-full wp-image-751" title="mifi" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/mifi.jpg" alt="Huawei Mifi thing" width="300" height="203" /></a><p class="wp-caption-text">There it is, all lit up like Blackpool</p></div>
<p>Ooh, shiny. So, pop in the sim card and battery, plug it in to the charger and wait for twelve hours. Thumb the power button for two seconds and on come the five lights.</p>
<p>Ah, you&#8217;re thinking,<a href="http://en.wikipedia.org/wiki/Chain_of_Command_%28TNG_episode%29"> there are four lights</a>! Well, the fifth light (in the middle, not shown) only comes on when you first power up the device or if you <a href="http://en.wikipedia.org/wiki/Highlander_%28film%29">feel an irresistable pull to a a foreign land</a> (roaming).</p>
<p>If you&#8217;re really insteresting in what the four status lights mean, I&#8217;m sure you can find out elsewhere.</p>
<p>Thumb the wifi button for two seconds, then the Saturn button (only my name for it, as it has a little picture of a ringed planet on it) for two seconds and if all is well you&#8217;ll be able to connect to the internet through the thing.</p>
<p>Assuming all it well, that is. Sometimes it isn&#8217;t. Even though i&#8217;m a bit of a 3 fanboy (nine phones and two modems over the years), I still have issues with them. Firstly 3 is a crap name for a company, Whampoa would have sounded cooler; and secondly the coverage where I currently live is ropey at times.</p>
<p style="text-align: left;">
<div id="attachment_755" class="wp-caption aligncenter" style="width: 168px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/3gcoverage.jpg"><img class="size-full wp-image-755 " title="3gcoverage" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/06/3gcoverage.jpg" alt="" width="158" height="98" /></a><p class="wp-caption-text">Coverage map of ST17 XXX</p></div>
<p>The darker shade represents indoor/outdoor coverage, whilst the lighter shade shows outdoor coverage only. The pointer shows where I live. Not shown is a 3g modem <a href="http://en.wikipedia.org/wiki/Gaffa_tape">gaffa taped</a> to my window in order to get a good signal.</p>
<p style="text-align: left;">Besides the device itself, the box contains a short USB lead and a charger. The charger is, obviously, for charging the thing, and the USB cable is for three things.</p>
<ol>
<li>using it as a storage device if a microSD card (not supplied) is inserted into it</li>
<li>using it as a USB modem</li>
<li>using the configuration program.</li>
</ol>
<p>The configuation program (which installs straight from the device itself &#8211; nice) allows you to do all the usual wifi router based things: DHCP config, port forwarding, changing the SSID to something rude, changing the password to something you&#8217;ll actually remember.</p>
<p>Connecting to the thing is easy with any most wifi devices. So far I&#8217;ve managed to get two laptops (WinXP and Linux), the Ubisurfer and a borrowed iPod Touch running concurrently. I know the iPhone works ok (slightly faster that the phone&#8217;s built in 3g modem), and I&#8217;m sure the iPad will work. (Does anyone want to lend me one to test?)</p>
<p>Sadly, I could not get a laptop running <a href="http://chromeos.hexxeh.net/">Hexxeh&#8217;s Flow build of Chromium OS</a>. But I put this down to Flow failing to recognised the Dell&#8217;s WiFi hardware.</p>
<p>Its a great little device. Go and buy one now. <a href="http://threestore.three.co.uk/payg/dealsummary.aspx?offercode=DSLPP499">£49 from Three on their PAYG plan</a>.</p>
<p>So, all that remains for me to do now are the customary speed test, using <a href="http://www.speedtest.net/">www.speedtest.net</a>, as ever.</p>
<p>Firstly using the old E220 USB Modem:</p>
<p style="text-align: left;">
<div class="wp-caption aligncenter" style="width: 310px"><img title="E220 USB Results" src="http://www.speedtest.net/result/838972425.png" alt="" width="300" height="135" /><p class="wp-caption-text">E220 USB Results</p></div>
<p>And now using the E5830 Mifi:</p>
<p style="text-align: left;">
<div class="wp-caption aligncenter" style="width: 310px"><img title="E3850 Mifi Results" src="http://www.speedtest.net/result/838975839.png" alt="" width="300" height="135" /><p class="wp-caption-text">E3850 Mifi Results</p></div>
<p style="text-align: left;">I clearly have a winner here, but your mileage may vary.</p>
<p style="text-align: left;">Finally, here are the frankly deplorable results taken recently from my sister&#8217;s Orange Home Broadband link recently:</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 310px"><img title="Orange are shite" src="http://www.speedtest.net/result/823516237.png" alt="" width="300" height="135" /><p class="wp-caption-text">Orange are shite</p></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/06/huawei-e5830-mifi-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Patriotic Is Your Arse?</title>
		<link>http://www.tonyblews.co.uk/2010/05/how-patriotic-is-your-arse/</link>
		<comments>http://www.tonyblews.co.uk/2010/05/how-patriotic-is-your-arse/#comments</comments>
		<pubDate>Sun, 30 May 2010 06:53:39 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Random Thoughts]]></category>
		<category><![CDATA[england]]></category>
		<category><![CDATA[shittery]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=737</guid>
		<description><![CDATA[Want to wipe your soiled rectum on an England flag? How about this: Yes, you can now buy a roll of St. George flags for anus wiping. Who the shitting Science* thought this would be a good idea? Anyway, get them from play.com, if you really want to. (The play.com domain name is registered from [...]]]></description>
			<content:encoded><![CDATA[<p>Want to wipe your soiled rectum on an England flag? How about this:</p>
<p><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/2egt5ly.jpg"><img class="aligncenter size-medium wp-image-738" title="2egt5ly" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/2egt5ly-300x225.jpg" alt="" width="300" height="225" /></a>Yes, you can now buy a roll of St. George flags for anus wiping.</p>
<p>Who the shitting Science* thought this would be a good idea?</p>
<p>Anyway, get them from <a href="http://www.play.com/Gadgets/Gadgets/4-/14445260/On-A-Roll-England/Product.html">play.com</a>, if you really want to.</p>
<p>(The play.com domain name is registered from the island of Jersey. The Admin contact is UK based, but the Tech contact is in France.)</p>
<p>*oh go find the South Park episode.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/05/how-patriotic-is-your-arse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dalek Autopsy</title>
		<link>http://www.tonyblews.co.uk/2010/05/dalek-autopsy/</link>
		<comments>http://www.tonyblews.co.uk/2010/05/dalek-autopsy/#comments</comments>
		<pubDate>Thu, 27 May 2010 03:47:41 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Dalek]]></category>
		<category><![CDATA[Make Stuff]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[Toys]]></category>
		<category><![CDATA[autopsy]]></category>
		<category><![CDATA[dalek]]></category>
		<category><![CDATA[doctor who]]></category>

		<guid isPermaLink="false">http://www.tonyblews.co.uk/?p=718</guid>
		<description><![CDATA[Daleks are great. I&#8217;ve wanted one for years. The idea of having a Dalek to order about appeals to me. I could have it make tea for me and then exterminate my enemies/co-workers. Daleks instill fear in the weak and feeble. For example: My sister recently acquired a defunct radio control Dalek on a car [...]]]></description>
			<content:encoded><![CDATA[<p>Daleks are great. I&#8217;ve wanted one for years. The idea of having a Dalek to order about appeals to me. I could have it make tea for me and then exterminate my enemies/co-workers.</p>
<p>Daleks instill fear in the weak and feeble. For example:</p>
<div id="attachment_719" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/giant-dalek.jpg"><img class="size-full wp-image-719" title="giant-dalek" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/giant-dalek.jpg" alt="" width="400" height="300" /></a><p class="wp-caption-text">Giant Dalek intimidates Puny Lego Doctor</p></div>
<p>My sister recently acquired a defunct radio control Dalek on a car boot sale and figured that I might be able to find something to do with it.</p>
<p>But first we need to see exactly what we&#8217;re dealing with.</p>
<div id="attachment_721" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy1.jpg"><img class="size-full wp-image-721" title="autopsy1" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy1.jpg" alt="" width="400" height="300" /></a><p class="wp-caption-text">Dalek (minus eyestalk)</p></div>
<p>What we appear to have is a <a href="http://www.amazon.co.uk/Doctor-Who-Radio-Control-Black/dp/B0009P5YYS"><strong>Doctor Who &#8211; 12&#8243; Radio  Control Black Dalek</strong></a>, missing its eyestalk and the relevant control unit.</p>
<p>Someone once said that once you break something to see how it works, you have left the path of wisdom. It might have been Merlin, or possibly Mr. Miyagi. In this case, the damn thing is broken and i left the path of wisdom years ago anyway.</p>
<p>So, off with the bottom!</p>
<div id="attachment_723" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy2.jpg"><img class="size-full wp-image-723" title="autopsy2" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy2.jpg" alt="" width="400" height="300" /></a><p class="wp-caption-text">What lieth inside</p></div>
<p>Here we see three things:</p>
<ul>
<li>the base unit &#8211; which contains the RC receiver, speaker, battery unit and motors</li>
<li>the superstructure &#8211; which is what makes it look like a Dalek</li>
<li>some turkey mince &#8211; which would have been my supper, but was so far out of date that it was in danger of crawling away by itself.</li>
</ul>
<p>Stripping off the burnt out RC receiver (and letting the mince run free) gives us a closer look at the base unit:</p>
<div id="attachment_727" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy3.jpg"><img class="size-full wp-image-727" title="autopsy3" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy3.jpg" alt="" width="400" height="300" /></a><p class="wp-caption-text">Warning: exposed circuitry</p></div>
<p>An even closer look shows us the nubbin that connects to the drive shaft that rotates the head unit:</p>
<div id="attachment_728" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy4.jpg"><img class="size-full wp-image-728" title="autopsy4" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy4.jpg" alt="Nubbin highlighted with red ring" width="400" height="300" /></a><p class="wp-caption-text">Nubbin highlighted with red ring</p></div>
<p style="text-align: left;">Peering up the skirt of the Dalek shows us where the shaft connects to the nubbin, along with some wires that connect to the circuitry in the head:</p>
<p style="text-align: left;">
<div id="attachment_731" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy5.jpg"><img class="size-full wp-image-731" title="autopsy5" src="http://www.tonyblews.co.uk/wordpress/wp-content/uploads/2010/05/autopsy5.jpg" alt="" width="300" height="400" /></a><p class="wp-caption-text">Shaft, with another red ring around it</p></div>
<p style="text-align: left;">Just concentrating on the bottom we have:</p>
<ul>
<li>a base unit with working motors that run off 6v</li>
<li>some duff circuitry which will be ignored</li>
<li>a piezo speaker which might come in handy later</li>
<li>nothing for my supper</li>
<li>a blog post which, having re-read the text, will probably rank quite highly in the results of porn searches.</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.tonyblews.co.uk/wordpress/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.tonyblews.co.uk/2010/05/dalek-autopsy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
