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!
@grantmethestrength thanks! Just had a play around and created a new dashboard as suggested. Work in progress...
@mphb the only controls I'm struggling to locate on HA are zone 1 heating on/off, and holiday mode. Have you had any joy finding these switches at all?
edit- just found the zone 1 heating on/off control. Looks like holiday away isn't controllable via the svenar device as it is just listed as a sensor.
Just had a quick look at the source code for the svenar and these might get you on the right track. In Home Assistant go to settings, devices and services and then entities and search for enable heating and holiday.
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
Another handy tip always give your entities an area and a label makes it easier to find them when you start to add more stuff in HA.
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
After a bit more fiddling around (with thanks for pointers with home assistant- very much appreciated), here's what I have. Firstly, the svenar unit itself which was easy enough to connect up:
HA dashboard configuration thus far:
As mentioned above the only slight annoyance is lack of control of holiday away, from what I can see. Otherwise, seems a very tidy device which seems to provide everything I need, I think (?) and utilises the already good functionality in HA both on desktop and in the app. Only slight downside of HA is that it cannot be accessed away from the network without a subscription to the home assistant cloud, or another workaround. Plenty of guides on how to do that, though.
@benson I use tailscale very easy to setup and rock solid.
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
@grantmethestrength thanks! I did use that entity search function a lot when sorting which ones I wanted, albeit the midea nomenclature is rather confusing. I think that "enable heating" one basically means actual heating mode on the ASHP rather than turning the central heating on. Not quite sure what the holiday home setting does but it is the away one I need and that only appears to be listed as a sensor. I might email him and ask.
Is that a workaround whereby you need your own domain? I did have a look at that option and thought in fairness I don't mind paying what is a comparatively small amount to support the development of HA. Plus, I guess I'd have to pay to get a domain anyway? Granted it would likely be much less than the subscription.Posted by: @grantmethestrength@benson I use tailscale very easy to setup and rock solid.
Tailscale is kind of like a vpn connection (on steroids) you down load it onto each device you want in your tailnet load the integration into home assistant and you now have secure access to your network and home assistant from anywhere in the world. And as a Yorkshireman the best thing is it is free!
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
I think I may have found it, it looks like it is holding register 5 bit number 5, which means you should be able to read and write to it but it is only in there as a binary sensor not a switch. If you replace the switch portion of heatpump.yaml this should give you the switch. Obvs back up before changing lol!!
switch:
- platform: factory_reset
name: Restart with Factory Default Settings
# Register: 0 -> Bit 2
- platform: modbus_controller
modbus_controller_id: "${devicename}"
name: "${entity_prefix} Power DHW T5S"
id: "${devicename}_power_dhw_t5s"
register_type: holding
entity_category: config
address: 0x0
bitmask: 0x4
- platform: modbus_controller
modbus_controller_id: "${devicename}"
name: "${entity_prefix} Function Setting Holiday Away"
id: "${devicename}_function_setting_holiday_away_switch"
register_type: holding
address: 0x5
bitmask: 0x20 # Bit 5
icon: mdi:airplane
# Register: 5 -> Bit 12
- platform: modbus_controller
modbus_controller_id: "${devicename}"
name: "${entity_prefix} Weather Compensation Zone 1"
id: "${devicename}_weather_compensation_zone_1"
register_type: holding
entity_category: config
address: 0x5
bitmask: 0x1000
# Register: 5 -> Bit 13
- platform: modbus_controller
modbus_controller_id: "${devicename}"
name: "${entity_prefix} Weather Compensation Zone 2"
id: "${devicename}_weather_compensation_zone_2"
register_type: holding
entity_category: config
address: 0x5
bitmask: 0x2000
# Register: 7
- platform: modbus_controller
modbus_controller_id: "${devicename}"
name: "${entity_prefix} Forced Water Tank Heating On/Off"
id: "${devicename}_forced_water_tank_heating_on_off"
icon: mdi:fire-alert
address: 0x7
register_type: holding
entity_category: config
write_lambda: |-
uint16_t value = 0;
if (x == 1) {
ESP_LOGI("main", "Set forced water tank heating ON");
value = 1;
} else {
ESP_LOGI("main", "Set forced water tank heating OFF");
value = 2;
}
esphome::modbus_controller::ModbusCommandItem set_payload_command = esphome::modbus_controller::ModbusCommandItem::create_write_single_command(${devicename}, 0x7, value);
${devicename}->queue_command(set_payload_command);
return {};
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
If there any more sensors that are holding registers that you would like to have a switch for let me know, it is pretty easy to create. Might be worth reaching out to the creator and see if he will update the yaml. It is a cool little family project.
Kind Regards
Si
——————————————————————————
Grant Aerona3 13kW
13 x 435w + 13x 480w Solar Panels
Sigenergy 10kW Inverter
25kWh Sigenstor battery
- 26 Forums
- 2,661 Topics
- 62.2 K Posts
- 288 Online
- 7,058 Members
Join Us!
Directory
Latest Posts
-
I'm the general case no (at least not yet). But if ins...
By JamesPa , 1 hour ago
-
RE: GivEnergy inverter tripping due to over-voltage?
Thanks for that info. Yes, I'm well aware that GivEne...
By Transparent , 2 hours ago
-
RE: Cooling with air to water heat pumps
Very sensible Unfortunately I fear that's too simple...
By JamesPa , 6 hours ago
-
RE: Indevolt Batteries UK Support & Info Thread
Good morning. I just came across your website. Was ho...
By iRadiate , 11 hours ago
-
RE: Failed Heat Pump Install: IWA Claim Rejected
Many of the estimates we received mention IWA and RECC....
By Batpred , 22 hours ago
-
RE: Rural burning – I've had enough
Same here in Finland. It's strictly forbidden ...
By upnorthandpersonal , 22 hours ago
-
RE: Renewables & Heat Pumps in the News
Something worth flagging... we've just published a news...
By Mars , 23 hours ago
-
RE: Renewable Heating Hub Homeowners' Q&A Podcast
The Homeowners' Q&A podcast is back... I've changed...
By Mars , 23 hours ago
-
RE: Anyone concerned about GivEnergy?
I have already signed up with Axle so yes, that takes c...
By KevH , 1 day ago
-
@batpred Would it pass the airbnb feedback test no. I...
By EtchedPixels , 2 days ago
-
A quick update... we've just launched the beta version ...
By Mars , 2 days ago
-
RE: Who Actually Owns a Heat Pump in Britain? We Asked. Here Is What We Found.
The age part doesn't surprise me - only 25% of UK home ...
By EtchedPixels , 2 days ago
-
RE: Home automation and the cloud; is there a better way?
Nothing you've said there, @etchedpixels, is something ...
By Majordennisbloodnok , 2 days ago
-
I've heard from others living in the vicinity of Derril...
By Transparent , 2 days ago











