Joining the Renewable Heating Hub forums is completely free and only takes a minute. By registering you’ll be able to ask questions, join discussions, follow topics you’re interested in, bookmark useful threads and receive notifications when someone replies. Non-registered members also do not have access to our AI features. When choosing your username, please note that it cannot be changed later, so we recommend avoiding brand or product names. Before registering, please take a moment to read the Forum Rules & Terms of Use so we can keep the community helpful, respectful and informative for everyone. Thanks for joining!
Heat pump monitoring - what are you using?
Back to the monitoring,
I've just ordered the kit for the ESPAltherma hook up.
I've no idea into any computer programming but I'm a willing learner.
I know it's not going to be highly accurate like some off the kits available, but it should give a good baseline to start getting better efficiency because as of now I've no idea how often the heat pump cycles, the Cop/Scop etc as the MMI reading kWh usage is in whole numbers 1.4 would be 1, 1.6 would be 2 etc.
Fingers crossed it goes well🤞
Posted by: @njtI've no idea into any computer programming but I'm a willing learner.
Given willingness to learn, and assuming basic literacy, numeracy and ability to think logically, don't be afraid to look at python. It is a fairly high level (by which I mean human readable) programming/scripting language with hundreds if not thousands of packages that can be used to do almost anything. It may well already be on your PC (assuming that is what you use), in use by some other program, but you will need a generic standalone installation to get started. It's not huge. An example of a simple script (found online) that gets the mean for a variable (rows starting with # are comments, the actual script is only four lines):
# pandas is a package that does all sorts of data manipulation
# 'as pd' means I can refer to it as 'pd' (as in the 'hp_data = pd.read_csv...' line below)
import pandas as pd
# read data from a CSV file full of heat pump data, first row has variable names
# data ends up in a dataframe called hp_data
hp_data = pd.read_csv('data.csv')
# perform analysis on OAT (outside air temp)
mean = hp_data['OAT'].mean()
print(f"Mean: {mean}")
Midea 14kW (for now...) ASHP heating both building and DHW
Thanks.
Yes I use a windows laptop, bought a raspberry pi 4 to install Home Assistant recently which is another learning curve.
There's a tutorial online at GitHub for the ESPAltherma that looks complicated , but I can use Google to search for terms I've never heard of, which looking at the tutorial is quite a few.
I'll get there👍
One of the major problems with these types of online projects is that they get hugely over-complicated, making it often impossible for us mere mortals to work out what is going on, or rather more often, not going on. I do realise they are run by community volunteers, so good on them for volunteering, but that doesn't remove the impenetrable complexity.
Home Assistant is a classic Marmite, some people love it, others hate it. I found it to be just too complicated, too volatile and temperamental, and I did not often find the community support actually produced useful answers. I do still have it (too lazy to remove it and install some other basic OS on the mini PC that does what your Raspberry pi will do), but I only use it for one or two things, like backups (HA has a good working backup add-on, so why not use it?). The bulk of my monitoring is done using python scripts I wrote. It took a bit of trial and error, but it has now been set up for getting on for 18 months, and is very robust eg the data is in csv files, much easier and more table than in sqlite or some other database, and the whole thing even restarts itself when the power comes back after a power cut.
I suggest you try HA for a while. You may mind it is just the thing for you! But if it isn't, there are other ways.
Midea 14kW (for now...) ASHP heating both building and DHW
- 26 Forums
- 2,618 Topics
- 61.1 K Posts
- 949 Online
- 6,993 Members
Join Us!
Worth Watching
Latest Posts
-
RE: Indevolt Batteries UK Support & Info Thread
Thanks @editor , @indevolt-uk Subject to any comments ...
By JamesPa , 6 hours ago
-
RE: Share Your Experiences with Heat Pump Manufacturer Support
@seoras Sorry to hear that. I found Vaillant very help...
By JamesPa , 7 hours ago
-
The Watchdog That Watched and Waited
On 9 January 2026, Consumer Energy Solutions collapsed ...
By Mars , 10 hours ago
-
RE: GSHP Kaput After 16 Years: New Compressor or Switch to ASHP? Advice Welcome
Cool Energy in Grimsby sell ground source heat pumps an...
By DerekDeLeon , 11 hours ago
-
RE: Valliant Heat Pump Settings
Thats arguably a sign of a good installer - they unders...
By JamesPa , 12 hours ago
-
RE: Electricity price predictions
Well, we have so many cases where rain water mixes with...
By Batpred , 13 hours ago
-
RE: Two heating zones to one zone
@profzarkov They arent obviously wrong, but the only...
By JamesPa , 15 hours ago
-
RE: Towns water feed to air source heat pump system
The DHW circuit cant be separated (well it could, you c...
By JamesPa , 15 hours ago
-
Solis AC-coupled 3kW storage inverter
Solis AC-coupled 3kW storage inverterPylontech batterie...
By MartinRobinson , 21 hours ago
-
RE: My NIBE ASHP Nightmare: No Commissioning, High Bills and a Hostile Installer
As @transparent has observed above, this is not bad, an...
By cathodeRay , 22 hours ago
-
RE: The Grid Says Yes.. Until It Doesn’t: Why Britain's Net Zero Push is Stalling at the Plug Socket
As I was reading this article Mars, I was thinking that...
By Toodles , 2 days ago
-
RE: Tell us about your Solar (PV) setup
Installed in May 2011: 16*Sharp 245 W monocrystalline p...
By txmartyn , 2 days ago
-
-
RE: Say hello and introduce yourself
That doesn't sound 'right' to me. The national Smart ...
By Transparent , 3 days ago
-
RE: Growatt battery disconnected
I doubt this will happen, but I will try and suggest it...
By Eliuccio , 3 days ago
-
Understood. That's why I decided from the outset on a ...
By JamesPa , 3 days ago
-
RE: My experience with 3 heat pump surveys: Heat Geek, British Gas & Octopus
On the litigation, I would not go there and definitely ...
By Batpred , 3 days ago
-
RE: Recommended home battery inverters + regulatory matters - help requested
I suppose if your pv inverter packs up, you have a plan...
By Batpred , 4 days ago
-
RE: New Vaillant aroTherm Plus in black - When will it come to the UK?
Firstly check you are using sound power not sound press...
By JamesPa , 4 days ago
-
That’s the solar up and running, I don’t think it’s the...
By David999 , 4 days ago
-
RE: Seeking ideas / information / commiseration - Pure Drive
I agree with @colinc that you can reuse some of it. A s...
By Batpred , 4 days ago
-
RE: Solar Power Output – Let’s Compare Generation Figures
@toodles Im trying me best to ignore orangeman, I figur...
By Papahuhu , 4 days ago
-
@toodles That’s way better per kWp performance than our...
By Papahuhu , 5 days ago



