Replies: 4 comments 12 replies
-
I found out it is possible to disable the inverter by using grottserver. You will find some info in this thread After setting up grott and grottserver. You are able to send register commands to your inverter. My inverter, and I think most of the inverters out there, user register 3 to set an export limit. You can set this to any value between 0 and 100 to limit your export percentage. I have made some rest_commands calling grottserver in home assistant to start and stop exporting via automations based on the energy price. |
Beta Was this translation helpful? Give feedback.
-
Where did you read about register 3? For my SPH inverter the register that defines the export rate is 1070 although that probably only works when you set it to Grid first (I haven't tried stopping exports as I get paid in the UK for whatever I export). |
Beta Was this translation helpful? Give feedback.
-
Facing a similar question. I have a battery that I'd like to fill first before starting any export to grid. So I need to fetch the battery state of charge and after 90% set export limit enable and disable when it drops below 90% again. It's strange that the official UI doesn't allow setting this up. Even in Load first mode it will happily export from the battery and drain it despite there still being load. Supposedly a Idle/Charge mode exists when digging into the hidden UI elements, but it's not documented anywhere what exactly that does. |
Beta Was this translation helpful? Give feedback.
-
I do g know why, but it worked somehow today. Thanks for the pointers so far!Op 15 mei 2024 om 11:01 heeft Richard Ebbers ***@***.***> het volgende geschreven:
Add this to to your configuration.yaml in home assitant
rest_command:
turn_off_solar:
url: "http://{ipgrowattserver}:5782/inverter?inverter={inverterid}&command=register®ister=03&value=0"
method: put
turn_on_solar:
url: "http://{ipgrowattserver}:5782/inverter?inverter={inverterid}&command=register®ister=03&value=100"
method: put
The automation i am using to turn off the inverter:
alias: DisableInverter
description: ""
trigger:
- platform: state
entity_id:
- sensor.electricity_price_xxx
action:
- if:
- alias: If negative energy price
condition: numeric_state
entity_id: sensor.electricity_price_xxx
below: 0
then:
- alias: Disable inverter
service: rest_command.turn_off_solar
data: {}
else:
- alias: Enable inverter
service: rest_command.turn_on_solar
data: {}
mode: single
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
With the utility providers trying to oppose more and more measures to let the PV-panel owners pay for feeding produced energy to the grid, I was wondering if it is possible to use Grott to configure the inverter to limit feed or stop completely.
It would be nice if I could configure automation in HASS which instructs Grott to limit feed or turn off the inverter.
Beta Was this translation helpful? Give feedback.
All reactions