Skip to content

Commit

Permalink
add FAQ to support page (#1459)
Browse files Browse the repository at this point in the history
Co-authored-by: Denis Oliana <[email protected]>
  • Loading branch information
DOliana and DOliana authored Jan 5, 2025
1 parent 88b0d23 commit 9df0d17
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion docs/support.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,40 @@
Support
# Support
=======

- [General](#general)
- [FAQ](#faq)
- [too many notifications in home assistant](#too-many-notifications-in-home-assistant)

## General

If you need help, check out our [forum](https://github.com/lbbrhzn/ocpp/discussions) or submit an [issue](https://github.com/lbbrhzn/ocpp/issues).

## FAQ

### too many notifications in home assistant

The OCPP sends a notification when the charger is rebooted. This can be due to a bad network connection. The notifications can be managed with automations in home assistant. (see https://github.com/lbbrhzn/ocpp/discussions/938)

Example:

```
trigger:
- platform: persistent_notification
update_type:
- added
notification_id: ""
condition:
- condition: template
value_template: "{{ trigger.notification.title | lower == \"ocpp integration\" }}"
action:
- delay:
hours: 0
minutes: 10
seconds: 0
milliseconds: 0
- service: persistent_notification.dismiss
data:
notification_id: "{{ trigger.notification.notification_id }}"
mode: parallel
max: 10
```

0 comments on commit 9df0d17

Please sign in to comment.