Skip to content
View in the app

A better way to browse. Learn more.

Power Forum - Renewable Energy Discussion

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Lilmonsta10

Members
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Lilmonsta10 got a reaction from -cK- in SunSynk Logger Integration into Home Assistant   
    -CK- 
     
    You Star !!! 
    That has got me going. 
    The only hiccup I have now is the Value for Load is now across both Devices. 
    Can you combine Sensors to create a new one Something like 
     - sensor:
          - name: "Sunsynk Total Load Inverters"
            state: >
               {{state_attr('sensor.sunsynk_Load', 'TotalPower') + state_attr('sensor.sunsynk_Load_2', 'TotalPower') 
     
     
  2. Like
    Lilmonsta10 got a reaction from mzezman in SunSynk Logger Integration into Home Assistant   
    You are another Star!!! 
    Thank you!! 
    Now the dashboard makes sense
  3. Thanks
    Lilmonsta10 reacted to mzezman in SunSynk Logger Integration into Home Assistant   
    You can do it easily using a helper 

  4. Thanks
    Lilmonsta10 reacted to -cK- in SunSynk Logger Integration into Home Assistant   
    I only have a single inverter setup but I think you will need to identify the correct sensors under the developer tool section under states first and see what the actual attributes are for the additional sensors.
    It might be listed under sensor.sunsynk_input or maybe sensor.sunsynk_input_2 once you have this you should add those sensors in the config file.

    Below is just an example so please amend it as needed, the assumption here was the additional sensor was under sensor.sunsynk_input but I suspect it is going to be under input_2.  Also note there is one small mistake in your config,  Current 112 should reference pvIV_1_ipv not 2 😉
    ####pv1_power_186: sensor.sunsynk_pv1_186 ####pv2_power_187: sensor.sunsynk_pv2_187 ####pv3_power_188: sensor.sunsynk_pv3_188 ####pv4_power_189: sensor.sunsynk_pv4_189 ####pv1_voltage_109: sensor.sunsynk_pv1_voltage_109 ####pv1_current_110: sensor.sunsynk_pv1_current_110 ####pv2_voltage_111: sensor.sunsynk_pv2_voltage_111 ####pv2_current_112: sensor.sunsynk_pv2_current_112 ####pv3_voltage_113: sensor.sunsynk_pv3_voltage_113 ####pv3_current_114: sensor.sunsynk_pv3_current_114 ####pv4_voltage_115: sensor.sunsynk_pv4_voltage_115 ####pv4_current_116: sensor.sunsynk_pv4_current_116 - sensor: - name: "Sunsynk Daily PV 108" state: > {{state_attr('sensor.sunsynk_input', 'etoday')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV1 186" state: > {{state_attr('sensor.sunsynk_input', 'pv1')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV2 187" state: > {{state_attr('sensor.sunsynk_input', 'pv2')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV3 188" state: > {{state_attr('sensor.sunsynk_input', 'pv3')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV4 188" state: > {{state_attr('sensor.sunsynk_input', 'pv4')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV1 Voltage 109" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_0_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV1 Current 110" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_0_ipv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV2 Voltage 111" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_1_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV2 Current 112" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_1_ipv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV3 Voltage 113" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_2_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV3 Current 114" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_2_ipv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV4 Voltage 115" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_3_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV4 Current 116" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_3_ipv')|float(0)|round(1)}} If those are under input_2 it might look something like this then
    ####pv1_power_186: sensor.sunsynk_pv1_186 ####pv2_power_187: sensor.sunsynk_pv2_187 ####pv3_power_188: sensor.sunsynk_pv3_188 ####pv4_power_189: sensor.sunsynk_pv4_189 ####pv1_voltage_109: sensor.sunsynk_pv1_voltage_109 ####pv1_current_110: sensor.sunsynk_pv1_current_110 ####pv2_voltage_111: sensor.sunsynk_pv2_voltage_111 ####pv2_current_112: sensor.sunsynk_pv2_current_112 ####pv3_voltage_113: sensor.sunsynk_pv3_voltage_113 ####pv3_current_114: sensor.sunsynk_pv3_current_114 ####pv4_voltage_115: sensor.sunsynk_pv4_voltage_115 ####pv4_current_116: sensor.sunsynk_pv4_current_116 - sensor: - name: "Sunsynk Daily PV 108" state: > {{state_attr('sensor.sunsynk_input', 'etoday')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV1 186" state: > {{state_attr('sensor.sunsynk_input', 'pv1')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV2 187" state: > {{state_attr('sensor.sunsynk_input', 'pv2')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV3 188" state: > {{state_attr('sensor.sunsynk_input_2', 'pv1')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV4 188" state: > {{state_attr('sensor.sunsynk_input_2', 'pv2')|float(0)|round(0)}} - sensor: - name: "Sunsynk PV1 Voltage 109" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_0_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV1 Current 110" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_0_ipv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV2 Voltage 111" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_1_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV2 Current 112" state: > {{state_attr('sensor.sunsynk_input', 'pvIV_1_ipv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV3 Voltage 113" state: > {{state_attr('sensor.sunsynk_input_2', 'pvIV_0_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV3 Current 114" state: > {{state_attr('sensor.sunsynk_input_2', 'pvIV_0_ipv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV4 Voltage 115" state: > {{state_attr('sensor.sunsynk_input_2', 'pvIV_1_vpv')|float(0)|round(1)}} - sensor: - name: "Sunsynk PV4 Current 116" state: > {{state_attr('sensor.sunsynk_input_2', 'pvIV_1_ipv')|float(0)|round(1)}} Again I'm not sure what your actual attributes will be, perhaps post a screenshot of the sensors from the developer tool so we can assist you better with the actual config.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.