Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pipsolar ac_output_active_power #116

Open
unknown1818 opened this issue Mar 24, 2024 · 1 comment
Open

pipsolar ac_output_active_power #116

unknown1818 opened this issue Mar 24, 2024 · 1 comment

Comments

@unknown1818
Copy link

unknown1818 commented Mar 24, 2024

Hi,

Im trying to understand this parameter, its fluctuating as hell, inverter sometimes sending 0Watt sometime 100Watt.

But other real meter showing 80Watt.

Do i need to ignore 0Watt readings and later calculate average?

And what i can see
pipsolar ac_output_active_power

its not total power only for power what comes from power line, this dont add power usage from solar panel
i think the name should be
pipsolar ac_input_active_power

and there is a way to make this rs232 reading faster? there is a time interval?

@unknown1818
Copy link
Author

unknown1818 commented Mar 24, 2024

My config fix:

sensor:
  - platform: template
    sensors:

      falownik_ac_in_moc:
        device_class: energy
        unit_of_measurement: W
        value_template: >
          {% if states('sensor.pipsolar_ac_output_active_power') | int <= 1 %}
           {{ states('sensor.falownik_ac_in_moc') }}
          {% else %}
           {{ states('sensor.pipsolar_ac_output_active_power') | int }}
          {% endif %}

  - platform: statistics
    name: falownik_ac_in_moc_average
    entity_id: sensor.falownik_ac_in_moc
    state_characteristic: median
    sampling_size: 5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant