<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Automated Home Forums</title>
		<link>http://www.automatedhome.co.uk/vbulletin/</link>
		<description>On the web since 1996, Automated Home is the centre of the Home Automation Community - News, Reviews and Forums</description>
		<language>en</language>
		<lastBuildDate>Tue, 21 May 2013 08:55:16 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>30</ttl>
		<image>
			<url>http://www.automatedhome.co.uk/vbulletin/images/misc/rss.png</url>
			<title>Automated Home Forums</title>
			<link>http://www.automatedhome.co.uk/vbulletin/</link>
		</image>
		<item>
			<title>Home Temperature Data Logging System</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3645-Home-Temperature-Data-Logging-System&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 14:23:59 GMT</pubDate>
			<description>Afternoon all, 
I’m after putting together a temperature data logging system for my home.  Primarily to log the temperature of each of the rooms and...</description>
			<content:encoded><![CDATA[<div>Afternoon all,<br />
I’m after putting together a temperature data logging system for my home.  Primarily to log the temperature of each of the rooms and then maybe to add the logging of the hot water tank in the future.<br />
As normal I don’t want it to cost the earth, but if it is scalable in the future then it doesn’t matter cause I can buy more items for it in the future.  I would prefer wireless connection because this is easier to install without needing to run cables everywhere.  I would like it to log the data to its own memory and not need a computer on all the time connected too it or a Server / raspberry pi an option?<br />
If possible access for the internet or through a smartphone app?<br />
I’m not bothered about just buying something readymade off the shelf I am happy to put it together myself.<br />
I know this is probably everything required in one box; but has anyone seen a good solution / brand / make that could suit these requirements?<br />
Cheers<br />
Ant</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>antsals</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3645-Home-Temperature-Data-Logging-System</guid>
		</item>
		<item>
			<title>Easy Power Management output from Wiser or Touch Screen</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3644-Easy-Power-Management-output-from-Wiser-or-Touch-Screen&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 02:44:18 GMT</pubDate>
			<description>Hi All,  
 
I wrote some logic for a client who wanted a text output rather than looking at the pretty graphs. Thought someone here might also find...</description>
			<content:encoded><![CDATA[<div>Hi All, <br />
<br />
I wrote some logic for a client who wanted a text output rather than looking at the pretty graphs. Thought someone here might also find it useful for your own purposes.<br />
<br />
It displays the last 12 months of Current Measurement Data (from the 5504CMU C-Bus module) and gives an easy to read output to assess your power use for the period. You just go into PICED, select your project and 'refresh project from unit' so it downloads the latest power CSV file. Of course, don't upload an earlier project to your screen or Wiser or you will overwrite your power data.<br />
<br />
You can run this in the PICED logic window by setting your 'logic options' in the logic window to 'Allow use of all functions for testing' and 'Send WriteLn output to log'. You then look for the output in the PICED log file under the 'View' pull down menu in the main PICED window.<br />
<br />
Output is as follows:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">C-Bus Network Power Measurement<br />
&nbsp; &nbsp;  <br />
Total Energy (in kWh) Use Measured as at 17/05/2013<br />
This Months Power Use To Date&nbsp; = 665 kWh<br />
This Months Expected Power Use = 1241 kWh<br />
&nbsp; &nbsp; <br />
Previous 12 Months<br />
&nbsp; &nbsp; April 2013 Power Use = 1238 KWh<br />
&nbsp; &nbsp; March 2013 Power Use = 2166 KWh<br />
&nbsp; Febuary 2013 Power Use = 2324 KWh<br />
&nbsp; January 2013 Power Use = 1527 KWh<br />
&nbsp;December 2012 Power Use = 1514 KWh<br />
&nbsp;November 2012 Power Use = 1826 KWh<br />
&nbsp; October 2012 Power Use = 1607 KWh<br />
September 2012 Power Use = 1353 KWh<br />
&nbsp;  August 2012 Power Use = 1708 KWh<br />
&nbsp; &nbsp;  July 2012 Power Use = 1850 KWh<br />
&nbsp; &nbsp;  June 2012 Power Use = 1784 KWh<br />
&nbsp; &nbsp; &nbsp; May 2012 Power Use = 1632 KWh<br />
&nbsp; &nbsp;  <br />
Average Monthly Energy Use&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&nbsp; 1711 kWh<br />
This Month's Expected Power Use&nbsp; &nbsp;  =&nbsp; 1241 kWh<br />
This Month's Energy Use vs Average&nbsp; =&nbsp; &nbsp;  -27.5 %</code><hr />
</div>Setup in a new module in PICED Logic called [Power Monitor] (or whatever)<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">WriteLn('C-Bus Network Power Measurement');<br />
WriteLn('&nbsp; &nbsp;  ');<br />
DateToString(Date, Today);<br />
DataString := Today;<br />
WriteLn('Total Energy (in kWh) Use Measured as at ',DataString);<br />
MonthPower := GetRealIBSystemIO(&quot;Power Meter Total Energy&quot;,3, 1, 0, 0, 0, -1);<br />
Format(DataString, 'This Months Power Use To Date&nbsp; = ', (MonthPower/1000):0:0,' kWh');<br />
WriteLn(DataString);<br />
CMonthPower := GetRealIBSystemIO(&quot;Power Meter Total Energy&quot;,3, 1, 0, 0, 1, -1);<br />
Format(DataString, 'This Months Expected Power Use = ', (CMonthPower/1000):0:0,' kWh');<br />
WriteLn(DataString);<br />
WriteLn('&nbsp; &nbsp; ');<br />
WriteLn('Previous 12 Months');<br />
countup := 1;<br />
while countup &lt;= 12 do<br />
&nbsp; begin<br />
&nbsp; MonthPower := GetRealIBSystemIO(&quot;Power Meter Total Energy&quot;, 3, 1, countup, 0, 0, -1);<br />
&nbsp; Format(DataString, ' Power Use = ', (MonthPower/1000):0:0);<br />
&nbsp; MonthValue:=Date-(31*countup);<br />
&nbsp; DecodeDate(MonthValue, CYear, CMonth, CDay);<br />
&nbsp; &nbsp; case CMonth of //Select Month<br />
&nbsp; &nbsp; 1 : DMonth:='January';<br />
&nbsp; &nbsp; 2 : DMonth:='Febuary';<br />
&nbsp; &nbsp; 3 : DMonth:='March';<br />
&nbsp; &nbsp; 4 : DMonth:='April';<br />
&nbsp; &nbsp; 5 : DMonth:='May';<br />
&nbsp; &nbsp; 6 : DMonth:='June';<br />
&nbsp; &nbsp; 7 : DMonth:='July';<br />
&nbsp; &nbsp; 8 : DMonth:='August';<br />
&nbsp; &nbsp; 9 : DMonth:='September';<br />
&nbsp; &nbsp; 10 : DMonth:='October';<br />
&nbsp; &nbsp; 11 : DMonth:='November';<br />
&nbsp; &nbsp; 12 : DMonth:='December';<br />
&nbsp; &nbsp; end; <br />
WriteLn(DMonth:9,CYear:5,DataString,' KWh');<br />
&nbsp; countup := Succ(countup);<br />
&nbsp; MonthAv:=MonthAv + MonthPower; <br />
&nbsp; end;<br />
WriteLn('&nbsp; &nbsp;  ');<br />
WriteLn('Average Monthly Energy Use&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = ',(MonthAv/12)/1000:5:0,' kWh');<br />
Format(DataString, 'This Month''s Expected Power Use&nbsp; &nbsp;  = ', (CMonthPower/1000):5:0,' kWh');<br />
WriteLn(DataString);<br />
WriteLn('This Month''s Energy Use vs Average&nbsp; = ',(-((MonthAv/12)-CMonthPower)/(MonthAv/12)*100):9:1,' %');&nbsp; <br />
DisableModule(&quot;Power Monitor&quot;);</code><hr />
</div>It is designed to just run once and you can use it from PICED or your touch screen using a button etc.<br />
<br />
<br />
and you need these variables defined in 'Global Variables'<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Global Variables<br />
countup : integer;<br />
DataString : string;<br />
Today :string;<br />
s :string;<br />
MonthPower : real;<br />
CMonthPower : real;<br />
CYear:integer;<br />
CMonth:integer;<br />
MonthAv : real;<br />
DMonth:string;<br />
CDay:integer;<br />
MonthValue:integer;</code><hr />
</div><br />
<br />
In the case you wanted to write the output to a text file to keep as a power history, either on a Colour Touch Screen or from PICED after downloading the power data from the touch screen, use the following:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">AssignFile(file2, '12Month_Power_Data.txt');<br />
ReWrite(file2);<br />
WriteLn(file2,'C-Bus Network Power Measurement');<br />
WriteLn(file2,'&nbsp; &nbsp;  ');<br />
DateToString(Date, Today);<br />
DataString := Today;<br />
WriteLn(file2,'Total Energy (in kWh) Use Measured as at ',DataString);<br />
MonthPower := GetRealIBSystemIO(&quot;Power Meter Total Energy&quot;,3, 1, 0, 0, 0, -1);<br />
Format(DataString, 'This Months Power Use To Date&nbsp; = ', (MonthPower/1000):0:0,' kWh');<br />
WriteLn(file2,DataString);<br />
CMonthPower := GetRealIBSystemIO(&quot;Power Meter Total Energy&quot;,3, 1, 0, 0, 1, -1);<br />
Format(DataString, 'This Months Expected Power Use = ', (CMonthPower/1000):0:0,' kWh');<br />
WriteLn(file2,DataString);<br />
WriteLn(file2,'&nbsp; &nbsp; ');<br />
WriteLn(file2,'Previous 12 Months');<br />
countup := 1;<br />
while countup &lt;= 12 do<br />
&nbsp; begin<br />
&nbsp; MonthPower := GetRealIBSystemIO(&quot;Power Meter Total Energy&quot;, 3, 1, countup, 0, 0, -1);<br />
&nbsp; Format(DataString, ' Power Use = ', (MonthPower/1000):0:0);<br />
&nbsp; MonthValue:=Date-(31*countup);<br />
&nbsp; DecodeDate(MonthValue, CYear, CMonth, CDay);<br />
&nbsp; &nbsp; case CMonth of //Select Month<br />
&nbsp; &nbsp; 1 : DMonth:='January';<br />
&nbsp; &nbsp; 2 : DMonth:='Febuary';<br />
&nbsp; &nbsp; 3 : DMonth:='March';<br />
&nbsp; &nbsp; 4 : DMonth:='April';<br />
&nbsp; &nbsp; 5 : DMonth:='May';<br />
&nbsp; &nbsp; 6 : DMonth:='June';<br />
&nbsp; &nbsp; 7 : DMonth:='July';<br />
&nbsp; &nbsp; 8 : DMonth:='August';<br />
&nbsp; &nbsp; 9 : DMonth:='September';<br />
&nbsp; &nbsp; 10 : DMonth:='October';<br />
&nbsp; &nbsp; 11 : DMonth:='November';<br />
&nbsp; &nbsp; 12 : DMonth:='December';<br />
&nbsp; &nbsp; end; <br />
WriteLn(file2,DMonth:9,CYear:5,DataString,' KWh');<br />
&nbsp; countup := Succ(countup);<br />
&nbsp; MonthAv:=MonthAv + MonthPower; <br />
&nbsp; end;<br />
WriteLn(file2,'&nbsp; &nbsp;  ');<br />
WriteLn(file2,'Average Monthly Energy Use&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = ',(MonthAv/12)/1000:5:0,' kWh');<br />
Format(DataString, 'This Month''s Expected Power Use&nbsp; &nbsp;  = ', (CMonthPower/1000):5:0,' kWh');<br />
WriteLn(file2,DataString);<br />
WriteLn(file2,'This Month''s Energy Use vs Average&nbsp; = ',(-((MonthAv/12)-CMonthPower)/(MonthAv/12)*100):9:1,' %');&nbsp; <br />
CloseFile(file2);<br />
DisableModule(&quot;Power Monitor&quot;);</code><hr />
</div>Please note this code was knocked up quickly till late last night and may have some minor bugs. If you find one, be nice and PM me rather than replying and I will correct it for everyone.<br />
<br />
Otherwise Enjoy and I hope you find it useful.<br />
<br />
Blacky7</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?10-CBus">CBus</category>
			<dc:creator>blacky7</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3644-Easy-Power-Management-output-from-Wiser-or-Touch-Screen</guid>
		</item>
		<item>
			<title>gate intercom and opener?</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3643-gate-intercom-and-opener&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 05:44:53 GMT</pubDate>
			<description>I am finding it hard to get clear info on various systems. 
 
My goal is : 
 
1) gate button that when pressed alearts me via my mobile. 
 
2) allows...</description>
			<content:encoded><![CDATA[<div>I am finding it hard to get clear info on various systems.<br />
<br />
My goal is :<br />
<br />
1) gate button that when pressed alearts me via my mobile.<br />
<br />
2) allows two way voice communication and picture from ip camera<br />
<br />
3) activates a relay to open the gate.<br />
<br />
4) does not require a subscription fee<br />
<br />
I like the insteon hub system as does not need a fixed ip. Like the mcontrol setup but as I understand it needs a pc to be left running.<br />
<br />
Any sugestions ?</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>exon16m</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3643-gate-intercom-and-opener</guid>
		</item>
		<item>
			<title>Many X10 items</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3642-Many-X10-items&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 18:30:48 GMT</pubDate>
			<description>Hi All,  
 
I have quite a bit of X10 hardware to sell, some of it on Ebay, some still to add. start with item number 330922304477 and then see my...</description>
			<content:encoded><![CDATA[<div>Hi All, <br />
<br />
I have quite a bit of X10 hardware to sell, some of it on Ebay, some still to add. start with item number 330922304477 and then see my other items.<br />
<br />
Still to add:<br />
<br />
Multiple wall switches (several new and unused)<br />
HomeVision<br />
Timers<br />
Ref controls and RX modules<br />
TMU12 modules<br />
micro dimmers.</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?11-Buy-Sell">Buy / Sell</category>
			<dc:creator>ianh100</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3642-Many-X10-items</guid>
		</item>
		<item>
			<title>Large mains powered inground 18w exterior LED uplighters for sale</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3641-Large-mains-powered-inground-18w-exterior-LED-uplighters-for-sale&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 21:21:27 GMT</pubDate>
			<description>Hi 
 We have 6 inground 18W LED uplights for sale either individually or for the whole batch. If you are interest then send me a PM. 
They normally...</description>
			<content:encoded><![CDATA[<div>Hi<br />
 We have 6 inground 18W LED uplights for sale either individually or for the whole batch. If you are interest then send me a PM.<br />
They normally sell for between 160 to 180 euros each but we are selling them for;<br />
<div class="cms_table"><table width="500" class="cms_table_grid" align="center"><tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"><b>Quantity</b></td>
<td class="cms_table_grid_td"><b>Price/unit</b></td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td">1 to 2</td>
<td class="cms_table_grid_td">69 euros each</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"> 3 to 4</td>
<td class="cms_table_grid_td">65 euros each</td>
</tr>
<tr valign="top" class="cms_table_grid_tr"><td class="cms_table_grid_td"> 5 to 6</td>
<td class="cms_table_grid_td">55 euros each</td>
</tr>
</table></div>
Price does not include shipping. Will normally ship via 3 to 5 day post with tracking number. <br />
<br />
<b>Features</b><br />
Anti-corrosion, water-proof  and  excellent  heat-dissipation. <br />
Uses high-strength toughened glass as a cover which gives great light transparency.<br />
<br />
<b>Specs:</b><br />
<ul><li style="">Warm White</li><li style="">1020 lumen</li><li style="">colour temp: 2700-3200K</li><li style="">beam angle not too sure but between 12 and 30 degrees</li><li style=""> Power 18W  (18x 1W Epistar LEDs)</li><li style=""> Voltage 100 - 240V AC  50-60Hz</li><li style="">IP rating IP65</li><li style="">Dimensions 26cm dia x 9.3cm</li></ul><br />
<a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=335&amp;d=1368479566"  title="Name:  dimensions.jpg
Views: 4
Size:  31.6 KB">dimensions.jpg</a> <a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=336&amp;d=1368479639"  title="Name:  IMGP0560.jpg
Views: 6
Size:  95.9 KB">IMGP0560.jpg</a> <a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=337&amp;d=1368479673"  title="Name:  IMGP0565.jpg
Views: 5
Size:  95.2 KB">IMGP0565.jpg</a> <a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=338&amp;d=1368479709"  title="Name:  IMGP0566.jpg
Views: 5
Size:  97.2 KB">IMGP0566.jpg</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://www.automatedhome.co.uk/vbulletin/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=336&amp;d=1368479639">IMGP0560.jpg</a> 
(95.9 KB)
</li><li>
	<img class="inlineimg" src="http://www.automatedhome.co.uk/vbulletin/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=335&amp;d=1368479566">dimensions.jpg</a> 
(31.6 KB)
</li><li>
	<img class="inlineimg" src="http://www.automatedhome.co.uk/vbulletin/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=337&amp;d=1368479673">IMGP0565.jpg</a> 
(95.2 KB)
</li><li>
	<img class="inlineimg" src="http://www.automatedhome.co.uk/vbulletin/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.automatedhome.co.uk/vbulletin/attachment.php?attachmentid=338&amp;d=1368479709">IMGP0566.jpg</a> 
(97.2 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?20-Commercial-Offers">Commercial Offers</category>
			<dc:creator>toscal</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3641-Large-mains-powered-inground-18w-exterior-LED-uplighters-for-sale</guid>
		</item>
		<item>
			<title>Latest Clipsal Colour eDLT for C-Bus Videos / Info</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3640-Latest-Clipsal-Colour-eDLT-for-C-Bus-Videos-Info&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 07:26:43 GMT</pubDate>
			<description>Hi All, 
 
Just wanted to let all the C-Bus guys know that there are two videos about the Clipsal eDLT colour C-Bus switch up on You Tube and a new...</description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
Just wanted to let all the C-Bus guys know that there are two videos about the Clipsal eDLT colour C-Bus switch up on You Tube and a new data sheet.<br />
<br />
Take a look at the <a href="http://www.youtube.com/watch?v=mL_pRFmPyJk&amp;list=UUYgweLU8TpTXoX-oBKFgYeQ&amp;index=1" target="_blank">cool promo video</a> and don't miss the video <a href="http://www.youtube.com/watch?v=Lal8EtrAfM0&amp;list=UUYgweLU8TpTXoX-oBKFgYeQ" target="_blank">technical overview</a> that details all the features, benefits and how to use them in your clients sites, or your home.<br />
<br />
Also take a look at the <a href="http://www.noushouse.com.au/brochures/Clipsal/Wall Switches/eDLT-Series/Clipsal-Colour-eDLT-C-Bus-wall-switch-specifications-data-sheet.pdf" target="_blank">specifications data sheet</a> or the <a href="http://www.noushouse.com.au/brochures/Clipsal/Wall Switches/eDLT-Series/Clipsal-Colour-eDLT-C-Bus-wall-switch-brochure.pdf" target="_blank">brochure</a> for a hard copy.<br />
<br />
All the best,<br />
<br />
Blacky7</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?10-CBus">CBus</category>
			<dc:creator>blacky7</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3640-Latest-Clipsal-Colour-eDLT-for-C-Bus-Videos-Info</guid>
		</item>
		<item>
			<title>my home automation project...</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3639-my-home-automation-project&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 09:45:10 GMT</pubDate>
			<description>http://ndautomation.net:8180 
 
guest:guest 
 
all feedback welcome 
 
Neil</description>
			<content:encoded><![CDATA[<div><a href="http://ndautomation.net:8180" target="_blank">http://ndautomation.net:8180</a><br />
<br />
guest:guest<br />
<br />
all feedback welcome<br />
<br />
Neil</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?8-General-Discussion">General Discussion</category>
			<dc:creator>skiv71</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3639-my-home-automation-project</guid>
		</item>
		<item>
			<title>Need to update Cortex PC ...</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3638-Need-to-update-Cortex-PC&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 09:35:49 GMT</pubDate>
			<description><![CDATA[looks like our PC is getting overloaded - but what would be better ? 
 
it's a VIA EPIA EK 10000G with maximum RAM & runs with Windows XP Pro at...]]></description>
			<content:encoded><![CDATA[<div>looks like our PC is getting overloaded - but what would be better ?<br />
<br />
it's a VIA EPIA EK 10000G with maximum RAM &amp; runs with Windows XP Pro at around 1GHz and a CPU load of around 80% ... <br />
<br />
would be good to get that down to around 30% - but how ?<br />
<br />
is it just a matter of a faster CPU, or are there other factors, too ?<br />
<br />
would a more recent Windows version be faster ?<br />
<br />
any thoughts ... ???</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?27-Idratek">Idratek</category>
			<dc:creator>chris_j_hunter</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3638-Need-to-update-Cortex-PC</guid>
		</item>
		<item>
			<title>CM Zone Questions</title>
			<link>http://www.automatedhome.co.uk/vbulletin/showthread.php?3637-CM-Zone-Questions&amp;goto=newpost</link>
			<pubDate>Mon, 22 Apr 2013 22:19:19 GMT</pubDate>
			<description>Hi, have just bought a CM Zone Pack (1 x CM67Z and the boiler relay), and an extra pack of 4 x HR80UKs 
 
I already have a CM927 and DBR91 combo...</description>
			<content:encoded><![CDATA[<div>Hi, have just bought a CM Zone Pack (1 x CM67Z and the boiler relay), and an extra pack of 4 x HR80UKs<br />
<br />
I already have a CM927 and DBR91 combo controlling my boiler.<br />
<br />
1....I'm thinking I may be able to reuse the CM927 to act as the temperature sensor in a zone in which 2 of the radiators are in cabinets (my large dining room), and the 3rd radiator (uncased) is at the bottom of an open staircase tha leads into the same dining room.  Is that a sensible use of the CM927?  i presume it will be the temperature sensor for all 3 radiators in such a scenario?  Or can I have i such that the 3rd radiator's HR80UK uses it's own temp sensor?<br />
<br />
2...The CM67Z (i believe) can also act as temperature sensor?  The kitchen has 1 radiator exposed, and 1 hidden behind the sink, and vents through the workop (not very efficient I know, but it's what I inherited when I bought the house).  So i presume i could use the CM67Z sensor to sense the temperature in the kitchen zone?  Same question as before - will the exposed radiator HR80UK be able to verify it's own temperature in such a scenario?<br />
<br />
3....I have an area - large hall, staircase and landing - that has 4 rads.  As I don't have enough HR80UKs for all the house rads, I thought I could run this area with another CM67Z (if I buy one) to monitor the temperature, and run conventional TRVs in this area until such time as I get more HR8OUKs.  I'm thinking if it gets cold enough, the CM67Z in this are will kick the boiler in and warm the area up, while if it is up to temperature, but a different zone is causing the boiler and pump to run hot water round the circuit, the TRVs will limit the heat output in this area to their setpoint?<br />
<br />
4.....  I understand the DBR91 is newer, so presume I'd continue to use that, over the one that comes in the CM Zone pack (HC60 or something?).   <br />
<br />
5....  I understand I can parallel boiler relays in future if I need to.  But does that not run a risk of running the boiler for more cycles than is set up in the controls?  <br />
<br />
Grateful for any advice as new to this setup, and have found the threads on here very useful in my research, so have joined today!<br />
<br />
Simon</div>

]]></content:encoded>
			<category domain="http://www.automatedhome.co.uk/vbulletin/forumdisplay.php?13-Heating-Control">Heating Control</category>
			<dc:creator>Simes123</dc:creator>
			<guid isPermaLink="true">http://www.automatedhome.co.uk/vbulletin/showthread.php?3637-CM-Zone-Questions</guid>
		</item>
	</channel>
</rss>
