Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions source/_integrations/growatt_server.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -161,52 +161,6 @@ If you're experiencing authentication failures or account lockouts:
- To disable: Go to {% my integrations title="**Settings** > **Devices & services**" %}, select the Growatt integration, click the three dots {% icon "mdi:dots-vertical" %} menu, and select **Disable**.
- Re-enable after Home Assistant has fully restarted.

4. **Automate integration management during restarts**: If you continue experiencing account lockouts, you can create an automation to automatically disable and re-enable the integration during Home Assistant restarts:

```yaml
- id: growatt_integration_enable_disable
alias: Growatt integration enable and disable
description: "Temporarily disables the Growatt integration to prevent account lockouts."
triggers:
- trigger: homeassistant
event: start
id: ha_start
- trigger: homeassistant
event: shutdown
id: ha_shutdown
- trigger: event
event_type: homeassistant_stop
id: ha_restart
conditions: []
actions:
- choose:
- alias: Enable Growatt integration
conditions:
- condition: trigger
id: ha_start
sequence:
- delay:
minutes: 10
- action: homeassistant.enable_config_entry
data:
config_entry_id: REPLACE-WITH-YOUR-CONFIG-ENTRY-ID
- alias: Disable Growatt integration
conditions:
- condition: or
conditions:
- condition: trigger
id: ha_shutdown
- condition: trigger
id: ha_restart
sequence:
- action: homeassistant.disable_config_entry
data:
config_entry_id: REPLACE-WITH-YOUR-CONFIG-ENTRY-ID
mode: single
```

Replace `REPLACE-WITH-YOUR-CONFIG-ENTRY-ID` with your actual Growatt integration config entry ID. You can find this ID in {% my integrations title="**Settings** > **Devices & services**" %} by selecting your Growatt integration and checking the URL or developer tools.

## Removing the integration

{% include integrations/remove_device_service.md %}