-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
config.yaml.template
57 lines (46 loc) · 1.11 KB
/
config.yaml.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# You need to get the akey and token from the EVNotify-App and put them below.
# Then uncomment the car you are using and the type, port and speed-combination
# for your OBD2/CAN-interface.
---
#loglevel: 10 # Debug
system:
shutdown_delay: 10
evnotify:
akey: PUT_AKEY_HERE
token: PUT_TOKEN_HERE
interval: 5
car:
#type: IONIQ_BEV
#type: KONA_EV
#type: NIRO_EV
#type: ZOE_Q210
interval: 1
watchdog:
# DUMMY watchdog module for testing:
#type: DUMMY
# Watchdog with I2C communication
#type: I2C
#i2c_address: 8
#i2c_bus: 1
#thresholds:
# startup: 13.0
# shutdown: 12.6
# emegency: 11.76 # <<< be careful, can completely disable system if set wrong!
# Watchdog using levels on GPIO pins
#type: GPIO
#shutdown_pin: 24
#pup_down: 21 # 21: Pull-Down 22: Pull-Up
dongle:
# Use SpcketCAN:
#type: SocketCAN
#port: can0
#speed: 500000
# Use PiOBD2Hat
#type: PiOBD2Hat
#port: /dev/ttyAMA0
#speed: 115200
# Use ELM327 BT-Adapter
#type: ELM327
#port: /dev/rfcomm0
#speed: 9600
# vim: sw=3 sts=3 expandtab