Inverter Power Flow Card

Is it possible to change the 20% to 10% and that when the battery is discharged the flow in the direction of inverter goes with a minus?

edit: ok, I found that with the 10% Soc. Now only the right flow from the battery or to the battery is missing.

Hi there,

it is possible to add multiple batteries ?
many thanks

Try adjusting these two parameters

battery:
  show_absolute: true
  invert_power: true

Hi. Sorry not at the moment.

I dare to question…
Is it possible to have distinct inverters figured in the power flow?

I have one offgrid (grid assisted) inverter and one grid-tie.

bonjour, je viens vers vous car je viens d’essayer de l’installer par hacs mais je n’y arrive pas, j’arrive pas a trouver un tuto, merci beaucoup

Supporting multiple inverters and batteries is a common request, currently it is limited to displaying a single one of each due to screen/card space limitations, necessitating having to write up custom/derived sensors that show the totals of multiple inverters/batteries.

There is a ‘issue’ opened requesting multiple inverters/batteries being added to the card, on @slipx06’s GitHub repository for this card. As/if/when it is possible it is on the ‘nice to add’ list.

:slight_smile:

hi, does anyone have any idea why the flow chart looks like this when viewing on iPad. It is absolutely fine on the desktop
thanks

In version 2024.8.0 there are some new rules implemented to handle legacy browsers. If you are using a legacy browser, dynamic CSS and styles are no longer supported. This affects all custom cards. Unfortunately the card makes extensive use of this and it’s not feasible to update to accommodate legacy builds. The work around here is to either:

  • Stay on 2024.7.4
  • Upgrade your device/browser to a modern version
  • Change/spoof your user agent string

For reference the following are considered legacy browsers according to the new rules

Browser Legacy Current Modern New Modern
Android 60 63 115
Chrome 60 63 109
Edge 16 79 115
Firefox 52 67 115
iOS 10.3 13 15.6
Safari 11 13 16.6
Opera 47 50 101
Opera Mobile* - 80 80
Samsung 4 8.2 22

You can see more information about this issue discussed here

1 Like

On the Solis Hybrid Inverters battery charge power and battery discharge power are 2 different entities both with positive numbers.
Do you have any suggestions on how best to use this for the battery charge and discharge data.
Thanks

@mre15 you will need to create a template sensor. Something like

template:
  - sensor:
      - name: "Battery Power"
        unique_id: battery_power
        device_class: "power"
        unit_of_measurement: "W" 
        icon: mdi:battery
        state_class: measurement
        state: >
          {% set charge = states('sensor.battery_charge') | float %}
          {% set discharge = states('sensor.battery_discharge') | float %}
          {{ (discharge - charge) |float(0)|round(0) }}

1 Like

I can’t figure out why the number on the right is double the number on the left. I do have a 24V Victron MP2 Inverter. Is that a hint I am not understanding?

400w + 380w = 780w total load for the house. What your diagram is showing what you are taking from the grid + what is going through your inverter be it solar or battery or both.

At least that is my understanding.

1 Like

Hi - Title Size (px) only changes Title Size on the Full Card
Is this a deliberate thing , a bug , or my system ?
Regards Jeff

Hallo, i would like to ask… Why does power go to grid during tje night? In the Evening export power acording graf was 16,38 and in the morning 16,54.

type: custom:sunsynk-power-flow-card cardstyle: lite show_solar: true battery: energy: 0 shutdown_soc: 20 show_daily: true auto_scale: true show_absolute: false dynamic_colour: true linear_gradient: true animate: true hide_soc: false colour: - 119 - 187 - 65 invert_power: false show_remaining_energy: true solar: show_daily: true mppts: 2 pv1_name: Východ pv2_name: Západ auto_scale: true dynamic_colour: true load: show_daily: true auto_scale: true dynamic_colour: true dynamic_icon: true invert_load: false grid: show_daily_buy: true show_daily_sell: true show_nonessential: true auto_scale: true show_absolute: true entities: day_battery_charge_70: sensor.today_battery_charge day_battery_discharge_71: sensor.today_battery_discharge battery_voltage_183: sensor.battery_voltage battery_soc_184: sensor.battery_state_of_charge battery_power_190: sensor.battery_power battery_current_191: sensor.battery_current day_grid_import_76: sensor.today_energy_import day_grid_export_77: sensor.today_energy_export grid_ct_power_172: sensor.active_power_l1 day_load_energy_84: sensor.today_load essential_power: sensor.house_consumption day_pv_energy_108: sensor.today_s_pv_generation pv1_power_186: sensor.pv1_power pv2_power_187: sensor.pv2_power pv1_voltage_109: sensor.pv1_voltage pv1_current_110: sensor.pv1_current pv2_voltage_111: sensor.pv2_voltage pv2_current_112: sensor.pv2_current total_pv_generation: sensor.total_pv_generation battery_temp_182: sensor.battery_temperature battery_soh: sensor.battery_state_of_health battery_status: sensor.battery_mode_code battery_current_direction: sensor.battery_current load_power_L1: sensor.load_l1 load_power_L2: sensor.load_l2 load_power_L3: sensor.load_l3 grid_ct_power_L2: sensor.active_power_l2 grid_ct_power_L3: sensor.active_power_l3 energy_cost_buy: sensor.today_energy_import_cost radiator_temp_91: sensor.inverter_temperature_radiator dc_transformer_temp_90: sensor.inverter_temperature_air inverter_voltage_154: sensor.on_grid_l1_voltage inverter_voltage_L2: sensor.on_grid_l2_voltage inverter_voltage_L3: sensor.on_grid_l3_voltage load_frequency_192: sensor.meter_frequency inverter_current_164: sensor.on_grid_l1_current inverter_current_L2: sensor.on_grid_l2_current inverter_current_L3: sensor.on_grid_l3_current pv_total: sensor.pv_power large_font: true show_battery: true show_grid: true inverter: three_phase: true auto_scale: true autarky: power modern: true title: FVE panel_mode: false

Looks like a bug. I’ll fix it.

2 Likes

V5.0.0.

What’s Changed

:boom: Breaking Changes
After HA version 2024.7.4 there was an update to the rules that determine the use of legacy or modern builds. The browser minimum versions that support the modern build were increased. This means that older devices and older browser version no longer support the modern build. The problem with the legacy build is it does not support dynamic cascading style sheets (CSS) or dynamic styles. This custom card makes extensive use of both of these features and will not render properly when using the legacy build. Unfortunately the only practical workaround is to update your device/browser to a version that HA considers modern or stay on HA version 2024.7.4. If you are using the companion app it is also a good ideas to make sure you have updated to the latest version. For reference the following are the browser versions that support the modern build:

Browser Legacy Modern
Android 63 115
Chrome 63 109
Edge 79 115
Firefox 67 115
iOS 13 15.6
Safari 13 16.6
Opera 50 101
Opera Mobile* - 80
Samsung 8.2 22

:rocket: Exciting New Features

  • locale: add Swedish translation
  • locale: update Catalan translation. Thanks @pacoculebras

:bug: Patches & Bug Fixes

  • fix: title size on lite and compact card not working

Full Changelog: v4.44.0…v5.0.0

Hi! How can I get rid of the big blue square box showing 7.0Kw next to the inverter ? I really dont need it to be there :slight_smile:
image

Try one of the different views like compact or lite.

That’s not what I was asking…