Solaredge Modbus Configuration for Single Inverter and Battery

I have been offered a downgrade to 4.18.32 but apparently they can’t downgrade me back to 4.17.221, which is quite annoying. If that doesn’t resolve the issue then I’ll just have to push them to investigate fix the issue but I suspect that’ll take months.

I’ve had no modbus issues for 36 hours now, so it seems as if the downgrade worked.

Hello WillCodeForCats,

fyi: I have just upgraded to HA 2024.1.0 and have received this message during start-up:

2024-01-04 14:34:58.569 WARNING (MainThread) [homeassistant.const] TIME_SECONDS was used from solaredge_modbus_multi, this is a deprecated constant which will be removed in HA Core 2025.1. Use UnitOfTime.SECONDS instead, please create a bug report at Issues · WillCodeForCats/solaredge-modbus-multi · GitHub

This was updated in v2.4.8-pre.2 since I missed it when all the others were changed.

1 Like

In Release v2.4.8-pre.1 there is a potentially backwards incompatible change to the Energy sensors to better fit today’s Home Assistant.

  1. The entity names for Energy sensors will no longer have kwh in them by default.

The reason kwh should be removed from the name is because this is no longer strictly true. The inverter actually uses watt-hours and previously the entity would statically scale to kWh. However at some point Home Assistant updated to allow entities to be dynamically configured for units and precision through the UI, so now anyone can choose to see energy in Wh, kWh, MWh, whatever units HA supports for Energy class sensors. So having a sensor name with kwh in it is no longer appropriate when it could be several other supported units for its class.

This can be backwards compatibility breaking but it depends: existing energy sensor entities with kwh in the name won’t change on simple upgrades to the current version of the integration.

The name will change to the new default if you remove and re-add the integration or device. New users will notice if they installed a version after v2.4.8 for the first time that their Energy sensor names don’t end with kwh and templates will need to be adjusted to remove kwh from the name.

I don’t know if there’s a way to set up templates to look for both the old and new sensor entity names (with a name ending in kwh or not). If there is this would make it easier to accommodate existing and new users without template changes.

I don’t like making breaking changes, but sometimes it turns out that decisions made in the past that were good for the time don’t always fit long term. I like that HA added these features to change between units dynamically, but I wish I’d named my entities better to consider that.

  1. Internally the native unit for energy will be watt-hours.

The inverter’s native units when reading it over modbus is watt-hours. The default suggested unit will still be kWh so it won’t appear anything has changed other than the name, and let Home Assistant to do the unit conversions and remove any hardcoded unit conversions.

This shouldn’t affect anyone, but I’m mentioning it just in case.

1 Like

Thanks for the info!

I am trying to setup PV / Solar Excess Optimizer Blueprint and wondering if I am missing something with the Modbus integration.

Is there a dedicated Export, Load and Combined Import/Export Power sensor? I can see some of these in the standard SolarEdge integration but they only update every 15 minutes. I have setup the last one using a template sensor based off the sensor.solaredge_m1_ac_power entity but not sure about the others.

The blueprint states:

  • Export Power: Sensor which contains your current export power to the grid in watts. Must not be negative! For best results, this sensor should be updated at least every minute.

  • Load Power: Sensor which contains your current load power (combined household appliance consumption without home battery charging consumption ) in watts. Must not be negative! For best results, this sensor should be updated at least every minute.

  • Combined Import/Export Power: Sensor which contains both , your current import power from the grid (positive values) and your current export power to the grid in watts (negative values). For best results, this sensor should be updated at least every minute.

Edit - sorted the Export Power sensor, just no idea how to get the load power as circled below

1 Like

You will need to calculate load (consumption) based on the values of import/export and production if you don’t have a dedicated consumption meter.

I’m sure that’s already done in a template in this thread somewhere.

1 Like

I’m looking for help with some battery info (since I don’t have batteries).

I want to know if the device attributes (for entity sensor.solaredge_b1_device) are fixed values or of they can change over time. The documentation calls them “battery nameplate information” which means to me that nameplate values should never change as if they are printed or attached to the device itself, and why I chose to implement them as attributes of the device.

However, if they can change over time, ones that can change should probably be added as their own sensor entities for statistics instead of attributes. These are the attributes I’m looking at:

  • batt_charge_peak
  • batt_discharge_peak
  • batt_max_charge
  • batt_max_discharge
  • batt_rated_energy

Thanks got an answer on another thread with the exact templates. Posting here incase anyone needs in the future - template sensors

1 Like

Pretty sure they are indeed fixed values.

OK, I will start a short experiment :slight_smile:

I am using the older “SolarEdge_Modbus” integration - and for now, I haven’t really seen the requirement to change the setup (especially, since this would require to redo the whole energy dashboard, etc.)

But I do get regular errors in my logs about an invalid state - probably, when the inverter resets (as I read further above)…

2024-01-07 17:49:47.639 ERROR (SyncWorker_6) [custom_components.solaredge_modbus] Error reading modbus data
Traceback (most recent call last):
  File "/config/custom_components/solaredge_modbus/__init__.py", line 240, in _refresh_modbus_data
    update_result = self.read_modbus_data()
                    ^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solaredge_modbus/__init__.py", line 316, in read_modbus_data
    and self.read_modbus_data_meter1()
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solaredge_modbus/__init__.py", line 326, in read_modbus_data_meter1
    return self.read_modbus_data_meter("m1_", 40190)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solaredge_modbus/__init__.py", line 475, in read_modbus_data_meter
    exported = validate(self.calculate_value(exported, energywsf), ">", 0)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/config/custom_components/solaredge_modbus/__init__.py", line 158, in validate
    raise ValueError(f"Value {value} failed validation ({comparison}{against})")
ValueError: Value 0 failed validation (>0)

Since I am using a Modbus Proxy for the connection between HomeAssistant and my Inverter (The inverter does only accept one connection - and I need other devices read from the inverter directly) - this setup should allow me to use both integrations (Modbus multi) and my older one in parallel.

I know, a connection issue on HA side should affect both integrations, but also Inverter related disconnects.
This test should just show, if there are issues related to one of the integrations itself :slight_smile:

Which proxy are you using?

this one :slight_smile:

I haven’t done any development with a proxy in mind, but if there are any proxy-specific problems let me know. As a direct connect it’s very stable and error-free at this point (after 162 releases and counting).

I don’t know how a proxy will work with the connection backoff and retry logic built in to the integration, but it can be adjusted in const.py in the RetrySettings class. Debug logs will show the details. Defaults were based on what works with my installation and tuned from feedback and observations.

There’s Not much behind this.
Running it since mid 2022 without any issues to overcome the limitation on Solar Edge that only one Connection can be established.

Does anyone have the idea why the Energy Distribution does not work?

I was trying to manually set the values under the “Energy” tab but the entities which should be used are not shown there.

image

If I am not wrong those entities should be used there?

    sensor.solar_imported_power_kwh:
      device_class: energy
    sensor.solar_exported_power_kwh:
      device_class: energy
    sensor.solar_panel_production_kwh:
      device_class: energy
    sensor.solar_panel_to_house_kwh:
      device_class: energy
    sensor.solar_house_consumption_kwh:
      device_class: energy

For those experiencing issues with their inverters resetting at random intervals, and thus reverting any changes to the default settings, may I suggest my solution of adding a ‘watchdog’ automation to protect against these events.

Essentially, you want to add changes, to your desired setting(s), as triggers for your automation and then assess their state. If their state is not what you want it to be at that time/under those conditions, then reset it to what it should be. What will happen, in case of a reset, is that your setting will become ‘unavailable’, your watchdog automation will try to reset it, and fail. Then, when the inverter comes back to life, the state will change again, to the default values. Your watchdog will trigger again, and this time it will be successful at setting your desired values. This should only cost you a second or two of default operation, before your settings are restored.

As an example, this is my watchdog to ensure that my battery remains in grid charge mode throughout the cheap overnight period of my tariff.

alias: Battery Go Watchdog
description: ""
trigger:
  - platform: state
    entity_id:
      - select.solaredge_i1_storage_command_mode
condition:
  - condition: and
    conditions:
      - condition: time
        after: "00:30:00"
        before: "04:29:00"
      - condition: not
        conditions:
          - condition: state
            entity_id: select.solaredge_i1_storage_command_mode
            state: Charge from Solar Power and Grid
action:
  - device_id: ************************
    domain: select
    entity_id: ************************
    type: select_option
    option: Charge from Solar Power and Grid
mode: single

It is also possible to roll this functionality into the main automation, by adding changes of the desired setting as an additional trigger, and using the trigger ID functionality to discern which path to take.

I took a slightly different approach and added a trigger that fires when the inverter has reset.

  - platform: state
    entity_id:
      - switch.solaredge_i1_grid_control
    from: unavailable
    to: "on"
    id: Inverter Reset

The corresponding choose option is:

      - conditions:
          - condition: trigger
            id:
              - Inverter Reset
          - condition: state
            entity_id: input_boolean.grid_charge_home_battery
            state: "on"
          - condition: state
            entity_id: >-
              binary_sensor.octopus_energy_target_intermittent_best_rates_3_hours_overnight
            state: "on"
        sequence:
          - service: script.grid_charge_battery
            data: {}

This specifically catches the reset that happens overnight, with conditions that check if the home battery should be charging. It can be adapted for any other situation, for example,if I’m charging the EV battery when the home battery is not charging, I shut down the battery output limit to prevent the EV draining the battery. If the inverter resets during this time, it will reset the battery output limit to max and drain the battery into the EV battery. My EV charging automation has th same trigger, with a different set of condtitions to check if the EV battery is charging at the time of reset.

This works every single time. I’m on an Agile tariff, so my charge window is not fixed.

Hello,
nice work.
Maybe I can suggest for the power flow to use a Sankey chart that is really expressive.

KR,

If you happen to have 3 batteries, it’s been reported that modbus now supports this.

Please try Release v2.4.9-pre.2 if you have a third battery.

Report your inverter firmware version too if it works.