<?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>killswtch.net &#187; Home Automation</title>
	<atom:link href="http://www.killswtch.net/category/home-automation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.killswtch.net</link>
	<description>A geek's thoughts on various stuff</description>
	<lastBuildDate>Mon, 17 May 2010 20:58:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Power monitoring with CurrentCost</title>
		<link>http://www.killswtch.net/2009/01/03/power-monitoring-with-currentcost/</link>
		<comments>http://www.killswtch.net/2009/01/03/power-monitoring-with-currentcost/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 14:45:20 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Source Code]]></category>
		<category><![CDATA[currentcost]]></category>
		<category><![CDATA[electricity]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=341</guid>
		<description><![CDATA[
The CurrentCost power monitor has become very popular amongst amateur home automators and those technically-savvy who want to keep an eye on how much electricity they are using (and ultimately how much they are going to have to pay in bills). A couple of months ago I purchased the CurrentCost device and a USB cable [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-346" title="CurrentCost monitor" src="http://www.killswtch.net/wp-content/uploads/img_3607.jpg" alt="CurrentCost monitor" width="420" height="315" /></p>
<p>The <a href="http://www.currentcost.co.uk/" onclick="javascript:urchinTracker ('/outbound/article/www.currentcost.co.uk');">CurrentCost power monitor</a> has become very popular amongst amateur home automators and those technically-savvy who want to keep an eye on how much electricity they are using (and ultimately how much they are going to have to pay in bills). A couple of months ago I purchased the CurrentCost device and a USB cable to connect it to a computer <a href="http://stores.ebay.co.uk/Current-Cost-Ltd" onclick="javascript:urchinTracker ('/outbound/article/stores.ebay.co.uk');">from eBay</a>. Having just seen their eBay store, it looks like they&#8217;ve got a fantastic new model on the way, but this article is about the older version.</p>
<p><span id="more-341"></span></p>
<p>By itself the device works very well, providing an at-a-glance view of current power use and a history over several periods of time. There is a simple bar chart showing the relative amounts of power used in the previous day, split into day time, evening and night. However if you want a clearer understanding of how power use changes day-to-day or even over a decade, connecting the device to a computer will provide the ability to store every reading in a database and/or produce live graphs of usage.</p>
<p><a href="http://andypiper.wordpress.com/2008/04/27/current-cost/" onclick="javascript:urchinTracker ('/outbound/article/andypiper.wordpress.com');">Several</a> <a href="http://gibbalog.blogspot.com/2008/07/graphing-current-cost.html" onclick="javascript:urchinTracker ('/outbound/article/gibbalog.blogspot.com');">people</a> <a href="http://rooreynolds.com/2008/05/09/current-cost-charting-fun/" onclick="javascript:urchinTracker ('/outbound/article/rooreynolds.com');">have</a> <a href="http://knolleary.net/2008/05/05/power-graphing/" onclick="javascript:urchinTracker ('/outbound/article/knolleary.net');">written</a> articles on how to do the logging, each using a slightly different method (and language) to do so. Most of them are for linux though, but any programmer should be able to port the ideas across to a different platform such as Windows or Mac OS. For my implementation, I followed <a href="http://www.jibble.org/currentcost/" onclick="javascript:urchinTracker ('/outbound/article/www.jibble.org');">this guide on jibble.org</a>.</p>
<p>This is what my perl script turned out like:</p>
<pre>#!/usr/bin/perl -w
# Reads data from a Current Cost device via serial port.

use strict;
use Device::SerialPort qw( <img src='http://www.killswtch.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ARAM :STAT 0.07 );

my $PORT = "/dev/ttyUSB1";
my $ob = Device::SerialPort-&gt;new($PORT);

$ob-&gt;baudrate(9600);
$ob-&gt;write_settings;

open(SERIAL, "+&gt;$PORT");
while (my $line = &lt;SERIAL&gt;) {
    if ($line =~ m!&lt;ch1&gt;&lt;watts&gt;0*(\d+)&lt;/watts&gt;&lt;/ch1&gt;.*&lt;tmpr&gt;([\d.]+)&lt;/tmpr&gt;!) {
        my $watts = $1;
        my $temp = $2;
        print `/usr/bin/rrdtool update /var/scripts/currentcost/powertemp.rrd N:$watts:$temp`
    }
}</pre>
<p>Note that because I&#8217;m connecting via a USB port, the serial port name is different. The baud is also 9600 rather than 2800. I have set this script to run at startup (detatched from the console) so that it is always running in the background.</p>
<p>I have also produced another simple script, which is run every minute as a cron job.  The script generates the graphs from the data stored in the RRD file, and uploads them to my web server via SSH.</p>
<pre>#!/bin/sh

rrdtool graph /var/scripts/currentcost/power-10min.png --start end-10m --width 323 --end now --slope-mode --no-legend --vertical-label Watts --lower-limit 0 --alt-autoscale-max DEF:Power=/var/scripts/currentcost/powertemp.rrd:Power:AVERAGE LINE1:Power#0000FF:"Average" &gt; /dev/null
rrdtool graph /var/scripts/currentcost/power-60min.png --start end-60m --width 323 --end now --slope-mode --no-legend --vertical-label Watts --lower-limit 0 --alt-autoscale-max DEF:Power=/var/scripts/currentcost/powertemp.rrd:Power:AVERAGE LINE1:Power#0000FF:"Average" &gt; /dev/null
rrdtool graph /var/scripts/currentcost/power-day.png --start end-24h --width 323 --end now --slope-mode --no-legend --vertical-label Watts --lower-limit 0 --alt-autoscale-max DEF:Power=/var/scripts/currentcost/powertemp.rrd:Power:AVERAGE LINE1:Power#0000FF:"Average" &gt; /dev/null
rrdtool graph /var/scripts/currentcost/power-week.png --start end-1weeks --width 323 --end now --slope-mode --no-legend --vertical-label Watts --lower-limit 0 --alt-autoscale-max DEF:Power=/var/scripts/currentcost/powertemp.rrd:Power:AVERAGE LINE1:Power#0000FF:"Average" &gt; /dev/null
rrdtool graph /var/scripts/currentcost/power-month.png --start end-1months --width 323 --end now --slope-mode --no-legend --vertical-label Watts --lower-limit 0 --alt-autoscale-max DEF:Power=/var/scripts/currentcost/powertemp.rrd:Power:AVERAGE LINE1:Power#0000FF:"Average" &gt; /dev/null
rrdtool graph /var/scripts/currentcost/power-year.png --start end-1years --width 323 --end now --slope-mode --no-legend --vertical-label Watts --lower-limit 0 --alt-autoscale-max DEF:Power=/var/scripts/currentcost/powertemp.rrd:Power:AVERAGE LINE1:Power#0000FF:"Average" &gt; /dev/null

#Copy locally
cp /var/scripts/currentcost/*.png /var/www/currentcost/

#Upload to mars
/usr/bin/scp /var/scripts/currentcost/*.png root@192.168.2.3:/var/www/vhosts/currentcost.elemental.killswtch.net</pre>
<p>You can see the result on the <a href="/power/">Power</a> page of this site. The graphs at the moment are fairly basic. The Jibble article includes some extra data in the graphs, which I will probably add at some point. For the moment though it does the job very well.</p>
<p><img class="aligncenter size-full wp-image-347" title="img_3599" src="http://www.killswtch.net/wp-content/uploads/img_3599.jpg" alt="img_3599" width="420" height="315" /></p>
<p>The CC device is located downstairs, in the living room. Thanks to the serial output connector being an RJ45 socket, it was very easy to plug it into the exising CAT5 network (which I&#8217;m very glad I did) and run the signal to the cabinet in my room where it is then broken out through the RJ45 patch panel, through the RS232/USB cable and into the fileserver <em>boron</em>, which hosts the scripts.</p>
<p><img class="aligncenter size-full wp-image-348" title="USB cable" src="http://www.killswtch.net/wp-content/uploads/img_3601.jpg" alt="USB cable" width="420" height="315" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2009/01/03/power-monitoring-with-currentcost/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Source code for the VAMS-0808 serial interface</title>
		<link>http://www.killswtch.net/2008/08/23/source-code-for-the-vams-0808-serial-interface/</link>
		<comments>http://www.killswtch.net/2008/08/23/source-code-for-the-vams-0808-serial-interface/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 07:13:24 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Source Code]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=312</guid>
		<description><![CDATA[As promised, here&#8217;s the source code for my VAMS-0808 interface. It&#8217;s in C#, with C# projects included, and can be opened in Visual C# Express or full Visual Studio 2005 or greater. There are two test projects included &#8211; one which just writes status changes out to the console, and a WinForms project (which runs [...]]]></description>
			<content:encoded><![CDATA[<p>As promised, here&#8217;s the <a href="http://www.killswtch.net/files/HALibs.VAMS0808.zip" >source code for my VAMS-0808 interface</a>. It&#8217;s in C#, with C# projects included, and can be opened in Visual C# Express or full Visual Studio 2005 or greater. There are two test projects included &#8211; one which just writes status changes out to the console, and a WinForms project (which runs in mono) for full interaction.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/08/23/source-code-for-the-vams-0808-serial-interface/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Whole House Audio system: version 1 is complete</title>
		<link>http://www.killswtch.net/2008/07/14/whole-house-audio-system-version-1-is-complete/</link>
		<comments>http://www.killswtch.net/2008/07/14/whole-house-audio-system-version-1-is-complete/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 18:11:52 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=303</guid>
		<description><![CDATA[
Over a year after it began, the whole-house-audio project is complete. 4 rooms around the house can now be filled with the sound of any of (currently) 4 audio devices thanks to a mixture of hardware and software.
The project had a slightly rocky start, with a prototype not functioning at all and partly destroyed amplifier [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.killswtch.net/wp-content/uploads/img_2717.jpg" ><img class="alignnone size-medium wp-image-304" title="Audio sources" src="http://www.killswtch.net/wp-content/uploads/img_2717-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>Over a year after it began, the whole-house-audio project is complete. 4 rooms around the house can now be filled with the sound of any of (currently) 4 audio devices thanks to a mixture of hardware and software.</p>
<p><span id="more-303"></span>The project had a slightly rocky start, with a <a href="http://www.killswtch.net/2007/11/27/audio-distribution-system-phase-1-the-prototype/" >prototype</a> not functioning at all and <a href="http://www.killswtch.net/2007/12/02/back-to-the-drawing-board/" >partly destroyed amplifier</a> (which was thankfully <a href="http://www.killswtch.net/2007/12/08/resurrecting-a-dead-amplifier/" >fixable</a> by replacing a <a href="http://www.killswtch.net/2008/01/15/resurrecting-a-dead-amplifier-the-continuation/" >couple of components</a>). A <a href="http://www.killswtch.net/2007/12/06/software-based-matrix-switcher/" >software alternative</a> was considered at one point, to avoid too much expensive hardware. The hardware solution proved to be less complex and more likely to work.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_23291.jpg" ><img class="alignnone size-medium wp-image-305" title="Dining room speakers" src="http://www.killswtch.net/wp-content/uploads/img_23291-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>The living room, <a href="http://www.killswtch.net/2008/06/18/dining-room-speakers/" >dining room</a>, <a href="http://www.killswtch.net/2008/06/15/kitchen-speakers/" >kitchen</a> and master bedroom are host to a pair of speakers each, connected to matching <a href="http://www.killswtch.net/2008/06/15/last-of-the-amplifiers/" >240W rack-mounted amplifiers</a> housed in my <a href="http://www.killswtch.net/2007/11/11/my-diy-19-rack/" >home-made full-height 19&#8243; rack cabinet</a>. The cables that carry the audio signals to the speakers were <a href="http://www.killswtch.net/2007/11/28/wiring-the-house/" >installed</a> along with 24 runs of CAT5 before moving into the house.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/dscf0050.jpg" ><img class="alignnone size-medium wp-image-310" title="Cabling" src="http://www.killswtch.net/wp-content/uploads/dscf0050-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_22201.jpg" ><img class="alignnone size-medium wp-image-311" title="Amplifiers" src="http://www.killswtch.net/wp-content/uploads/img_22201-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>The audio is routed to the amplifiers via an 8&#215;8 <a href="http://www.killswtch.net/2008/02/17/the-vams-0808-matrix-switcher-and-determining-its-protocol/" >VAMS-0808 AV matrix switcher</a>, which allows the 8 outputs to take their inputs from any of the 8 available sources. Only 4 of each are currently in use, so there&#8217;s plenty of room for expansion.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_1737.jpg" ><img class="alignnone size-medium wp-image-308" title="Matrix switcher status display" src="http://www.killswtch.net/wp-content/uploads/img_1737-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_1738.jpg" ><img class="alignnone size-medium wp-image-309" title="Matrix switcher control panel" src="http://www.killswtch.net/wp-content/uploads/img_1738-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>4 audio sources are connected via simple <a href="http://www.killswtch.net/2008/05/07/successful-test-of-audio-over-cat5/" >custom-altered CAT5 cables</a>, which simply transmit line-level signals over the <a href="http://www.killswtch.net/2008/05/05/completing-the-data-wiring/" >existing twisted pair infrastructure</a> installed in the house. These sources are currently the DAB radio in the kitchen, the TV in the living room, the computer in the dining room (for playing CDs) and a second DAB radio in the master bedroom.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2699.jpg" ><img class="alignnone size-medium wp-image-306" title="Green cables for audio" src="http://www.killswtch.net/wp-content/uploads/img_2699-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2369.jpg" ><img class="alignnone size-medium wp-image-307" title="Stereo jack to RJ45" src="http://www.killswtch.net/wp-content/uploads/img_2369-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>I&#8217;ve written the software to control it all using .Net (C# of course), running on <a href="http://www.mono-project.com/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.mono-project.com');">mono</a> on linux. There are four components to this:</p>
<ol>
<li>To control the matrix switcher, I have written a library which communicates with the <a href="http://www.killswtch.net/2008/03/15/the-vams-0808-matrix-switcher-and-determining-its-protocol-part-2/" >VAMS-0808 via an RS232 serial connection</a>. The software can perform any of the operations that can be performed via the front panel of the device, apart from switching power on and off.</li>
<li>The amplifiers are connected to an APC AP9212 MasterSwitch Power Distribution Unit which was bought with this project in mind. Controlling this is slightly less straightforward and not quite as elegant. The library that I&#8217;ve written for this communicates through the telnet interface of the MasterSwitch to turn devices on and off.</li>
<li>Combining these two libraries is a simple web server which presents an equally simple XML-based web service. The service allows room inputs to be changed and switches the amplifiers on and off as necessary. This runs on a low-power disk-less computer running <a href="http://www.ubuntu.com/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.ubuntu.com');">Ubuntu</a>, hidden within the rack cabinet.</li>
<li>A touchscreen web interface acts as a front-end to the entire system. The simple menu system uses iUi for a clean touchscreen-friendly design. As with the web server this runs on a <a href="http://www.killswtch.net/2008/07/10/sff-pcs/" >low-power machine</a>, although this one has a small hard disk and runs Windows due to technical issues with the touchscreen.</li>
</ol>
<p>There is currently just the one controller front-end, located in the dining room. To listen to the kitchen radio, for example, all that is necessary is to select the &#8216;Kitchen DAB Radio&#8217; option from the main menu, then select which of the 4 rooms to play it through &#8211; or all of them if you are going to be wondering around most of the house.</p>
<h2>Future extensions</h2>
<p>Thanks to building the web interface with <a href="http://code.google.com/p/iui/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/code.google.com');">iUi</a>, the system is compatible with the <a href="http://www.killswtch.net/2007/12/09/ipod-remote-control-interface-mockups/" >iPod Touch and iPhone</a>, so they can instantly act as <a href="http://www.killswtch.net/2007/12/06/using-an-ipod-as-a-remote/" >frontends</a> for audio control. A second fixed controller may be added in the master bedroom in time, if there&#8217;s enough money available. Each front-end costs about Â£200 in hardware, depending on what bargains can be found on eBay.</p>
<p>The matrix switcher supports both audio and video. Only the audio channels are used at the moment, so there is the very real possibility of using the remaining 4 output zones to connect to TVs around the house and adding some AV sources. This way it&#8217;s instantly converted into a whole-house-AV system. The video signals can be carried over the twisted pair CAT5 cables like the audio, but will require a little more hardware to preserve quality. This <a href="http://www.kat5.tv/products.html" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.kat5.tv');">hardware</a> is <a href="http://www.keene.co.uk/electronics/multi.php?mycode=C5QDA" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.keene.co.uk');">relatively expensive</a>, although savings can be made by building the equivalents by hand. Following the tradition of this project, that&#8217;s probably what I&#8217;ll do. I have done it before while I was at university and it works beautifully.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/07/14/whole-house-audio-system-version-1-is-complete/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Low voltage power supply, ventilation &amp; lighting</title>
		<link>http://www.killswtch.net/2008/07/12/low-voltage-supply-ventilation-lighting/</link>
		<comments>http://www.killswtch.net/2008/07/12/low-voltage-supply-ventilation-lighting/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 21:02:56 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[Rackmodding]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=266</guid>
		<description><![CDATA[
One thing that has been lacking since the first build of the rack is ventilation. With both sets of doors closed, the inside can get quite warm, especially when iron is turned on. Not any more though, having just completed the installation of 2 active ventilation zones, lighting and a low voltage power supply system [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.killswtch.net/wp-content/uploads/img_2662.jpg" ><img class="alignnone size-medium wp-image-267" title="Power button" src="http://www.killswtch.net/wp-content/uploads/img_2662-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>One thing that has been lacking since the first build of the rack is ventilation. With both sets of doors closed, the inside can get quite warm, especially when <em>iron</em> is turned on. Not any more though, having just completed the installation of 2 active ventilation zones, lighting and a low voltage power supply system complete with rack-mount control panel.</p>
<p><span id="more-266"></span><a href="http://www.killswtch.net/wp-content/uploads/img_2101.jpg" ><img class="alignnone size-medium wp-image-268" title="Before cutting" src="http://www.killswtch.net/wp-content/uploads/img_2101-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>Air is drawn in at the bottom of the rack by 5 quiet 80mm 12v fans, positioned behind a perforated 2U panel inside the front panel of the base. The air is blown vertically into the cabinet from the bottom through a similar 1U perforated panel. Although the draught is barely noticeable, the difference it makes to temperatures at the front of the rack is significant.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2107.jpg" ><img class="alignnone size-medium wp-image-269" title="Fan tower" src="http://www.killswtch.net/wp-content/uploads/img_2107-420x560.jpg" alt="" width="420" height="560" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2113.jpg" ><img class="alignnone size-medium wp-image-270" title="Fans in place" src="http://www.killswtch.net/wp-content/uploads/img_2113-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2430.jpg" ><img class="alignnone size-medium wp-image-271" title="img_2430" src="http://www.killswtch.net/wp-content/uploads/img_2430-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>With this &#8216;air curtain&#8217; alone though, the back of the rack still gets very warm. To solve this I&#8217;ve installed a relatively huge 200mm &#8216;Big Boy&#8217; fan into the newly-added top of the cabinet. This sucks out the warm air and dispenses it into the containing room. Together these fans keep the entire cabinet cool.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2477.jpg" ><img class="alignnone size-medium wp-image-272" title="Big Boy" src="http://www.killswtch.net/wp-content/uploads/img_2477-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2608.jpg" ><img class="alignnone size-medium wp-image-273" title="Hole for the Big Boy" src="http://www.killswtch.net/wp-content/uploads/img_2608-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2633.jpg" ><img class="alignnone size-medium wp-image-274" title="Big Boy in position" src="http://www.killswtch.net/wp-content/uploads/img_2633-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>To power the fans I&#8217;ve used an old ATX power supply. In order to make replacement easy when the supply fails, no modifications have been made to it. Instead, I bought a 20-pin molex connector so that I could just plug the ATX connector straight into my system.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2406.jpg" ><img class="alignnone size-medium wp-image-275" title="PSU" src="http://www.killswtch.net/wp-content/uploads/img_2406-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2411.jpg" ><img class="alignnone size-medium wp-image-276" title="20 pin molex" src="http://www.killswtch.net/wp-content/uploads/img_2411-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2428.jpg" ><img class="alignnone size-medium wp-image-277" title="4p in molex butchered" src="http://www.killswtch.net/wp-content/uploads/img_2428-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2496.jpg" ><img class="alignnone size-medium wp-image-278" title="Panels before cutting" src="http://www.killswtch.net/wp-content/uploads/img_2496-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2497.jpg" ><img class="alignnone size-medium wp-image-279" title="ATX template" src="http://www.killswtch.net/wp-content/uploads/img_2497-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2498.jpg" ><img class="alignnone size-medium wp-image-280" title="Cutout marked" src="http://www.killswtch.net/wp-content/uploads/img_2498-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2516.jpg" ><img class="alignnone size-medium wp-image-281" title="Cutting out the PSU hole" src="http://www.killswtch.net/wp-content/uploads/img_2516-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2681.jpg" ><img class="alignnone size-medium wp-image-282" title="PSU mounted" src="http://www.killswtch.net/wp-content/uploads/img_2681-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>The PSU is connected to 4 switches that are mounted on a 1U blanking panel in the front of the rack. I wanted some fancy switches, so I splashed out on some nice chromed illuminated ones from China (via eBay). There&#8217;s one green DPDT switch, which switches the PSU on and off, and three blue SPDT switches which control power to the two fan systems and some lighting.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2086.jpg" ><img class="alignnone size-medium wp-image-283" title="Switches on arrival" src="http://www.killswtch.net/wp-content/uploads/img_2086-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2089.jpg" ><img class="alignnone size-medium wp-image-284" title="Green switch" src="http://www.killswtch.net/wp-content/uploads/img_2089-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2441.jpg" ><img class="alignnone size-medium wp-image-286" title="Green switch test" src="http://www.killswtch.net/wp-content/uploads/img_2441-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2501.jpg" ><img class="alignnone size-medium wp-image-287" title="Bench drill" src="http://www.killswtch.net/wp-content/uploads/img_2501-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2504.jpg" ><img class="alignnone size-medium wp-image-288" title="Drilling holes" src="http://www.killswtch.net/wp-content/uploads/img_2504-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2511.jpg" ><img class="alignnone size-medium wp-image-290" title="First switch in position" src="http://www.killswtch.net/wp-content/uploads/img_2511-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2526.jpg" ><img class="alignnone size-medium wp-image-291" title="Wiring up the switches" src="http://www.killswtch.net/wp-content/uploads/img_2526-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2534.jpg" ><img class="alignnone size-medium wp-image-293" title="Keeping the wires in check" src="http://www.killswtch.net/wp-content/uploads/img_2534-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2542.jpg" ><img class="alignnone size-medium wp-image-294" title="Switches wired up" src="http://www.killswtch.net/wp-content/uploads/img_2542-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2556.jpg" ><img class="alignnone size-medium wp-image-295" title="Panel mounted in rack" src="http://www.killswtch.net/wp-content/uploads/img_2556-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2647.jpg" ><img class="alignnone size-medium wp-image-296" title="Power switch" src="http://www.killswtch.net/wp-content/uploads/img_2647-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2649.jpg" ><img class="alignnone size-medium wp-image-297" title="Device switches" src="http://www.killswtch.net/wp-content/uploads/img_2649-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>The lighting illuminates the front of the rack, and is there purely for decorative purposes. I had considered using cold-cathode tubes, but the seller that I got the switches from also sells strips of LEDs encased in a flexible transparent rubber-like substance. They are sold in various lengths, but I thought 96cm would be OK for what I wanted (at the time I bought it to experiment with, thinking that it could illuminate the wall behind my desk). This strip is now mounted on the left-hand front door.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2433.jpg" ><img class="alignnone size-medium wp-image-298" title="Testing the LEDs" src="http://www.killswtch.net/wp-content/uploads/img_2433-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2435.jpg" ><img class="alignnone size-medium wp-image-299" title="LEDs up close" src="http://www.killswtch.net/wp-content/uploads/img_2435-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2634.jpg" ><img class="alignnone size-medium wp-image-300" title="Attaching to the door" src="http://www.killswtch.net/wp-content/uploads/img_2634-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2644.jpg" ><img class="alignnone size-medium wp-image-301" title="Reflecting" src="http://www.killswtch.net/wp-content/uploads/img_2644-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2674.jpg" ><img class="alignnone size-medium wp-image-302" title="Blue!!" src="http://www.killswtch.net/wp-content/uploads/img_2674-420x315.jpg" alt="" width="420" height="315" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/07/12/low-voltage-supply-ventilation-lighting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SFF PCs</title>
		<link>http://www.killswtch.net/2008/07/10/sff-pcs/</link>
		<comments>http://www.killswtch.net/2008/07/10/sff-pcs/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 19:06:06 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=258</guid>
		<description><![CDATA[
The audio system that I&#8217;m building requires 2 low-power computers: 1 for the touchscreen controller (not using an iPod Touch for the moment) and 1 to act as a webserver and serial-console server.
Once again eBay has come to the rescue, and by searching for &#8216;geode&#8217; &#8211; a low-power processor for Thin Clients &#38; Small Form [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.killswtch.net/wp-content/uploads/img_2380.jpg" ><img class="alignnone size-medium wp-image-259" title="SFF PCs" src="http://www.killswtch.net/wp-content/uploads/img_2380-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>The audio system that I&#8217;m building requires 2 low-power computers: 1 for the touchscreen controller (not using an iPod Touch for the moment) and 1 to act as a webserver and serial-console server.</p>
<p>Once again eBay has come to the rescue, and by searching for &#8216;geode&#8217; &#8211; a low-power processor for Thin Clients &amp; Small Form Factor (SFF) PCs &#8211; I found the 2 machines that I needed. These are the specs:</p>
<p><strong>magnesium </strong>(the black one)<strong><br />
</strong></p>
<ul>
<li>800 MHz Geode</li>
<li>256 MB RAM</li>
<li>6 GB CF drive</li>
<li>Onboard graphics, audio, serial, parallel, USB &amp; 10/100 ethernet</li>
</ul>
<p>£70 + P&amp;P</p>
<p><strong>potassium </strong>(the grey one)<strong><br />
</strong></p>
<ul>
<li>300 MHz Geode</li>
<li>256 MB RAM</li>
<li>6 GB 2.5&#8243; IDE drive</li>
<li>Onboard graphics, audio, serial x2, parallel, USB &amp; 10/100 ethernet</li>
</ul>
<p>£35 + P&amp;P</p>
<p><span id="more-258"></span>Magnesium is used as the client machine, and potassium runs a custom-made webserver and the control software for the <a href="http://www.killswtch.net/2008/03/15/the-vams-0808-matrix-switcher-and-determining-its-protocol-part-2/" >VAMS-0808 Matrix Switcher</a>.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2382.jpg" ><img class="alignnone size-medium wp-image-260" title="Puppy linux" src="http://www.killswtch.net/wp-content/uploads/img_2382-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>Both came pre-installed with <a href="http://www.puppylinux.org/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.puppylinux.org');">Puppy Linux</a>, a lightweight distribution designed for low-power machines such as these. It runs surprisingly quickly, but to make it easier for me to maintain I decided to install Ubuntu.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2385.jpg" ><img class="alignnone size-medium wp-image-261" title="Installing Ubuntu" src="http://www.killswtch.net/wp-content/uploads/img_2385-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>On such slow computers it took many hours to get Ubuntu installed on magnesium alone. I initially installed to the CF drive that came with the machine. However I found it to be quite slow, so I followed <a href="http://developer.novell.com/wiki/index.php/HOWTO:_Convert_Ubuntu_to_Diskless" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/developer.novell.com');">a guide for running Ubuntu via network boot</a> and removed the CF disk. I did the same for potassium. Both booted off of the fileserver, boron.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2387.jpg" ><img class="alignnone size-medium wp-image-262" title="Crash" src="http://www.killswtch.net/wp-content/uploads/img_2387-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2390.jpg" ><img class="alignnone size-medium wp-image-263" title="Inside potassium" src="http://www.killswtch.net/wp-content/uploads/img_2390-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2492.jpg" ><img class="alignnone size-medium wp-image-265" title="Blower inside magnesium" src="http://www.killswtch.net/wp-content/uploads/img_2492-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>Unfortunately during installation, I found that the slower of the machines has a tendancy to overheat causing the machine to hang. To get Ubuntu installed I had to remove the case. This has now been rectified by installing a blower to get at least some air circulating. This is the only fan in either of the machines. Magnesium gets quite hot but has never crashed because of it. It also sits in a cooler environment, and is much better engineered.</p>
<p><a href="http://www.killswtch.net/wp-content/uploads/img_2397.jpg" ><img class="alignnone size-medium wp-image-264" title="Inside magnesium" src="http://www.killswtch.net/wp-content/uploads/img_2397-420x315.jpg" alt="" width="420" height="315" /></a></p>
<p>Sadly I&#8217;ve been forced to install Windows XP on magnesium purely because I couldn&#8217;t get the touchscreen to work under linux despite spending more than a day trying to. While it was detected, and it detected touches, the calibration was completely off and there was no way to configure it. Rather than waste any more time I decided to switch to Windows and everything has worked beautifuly since then. To accomplish this I&#8217;ve had to reinstall the CF disk since as far as I know XP Pro can&#8217;t do diskless booting.</p>
<p>Shots of these computers in use and more information on their roles to come soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/07/10/sff-pcs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alternatives to DVB-T in the UK</title>
		<link>http://www.killswtch.net/2008/06/19/alternatives-to-dvb-t-in-the-uk/</link>
		<comments>http://www.killswtch.net/2008/06/19/alternatives-to-dvb-t-in-the-uk/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:01:42 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[MythTV]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=245</guid>
		<description><![CDATA[Here in the UK there are a few ways to receive digital TV. Some of them are free (after an initial outlay for equipment) others are based on a subscription model. Here are some of the most common ones:

Digital terrestrial, received through a suitable TV antenna (DVB-T)
Cable, in most cases through Virgin Media (DVB-C)
Sky (DVB-S)
Freesat [...]]]></description>
			<content:encoded><![CDATA[<p>Here in the UK there are a few ways to receive digital TV. Some of them are free (after an initial outlay for equipment) others are based on a subscription model. Here are some of the most common ones:</p>
<ul>
<li>Digital terrestrial, received through a suitable TV antenna (DVB-T)</li>
<li>Cable, in most cases through <a href="http://www.virginmedia.com/" onclick="javascript:urchinTracker ('/outbound/article/www.virginmedia.com');">Virgin Media</a> (DVB-C)</li>
<li><a href="http://www.sky.com/" onclick="javascript:urchinTracker ('/outbound/article/www.sky.com');">Sky</a> (DVB-S)</li>
<li>Freesat (DVB-S/DVB-S2)</li>
</ul>
<p><a href="http://www.killswtch.net/2007/12/06/the-wonders-of-mythtv/" >My MythTV installation</a> is currently solely using a dual-tuner DVB-T receiver to record TV. However we are right on the edge of the closest transmitter&#8217;s reach with no usable overlap with any other transmitter, so at best our signal is spotty.</p>
<p>As spring progressed and the trees regained their leaves our signal has gotten weaker and weaker to the point that about 90% of recordings fail due to a lack of a signal lock or a very weak signal producing something that&#8217;s unwatchable.</p>
<p>The TVs in the house cope slightly better, but still suffer a lot from a broken signal. With digital being all-or-nothing compared to analogue&#8217;s degrees of static snow, it&#8217;s either you can watch something or you can&#8217;t&#8230; unless we change to the analogue tuners in the TVs, which we often have to.</p>
<p>We are being forced to consider alternatives, either to back up terrestrial or replace it completely.</p>
<p>I&#8217;m keen to keep to things which can be used legally with MythTV, which would rule out Sky and Virgin Media which essentially bind you to using their hardware. The benefits of those two services however is that they have a more complete selection of channels as well as the option to upgrade to significant bonus content, compared to the one remaining alternative &#8211; Freesat.</p>
<p><a href="http://www.freesat.co.uk/" onclick="javascript:urchinTracker ('/outbound/article/www.freesat.co.uk');">Freesat</a> was launched recently by a collaboration between the BBC and ITV. Most of the transmissions are in Standard Definition (SD) with a small sprinkling of High Definition (HD) services. More channels are expected to sign up, but at the moment there&#8217;s all of the UK BBC and ITV channels plus Channel 4 but at the moment no Channel 5 (who seem to insist on transmitting encrypted signals). Also there are none of the UKTV-owned channels including Dave.</p>
<p>Freesat is transmitted unencrypted over <a href="http://en.wikipedia.org/wiki/DVB-S" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">DVB-S</a> &amp; <a href="http://en.wikipedia.org/wiki/DVB-S2" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">DVB-S2</a>, both of which can be received by a computer using an appropriate satellite receiver card. Naturally I&#8217;ve been keeping my eye out on eBay for such cards, and there are usually a few on at a time. I&#8217;ve not bought any just yet and I won&#8217;t until a decision is made for sure that we&#8217;re going for Freesat rather than the next alternative, cable.</p>
<p>DVB-S2 is used for carrying HD programmes. It is relatively new, so although there are PCI cards out there cable of receiving the transmissions, the software for Linux hasn&#8217;t caught up yet. MythTV is in the early stages of including support, and some basic drivers are available. The cards come with software for Windows, but that&#8217;s not much use for a distributed MythTV-based PVR. I&#8217;m hoping that at least I can get DVB-S working for recording and such, then upgrade to DVB-S2 when it&#8217;s reliable. In the meantime HDTV can be watched on a normal set-top box.</p>
<p>Before Freesat came on the scene, as already mentioned the next alternative was cable from Virgin. In my investigations it quickly became apparent that connecting a <a href="http://en.wikipedia.org/wiki/DVB-C" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">DVB-C</a> card (a rare thing in the UK) to Virgin&#8217;s cable network was not a good idea since it would almost guarantee disconnection of all services including my 20 meg broadband.</p>
<p>To keep within the T&amp;Cs of that means using the analogue output from the V or V+ box, connecting it to a capture card and then doing digital-&gt;analogue-&gt;digital conversion. The result of this would be relatively low-quality video and audio, at a limited resolution (SD only). An IR transmitter would need to be used to control channel changing, and since it uses the only externally-available tuner you couldn&#8217;t watch one channel on TV and let another record on the same box. It&#8217;s certainly not an elegant way of doing things.</p>
<p>If we were to go for Sky, a similar thing would probably have to happen, although with a little work it may be possible to get a PCI DVB-S card to work with it, provided it had support for a decoder card so that the signal could be decrypted.</p>
<p>In the likely event that we decide to go for Freesat, the cheapest solution would be to do a complete <a href="http://www.dishpointer.com/2008/freesat-self-installation/" onclick="javascript:urchinTracker ('/outbound/article/www.dishpointer.com');">self-install</a>. However the easiest solution would be to pay for installation of a single-room service. We will need a 4 room service however, so the plan is currently to pay for a single room installation at Â£80, then buy a quad LNB and run the 3 other cables ourselves. That way we don&#8217;t have to worry about getting the correct size dish, mounting and <a href="http://www.dishpointer.com/" onclick="javascript:urchinTracker ('/outbound/article/www.dishpointer.com');">positioning it</a>. Apparently there&#8217;s some satellite-grade coax around somewhere that should do the job.</p>
<p>There will probably be 2 tuners in a machine that will do the recording (possibly <em>boron</em>) and the other 2 runs will go to the living room and the master bedroom.</p>
<p>Naturally there will be photos and such if/when the project takes place.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/06/19/alternatives-to-dvb-t-in-the-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Almost there with the audio system</title>
		<link>http://www.killswtch.net/2008/06/18/almost-there-with-the-audio-system/</link>
		<comments>http://www.killswtch.net/2008/06/18/almost-there-with-the-audio-system/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 19:23:15 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Home Automation]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=237</guid>
		<description><![CDATA[
Yesterday I completed and successfully tested the control software for the audio system. The software works with the matrix switcher and the APC MasterSwitch remote control PDU to allow the audio output devices around the house (TV, radio, CD player etc.) to route their sound to any of the 4 audio zones.
I&#8217;m now waiting on [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-242" title="Audio control screenshot" src="http://www.killswtch.net/wp-content/uploads/audio-system-control.png" alt="" width="327" height="288" /></p>
<p>Yesterday I completed and successfully tested the control software for the audio system. The software works with the matrix switcher and the APC MasterSwitch remote control PDU to allow the audio output devices around the house (TV, radio, CD player etc.) to route their sound to any of the 4 audio zones.</p>
<p>I&#8217;m now waiting on some more purchases from eBay to arrive before I can finish the system off. On the way is a small touch-screen monitor and a low-power mini ITX computer to connect it to. This will function as the controller and will probably sit in the dining room at the centre of the house. I&#8217;ve not gone for an iPod just yet, since a small mobile device has the possibility of getting lost or damaged more readily than a fixed controller. I&#8217;m looking out for a cheap 2nd hand one on eBay though.</p>
<p>Although I had got the software working yesterday, I foolishly installed some updates for Ubuntu and now the serial ports have disappeared again. Rather than battle to get the ports to show up and behave I&#8217;ve gone a little more eBay crazy and bought a second thin-client-like low power PC which will run the matrix control software and possibly the web server for the front-end control interface.</p>
<p>The other remaining tasks include creating some more cables and positioning and attaching the speakers for zone 4, the master bedroom.</p>
<p>Full details of the setup, with a video, will hopefully be posted in the next few weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/06/18/almost-there-with-the-audio-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dining room speakers</title>
		<link>http://www.killswtch.net/2008/06/18/dining-room-speakers/</link>
		<comments>http://www.killswtch.net/2008/06/18/dining-room-speakers/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 19:14:33 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Home Automation]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=238</guid>
		<description><![CDATA[
The speakers for zone 2, the dining room, have been installed without much of an issue. They sound pretty good after a test of zones 1, 2 &#38; 3 using the DAB radio in the kitchen. The left-hand speaker helps to hide the cable route from the pantry to the dining room &#38; kitchen.


]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-239" title="Speakers unwrapped" src="http://www.killswtch.net/wp-content/uploads/img_2329.jpg" alt="" width="420" height="315" /></p>
<p>The speakers for zone 2, the dining room, have been installed without much of an issue. They sound pretty good after a test of zones 1, 2 &amp; 3 using the DAB radio in the kitchen. The left-hand speaker helps to hide the cable route from the pantry to the dining room &amp; kitchen.</p>
<p><img class="alignnone size-full wp-image-240" title="Left" src="http://www.killswtch.net/wp-content/uploads/img_2330.jpg" alt="" width="420" height="315" /></p>
<p><img class="alignnone size-full wp-image-241" title="Right" src="http://www.killswtch.net/wp-content/uploads/img_2332.jpg" alt="" width="420" height="315" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/06/18/dining-room-speakers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last of the amplifiers</title>
		<link>http://www.killswtch.net/2008/06/15/last-of-the-amplifiers/</link>
		<comments>http://www.killswtch.net/2008/06/15/last-of-the-amplifiers/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 09:46:42 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[A/V]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Home Automation]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=215</guid>
		<description><![CDATA[
There are 4 audio zones in the house, each requiring it&#8217;s own amplifier and pair of speakers. I&#8217;ve just purchased the last of the amplifiers, which completes the selection of hardware that&#8217;s necessary within the cabinet. I took the opportunity to rearrange the order of things in the rack a little to tidy things up.





]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-221" title="All on" src="http://www.killswtch.net/wp-content/uploads/img_2220.jpg" alt="" width="420" height="315" /></p>
<p>There are 4 audio zones in the house, each requiring it&#8217;s own amplifier and pair of speakers. I&#8217;ve just purchased the last of the amplifiers, which completes the selection of hardware that&#8217;s necessary within the cabinet. I took the opportunity to rearrange the order of things in the rack a little to tidy things up.</p>
<p><img class="alignnone size-full wp-image-216" title="The box" src="http://www.killswtch.net/wp-content/uploads/img_2203.jpg" alt="" width="420" height="315" /></p>
<p><img class="alignnone size-full wp-image-217" title="The amplifier" src="http://www.killswtch.net/wp-content/uploads/img_2205.jpg" alt="" width="420" height="315" /></p>
<p><img class="alignnone size-full wp-image-218" title="Rearranging" src="http://www.killswtch.net/wp-content/uploads/img_2210.jpg" alt="" width="420" height="315" /></p>
<p><img class="alignnone size-full wp-image-219" title="Cosy network equipment" src="http://www.killswtch.net/wp-content/uploads/img_2209.jpg" alt="" width="420" height="315" /></p>
<p><img class="alignnone size-full wp-image-220" title="Everything in place" src="http://www.killswtch.net/wp-content/uploads/img_2216.jpg" alt="" width="420" height="315" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/06/15/last-of-the-amplifiers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Measuring power consumption</title>
		<link>http://www.killswtch.net/2008/06/15/measuring-power-consumption/</link>
		<comments>http://www.killswtch.net/2008/06/15/measuring-power-consumption/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 09:32:12 +0000</pubDate>
		<dc:creator>killswtch</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Home Automation]]></category>

		<guid isPermaLink="false">http://www.killswtch.net/?p=214</guid>
		<description><![CDATA[
A recent electricity bill has prompted me to investigate how much power is being used by each device in and around the cabinet in the hope of figuring out what can be replaced to reduce running costs. I&#8217;ve had a power monitor from Maplin for a while, but most of the time it&#8217;s been monitoring [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-222" title="Power monitor" src="http://www.killswtch.net/wp-content/uploads/img_2223.jpg" alt="" width="420" height="315" /></p>
<p>A recent electricity bill has prompted me to investigate how much power is being used by each device in and around the cabinet in the hope of figuring out what can be replaced to reduce running costs. I&#8217;ve had a power monitor from Maplin for a while, but most of the time it&#8217;s been monitoring total power consumption of the rack.</p>
<h2>Power</h2>
<ul>
<li>UPS: ~50W non-charging</li>
</ul>
<h2>Networking</h2>
<ul>
<li>24 port 10/100 switch: 25W</li>
<li>4 port 10/100/1000 switch: 18W</li>
<li>5 port 10/100/1000 switch: 8W</li>
<li>Router: 3W</li>
<li>Modem: 3W</li>
</ul>
<h2>Computers</h2>
<ul>
<li>Boron (fileserver): 150-190W</li>
<li>Aluminium (desktop): 250-295W</li>
<li>Barium (HTPC): 66-85W</li>
</ul>
<p>The audio system components haven&#8217;t been measured yet because at the moment they aren&#8217;t ready to drive a load and measuring the idle consumption wouldn&#8217;t be very meaningful. The amplifiers will be switched off when not in use and won&#8217;t be used that much compared to the items listed above.</p>
<p>Based on the data above, I have replaced the 3 switches with 1 switch. I have been investigating replacing boron with a collection of NAS devices for storage and a low-power ITX-based machine for services such as DHCP and DNS. However this is currently quite an expensive option.</p>
<p>Aluminium is a gaming-spec PC so will always consume quite a bit of power, however I&#8217;ve got some software under development which should mean that I won&#8217;t need to keep it on to download the occaisional torrent &#8211; that job could be offloaded to boron or my hosted server.</p>
<p>Barium is only on when I want to watch a DVD, a video or recorded TV from MythTV. It was specced to be quiet and consume as little power as possible with a Core 2 Duo CPU, 1GB DDR2, a passively cooled HDCP-capable VGA/DVI graphics card and a quiet PSU.</p>
<p>I&#8217;m going to continue to look at reducing consumption not just in the rack but around the rest of the house.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.killswtch.net/2008/06/15/measuring-power-consumption/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
