syssi / esphome-pipsolar

ESPHome component to monitor and control a pipsolar inverter via RS232
Apache License 2.0
78 stars 35 forks source link

Rename `binary_sensor.warnung_low_pv_energy` to `binary_sensor.warning_low_pv_energy` #134

Closed almost-online closed 3 weeks ago

almost-online commented 3 weeks ago

fix typo from warnung to warning

syssi commented 3 weeks ago

Please keep in mind: This is a breaking change for people which are using this binary sensor at the YAML configuration.

You have to migrate from

binary_sensor:
  - platform: pipsolar
    pipsolar_id: inverter0
    warnung_low_pv_energy:
      name: "${name} warnung low pv energy"

to

binary_sensor:
  - platform: pipsolar
    pipsolar_id: inverter0
    warning_low_pv_energy:
      name: "${name} warning low pv energy"