davidrapan / ha-solarman

⚡ Solarman Stick Logger integration for 🏠 Home Assistant
MIT License
114 stars 25 forks source link

Having troubles configuring Deye inverter #207

Closed RomanLambr closed 1 month ago

RomanLambr commented 1 month ago

Maybe some can help me I added this SOLARMAN to my home assistance for automatically charge battery in depend from forecast weather. Added automatic action, but without any result nothing change on deye dashboard if I run auto or try to set soh parameters from home assistant. maybe I need add any addons or change some in my inverter

CrazyUs3r commented 1 month ago

Which inverter do you have the one from deye

RomanLambr commented 1 month ago

Deye 12 kw sg04lp03

Roman Lambruh +421915529840

+380503727783

пт, 11 жовт. 2024 р. о 23:31 CrazyUs3r @.***> пише:

Which inverter do you have the one from deye

— Reply to this email directly, view it on GitHub https://github.com/davidrapan/ha-solarman/issues/207#issuecomment-2408084273, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFKVG6SJIJOA7GDALKOVXNDZ3AYS5AVCNFSM6AAAAABPZO2DQ2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMBYGA4DIMRXGM . You are receiving this because you authored the thread.Message ID: @.***>

davidrapan commented 1 month ago

You are probably doing something wrong, show me the yaml of automation you are using.

RomanLambr commented 1 month ago

Please write me directly to my mail @.***

I will be very appreciate if you will help me solve it

Roman Lambruh +421915529840

+380503727783

сб, 12 жовт. 2024 р. о 14:34 David Rapan @.***> пише:

You are probably doing something wrong, show me the yaml of automation you are using.

— Reply to this email directly, view it on GitHub https://github.com/davidrapan/ha-solarman/issues/207#issuecomment-2408531592, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFKVG6XHJ2RGK6VXEIPYWY3Z3ECN7AVCNFSM6AAAAABPZO2DQ2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMBYGUZTCNJZGI . You are receiving this because you authored the thread.Message ID: @.***>

RomanLambr commented 1 month ago

Finaly today i found some part solution. If i change number.inverter_program_1_soc manualy from entery - charge parameters in Deye change well. Problem that i can't undarstand how work automatisation, i dont have next sensore - sensor.solcast_pv_forecast_forecast_today, in my entery.

I made copy to Yaml for creating auto.

davidrapan commented 1 month ago

This is my automation:

alias: Inverter Grid Charging Program
mode: single
triggers:
  - at: "03:00:10"
    trigger: time
  - at: "04:00:00"
    trigger: time
  - at: "05:00:00"
    trigger: time
actions:
  - sequence:
      - action: solcast.update_forecasts
        data: {}
      - action: number.set_value
        metadata: {}
        target:
          entity_id: number.inverter_program_1_soc
        data:
          value: "{{ states('sensor.inverter_battery_precharge') }}"

and sensor.inverter_battery_precharge is template sensor which has some if - elif - else statements according to the sensor.solcast_pv_forecast_forecast_today.

RomanLambr commented 1 month ago

and for forecasts use other extension like this,

https://github.com/bjReplay/ha-solcast-solar

for whether forecast,

чт, 17 окт. 2024 г. в 20:43, David Rapan @.***>:

This is my automation:

alias: Inverter Grid Charging Program mode: single triggers:

  • at: "03:00:10" trigger: time
  • at: "04:00:00" trigger: time
  • at: "05:00:00" trigger: time actions:
  • sequence:
    • action: solcast.update_forecasts data: {}
    • action: number.set_value metadata: {} target: entity_id: number.inverter_program_1_soc data: value: "{{ states('sensor.inverter_battery_precharge') }}"

and sensor.inverter_battery_precharge is template sensor which has some if

  • elif - else statements according to the sensor.solcast_pv_forecast_forecast_today.

— Reply to this email directly, view it on GitHub https://github.com/davidrapan/ha-solarman/issues/207#issuecomment-2420132412, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFKVG6RQP3TQ6EQSSNPSUA3Z37ZL3AVCNFSM6AAAAABPZO2DQ2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMRQGEZTENBRGI . You are receiving this because you authored the thread.Message ID: @.***>

--

Roman Lambruh +421915529840

+380503727783

davidrapan commented 1 month ago

Yes I do use solcast integration.