Skip to content

Commit 9df0d17

Browse files
authored
add FAQ to support page (#1459)
Co-authored-by: Denis Oliana <[email protected]>
1 parent 88b0d23 commit 9df0d17

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

docs/support.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,40 @@
1-
Support
1+
# Support
22
=======
33

4+
- [General](#general)
5+
- [FAQ](#faq)
6+
- [too many notifications in home assistant](#too-many-notifications-in-home-assistant)
7+
8+
## General
9+
410
If you need help, check out our [forum](https://github.com/lbbrhzn/ocpp/discussions) or submit an [issue](https://github.com/lbbrhzn/ocpp/issues).
11+
12+
## FAQ
13+
14+
### too many notifications in home assistant
15+
16+
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)
17+
18+
Example:
19+
20+
```
21+
trigger:
22+
- platform: persistent_notification
23+
update_type:
24+
- added
25+
notification_id: ""
26+
condition:
27+
- condition: template
28+
value_template: "{{ trigger.notification.title | lower == \"ocpp integration\" }}"
29+
action:
30+
- delay:
31+
hours: 0
32+
minutes: 10
33+
seconds: 0
34+
milliseconds: 0
35+
- service: persistent_notification.dismiss
36+
data:
37+
notification_id: "{{ trigger.notification.notification_id }}"
38+
mode: parallel
39+
max: 10
40+
```

0 commit comments

Comments
 (0)