<?xml version="1.0" encoding="utf-8"?>
	<rss version="2.0">
		<channel>
			<title>Green Building Forum - Electricity Monitor Recomendations</title>
			<lastBuildDate>Thu, 25 Jun 2026 06:58:23 +0100</lastBuildDate>
			<link>https://www.greenbuildingforum.co.uk/newforum/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.0.3</generator>
			<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237092#Comment_237092</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237092#Comment_237092</guid>
		<pubDate>Tue, 01 Mar 2016 09:41:55 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[Any recommendations for a fairly low cost electricity monitor which can display real time data and record data over time?   Ideally I would have one for each of 2 consumer units which are inaccessible so wireless display would be necessary.   <br /><br />I'm trying to work out why my electricity usage keeps on going up.  It seems to have risen from Â£1.50/day to Â£2.50/day over a couple of years (calc assuming 11p/kWh).   I've a fair idea it might be something to do with the huge fridge and oven the other half wanted, but would like to see where economies might be made.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237093#Comment_237093</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237093#Comment_237093</guid>
		<pubDate>Tue, 01 Mar 2016 09:54:40 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[This is what I use for the monitoring. You can buy extra clamps and an optical sensor.<br /><a href="http://www.ebay.co.uk/bhp/current-cost-envir" target="_self" rel="nofollow">http://www.ebay.co.uk/bhp/current-cost-envir</a><br />Then I connect it to a Raspberry Pi for the logging.<br />Going to cost you about Â£100 to get it all sorted.<br /><br />And CurrentCost went bankrupt recently and not sure if they have phoenixed or not.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237096#Comment_237096</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237096#Comment_237096</guid>
		<pubDate>Tue, 01 Mar 2016 10:53:07 +0000</pubDate>
		<author>torrent99</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: SteamyTea</cite>This is what I use for the monitoring. You can buy extra clamps and an optical sensor.<br /><a href="<a href="http://www.ebay.co.uk/bhp/current-cost-envir" target="_blank" rel="nofollow">http://www.ebay.co.uk/bhp/current-cost-envir</a>" rel="nofollow" >http://www.ebay.co.uk/bhp/current-cost-envir</a><br />Then I connect it to a Raspberry Pi for the logging.<br />Going to cost you about Â£100 to get it all sorted.<br /><br />And CurrentCost went bankrupt recently and not sure if they have phoenixed or not.</blockquote><br /><br />Hmm that's interesting that CurrentCost device looks identical to the EON branded device my dad gave me (including the USB data cable). <br /><br />Do you link the RPi using the USB cable or the Network bridge device? What software do you use to suck the data out of it?]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237097#Comment_237097</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237097#Comment_237097</guid>
		<pubDate>Tue, 01 Mar 2016 10:58:57 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[It is the same as the EON one.<br />I use the USB cable as I can then use the default sample time of 6 seconds (ish).<br /><br />I wrote my own script (actually modified others).  Then installed Upstart so that it was live as soon as the RPi boots up.<br /><br />#!/usr/bin/python<br /><br />import serial, time, datetime<br /><br />while True:<br /><br />#Open the USB Serila port<br />		cc128 = serial.Serial("/dev/ttyUSB0", 57600, timeout=6)<br /><br />#Read the USB Serial port<br />		text = cc128.readline()[:]<br /><br />#Splits up the data<br />		length = len(text)<br />		dsb = text[32:37]<br />		time = text[49:57]<br />		temperature = text[70:74]<br />		sensor = text[89:90]<br />		sensorID = text[103:108]<br />		ch1 = text[139:144]<br />		ch2 = text[170:175]<br />		ch3 = text[201:206]<br /><br />	<br />#Sort out the time format<br />		timestamp = datetime.datetime.now().strftime ('%d/%m/%Y %H:%M:%S')<br /><br />#Opens and writes to the text file where the data is stored<br />		tfile = open("/home/pi/homemonitoring/ccdata.csv", "a")<br />		tfile.write("%s"%timestamp + ",%s"%length + ",%s"%dsb + ",%s"%time + ",%s"%temperature + ",%s"%sensor + ",%s"%sensorID + ",%s"%ch1 + ",%s"%ch2 + ",%s"%ch3 + "\n")<br />		tfile.close()<br /><br />		time.sleep(6)]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237099#Comment_237099</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237099#Comment_237099</guid>
		<pubDate>Tue, 01 Mar 2016 11:57:56 +0000</pubDate>
		<author>torrent99</author>
		<description>
			<![CDATA[Excellent that's perfect thank you! Another job for the Pi 2 or the Pi Zero or should I upgrade to a Pi 3? decisions decisions...... <img src="/newforum/extensions/Vanillacons/smilies/standard/wink.gif" alt=":wink:" title=":wink:" />]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237103#Comment_237103</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237103#Comment_237103</guid>
		<pubDate>Tue, 01 Mar 2016 12:48:47 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[Shame how the forum chops whitespace off the start of lines when it's significant in Python. Perhaps you could put that on pastebin or as a github gist or something, Steamy.<br /><br />A word of warning though: those CurrentCost devices vary a lot from version to version in what they output so Steamy's code might not work exactly as is for newer ones. Should be easily modifiable, though. Mine puts out XML and I did some quick and dirty code to parse that (also in Python) using the default Python DOM implementation. It relied on a one second timeout to determine when a burst of lines (which come, as Steamy says, every 6 seconds) was complete.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237104#Comment_237104</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237104#Comment_237104</guid>
		<pubDate>Tue, 01 Mar 2016 13:11:37 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[Here, by the way, is the code I did to read from the CurrentCost. It has multiple threads: one to read blobs of characters from the serial port delimited by the gap in time between samples and one to process those blobs into XML and log them.<br /><br /><a href="https://gist.github.com/ed-davies/4e2e4045c103e2946135#file-current_cost-py" target="_self" rel="nofollow">https://gist.github.com/ed-davies/4e2e4045c103e2946135#file-current_cost-py</a><br /><br />The original idea was to be able to have other similar logging activity running in the same process. However, when I came to do code to talk modbus over the LAN to my Morningstar PV charge controller I decided to do it in JavaScript in Node.js as it deals with this multithreading more natively. Consequently, this code didn't progress beyond the prototype test code at the end. Might be of interest, though, as it tells you a bit more about your particular device is outputting.<br /><br />Something to note is that not all the messages from the CurrentCost are the same. At some interval (one an hour?) it also outputs a summary of readings over a longer period. IIRC there's some way to force it to do that on request, like reset it, but I can't remember the details.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237106#Comment_237106</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237106#Comment_237106</guid>
		<pubDate>Tue, 01 Mar 2016 13:52:19 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[Thanks, the multiple channels will be very handy for what I want to do.   Looks like the CurrentCost EnviR is supplied free by some electricity suppliers and new ones are finding their way directly to eBay quite cheaply.   I shall try to bag one of those.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237108#Comment_237108</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237108#Comment_237108</guid>
		<pubDate>Tue, 01 Mar 2016 14:14:30 +0000</pubDate>
		<author>torrent99</author>
		<description>
			<![CDATA[Having trouble locating the power supply for my EnviR, anyone know what voltage warthog I'm looking for please (before I plug something in that fries it)?]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237116#Comment_237116</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237116#Comment_237116</guid>
		<pubDate>Tue, 01 Mar 2016 15:23:00 +0000</pubDate>
		<author>Ed Davies</author>
		<description>
			<![CDATA[Sorry, mine's in storage about 30 km away so a bit awkward to check Hope somebody else can help.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237117#Comment_237117</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237117#Comment_237117</guid>
		<pubDate>Tue, 01 Mar 2016 15:30:48 +0000</pubDate>
		<author>torrent99</author>
		<description>
			<![CDATA[Found it! For future reference it's a small warthog with a slightly smaller jack than most of the 12V/9V items around. Output according to the label is 3V at 80ma, I measured 4.5V (no load).<br /><br />Also in case anyone wants to wire their own "data cable" I found this pinout info:<br /><br /><br />http://currentcostgadgeteer.codeplex.com/<br /><br />1 Vcc supply<br />4 Gnd<br />7 EnviR Unit Rx Data<br />8 EnviR Unit Tx Data]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237123#Comment_237123</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237123#Comment_237123</guid>
		<pubDate>Tue, 01 Mar 2016 18:45:22 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[I power the CurrentCost from the 3.3 or the 5V pin on the RPi no problem.<br /><br />Ed<br />My initial codes was written by someone else and that hourly, morning noon and night, daily, weekly and monthly output used to cause all sorts of problems.<br />Why, with my very limited understanding of coding, I simply split the line up.<br />I have a later version that does a conditional check on the line length and only saves when the length is correct.  Bu tit is messy and probably not reliable (I have one at a bakers at the moment and must go and check it.<br /><br />Also worth knowing that the RPi does not have a clock, and can be flaky on its timekeeping even when connected to the internet.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237125#Comment_237125</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237125#Comment_237125</guid>
		<pubDate>Tue, 01 Mar 2016 20:39:34 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: SteamyTea</cite>can be flaky on its timekeeping even when connected to the internet.</blockquote><br />If you have a connection to the Internet your timing should be perfect. You need to set up an ntp daemon (Network Time Protocol). googling 'pi ntp' throws up lots of likely how-to hits.<br /><br />Edit: PS the sheepwalk RPI3 one-wire plug-in also contains a clock.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237127#Comment_237127</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237127#Comment_237127</guid>
		<pubDate>Tue, 01 Mar 2016 20:52:01 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[BTW, has anybody found or used any one-wire current sensors?<br />Ive seen this:<br /><br /><a href="http://www.hw-group.com/products/sensors/30A-Current-probe-1W-UNI_en.html" target="_self" rel="nofollow">http://www.hw-group.com/products/sensors/30A-Current-probe-1W-UNI_en.html</a><br /><br />but haven't looked closely or investigated yet.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237134#Comment_237134</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237134#Comment_237134</guid>
		<pubDate>Tue, 01 Mar 2016 22:03:26 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[Not at $73 each, but these ones should work.<br /><a href="http://www.ibuttonlink.com/products/ms-tc" target="_self" rel="nofollow">http://www.ibuttonlink.com/products/ms-tc</a><br /><br />My old mates at Homechip do them for Â£50<br /><a href="http://www.homechip.com/1-wire-controllers/sensors/ms-tc-temperature-and-current-sensor.html" target="_self" rel="nofollow">http://www.homechip.com/1-wire-controllers/sensors/ms-tc-temperature-and-current-sensor.html</a>]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237144#Comment_237144</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237144#Comment_237144</guid>
		<pubDate>Wed, 02 Mar 2016 09:48:50 +0000</pubDate>
		<author>torrent99</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: djh</cite><blockquote ><cite >Posted By: SteamyTea</cite>can be flaky on its timekeeping even when connected to the internet.</blockquote><br />If you have a connection to the Internet your timing should be perfect. You need to set up an ntp daemon (Network Time Protocol). googling 'pi ntp' throws up lots of likely how-to hits.<br /><br />Edit: PS the sheepwalk RPI3 one-wire plug-in also contains a clock.</blockquote><br /><br />You can also add a real time clock module for a couple of pounds from the bay. Probably easier to use NTP though. <br />(Mind you my OSMC seems to have REAL difficulty keeping time despite supposedly using NTP, my latest thing has been to set up a cron job to manually update the clock from NTP every 15 mins. It's a mystery!)<br /><br />Is there such an animal as a multiplexor for the 1 wire sensors around for the Pi (so you can have LOADS of sensors)?]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237146#Comment_237146</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237146#Comment_237146</guid>
		<pubDate>Wed, 02 Mar 2016 10:08:48 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: torrent99</cite>Is there such an animal as a multiplexor for the 1 wire sensors around for the Pi (so you can have LOADS of sensors)?</blockquote><br />the sheepwalk RPI3 one-wire plug-in<br /><br />Edit: PS: ntp is pretty reliable. If you dig hard enough I'm fairly sure you'll find a misconfiguration somewhere.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237151#Comment_237151</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237151#Comment_237151</guid>
		<pubDate>Wed, 02 Mar 2016 10:49:04 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[I use RTCs and ntp, it still gives me grief.  Could well be something I a doing.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237155#Comment_237155</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237155#Comment_237155</guid>
		<pubDate>Wed, 02 Mar 2016 11:15:11 +0000</pubDate>
		<author>djh</author>
		<description>
			<![CDATA[<a href="http://www.pool.ntp.org/en/use.html" target="_self" rel="nofollow">http://www.pool.ntp.org/en/use.html</a>]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237241#Comment_237241</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237241#Comment_237241</guid>
		<pubDate>Thu, 03 Mar 2016 20:06:34 +0000</pubDate>
		<author>rhamdu</author>
		<description>
			<![CDATA[One point that nobody has mentioned, I think: if you have solar or other microgeneration, you really want a monitor which can sense which way the energy is flowing (into or out of the grid). This is not the case for our monitor, an oldish Current Cost, bought before we installed PV. It is now basically an expensive room thermometer.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237244#Comment_237244</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237244#Comment_237244</guid>
		<pubDate>Thu, 03 Mar 2016 20:44:48 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[You can get two opti-sense Envi monitors, that should so it.<br />But it is probably easier to just get a smart meter fitted (roll out year this year, just like last year and 2014 was).]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237317#Comment_237317</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237317#Comment_237317</guid>
		<pubDate>Sat, 05 Mar 2016 12:53:09 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[Thanks for the recommendation.  I bought an Envi R from eBay heavily subsidised by e-on. <img src="/newforum/extensions/Vanillacons/smilies/standard/bigsmile.gif" alt=":bigsmile:" title=":bigsmile:" />   <br /><br />It is a surprise to find I am consuming 500W without anything really being switched on.   Half turned out to be the fridge and freezer, but of the other half there isn't much that really needs to be on.   It will be a useful tool.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237319#Comment_237319</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237319#Comment_237319</guid>
		<pubDate>Sat, 05 Mar 2016 14:12:27 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[Your fridge and freezer should not be using 250W.  How old are they and are they switching off?<br />I found out my fridge was faulty when I noticed that my usage had gone up by 3 kWh/day.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237320#Comment_237320</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237320#Comment_237320</guid>
		<pubDate>Sat, 05 Mar 2016 14:31:36 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[I think the fridge is working properly.  It's one of those silly Samsung american style things which despite being A++ rated uses about 600-700kW/h per year which averages out at about 70W continuous.  I measured 171W when it was running and it does switch off.     The freezer is an old second hand thing running about 85W continuously.  I might see if the other half really needs it now she has the silly fridge freezer.<br /><br />There is still a fair drain with everything switched off.   The building was commercial and I've still not removed the emergency exit lighting which must be worth 100W on it's own.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237321#Comment_237321</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237321#Comment_237321</guid>
		<pubDate>Sat, 05 Mar 2016 15:07:18 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[It is good fun hunting down vampire/phantom loads.<br />Now you got a Envi, you going to connect it to a Raspberry Pi?<br /><br />It is also worth getting a plug in energy meter to test individual items.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237323#Comment_237323</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237323#Comment_237323</guid>
		<pubDate>Sat, 05 Mar 2016 16:15:02 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[I'm not planning to log just yet - I have a monthly log of electricity and gas consumption and gas is coming down nicely.   It's the steady rise in electricity consumption I want to turn the other way around and the EnviR should be helpful.  I might well buy a plug in.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237324#Comment_237324</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237324#Comment_237324</guid>
		<pubDate>Sat, 05 Mar 2016 16:17:07 +0000</pubDate>
		<author>SteamyTea</author>
		<description>
			<![CDATA[Logging is useful for looking at night time usage though.<br />If you were local I would lend you one of mine, but I don't think you are nearby.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237325#Comment_237325</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237325#Comment_237325</guid>
		<pubDate>Sat, 05 Mar 2016 16:25:23 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[The electricity meter has daytime and night readings.   I hadn't previously normalised the night reading with the day reading (day = night * 2.42 for a 17 hour day and 7 hour night to get them on the same scale).  Looks like just about all of the electricity is used by stuff that is on all the time.  That is really wasteful.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237734#Comment_237734</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237734#Comment_237734</guid>
		<pubDate>Tue, 15 Mar 2016 14:53:41 +0000</pubDate>
		<author>vord</author>
		<description>
			<![CDATA[Would you believe it - the cheap plug in energy monitor from eBay (the one with 4 blue buttons bought before the Envi R) uses 17 watts of electricity!   Imagine plugging a few of those in to try to figure out what is using all of your electricity. <img src="/newforum/extensions/Vanillacons/smilies/standard/shocked.gif" alt=":shocked:" title=":shocked:" /><br /><br />I'm down from 500W to 230W continuous so far, with another 40W phantom current on a lighting circuit and upstairs sockets that can probably go once I figure out what is using it.  The biggest reductions were switching the fridge to eco mode and the other half turning things off when she saw the monitor.]]>
		</description>
	</item>
	<item>
		<title>Electricity Monitor Recomendations</title>
		<link>https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237735#Comment_237735</link>
		<guid isPermaLink="false">https://www.greenbuildingforum.co.uk/newforum/comments.php?DiscussionID=14086&amp;Focus=237735#Comment_237735</guid>
		<pubDate>Tue, 15 Mar 2016 15:56:46 +0000</pubDate>
		<author>skyewright</author>
		<description>
			<![CDATA[<blockquote ><cite >Posted By: vord</cite>I'm down from 500W to 230W continuous so far, with another 40W phantom current on a lighting circuit and upstairs sockets that can probably go once I figure out what is using it.  The biggest reductions were switching the fridge to eco mode and the other half turning things off when she saw the monitor.</blockquote><br />When you get to those sort of levels, power factor errors can loom large. The currentCost makes fixed assumptions about power factor and voltage. If all that's left running is a few switch mode PSUs the figure shown on the CC may be significantly more than reality. I spent ages trying to find out why I was seeing around 150W when I was only expecting around 80W (both figures v. approx from a dim dark corner of my memory). I only found the solution (which was that there was no extra load, just a false reading) by waiting till a quiet day with no one else around, powering the CC itself from an unplugged UPS, and turning off each of the known (& individually checked using a plug-in monitor) 24/7 loads one by one. As each device was taken out the CC reading dropped by more than each device accounted for. With all known loads off the CC reading was zero...<br /><br />YMMV.]]>
		</description>
	</item>
	
		</channel>
	</rss>