-
Notifications
You must be signed in to change notification settings - Fork 12
/
select.yaml
89 lines (79 loc) · 2.72 KB
/
select.yaml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# version: 2021.12.19
# author: Martin Kraemer, mk.maddin@gmail.com
# description: YAML configuration file - holding predefined entities
# see: https://github.com/goecharger/go-eCharger-API-v2/blob/main/apikeys-de.md
select:
# - id: <name of the charger prop to read - this ALWAYS has to be a property, not attribute>
# options: <id of the enum attribute which contains the options as values (not keys!) - this ALWAYS has to be a property, not attribute>
# <alternative: dict with enum for options>
# uid: <optional: unique ID postfix - required if mutliple entities wiht same <id> value exist>
# name: <optional: name of the switch within HA>
# description: <optional: key within HA>
# icon: <optional: key within HA>
# enabled: <optional: if set to False entity is by default disabled>
# entity_category: <optional: key within HA>
- id: acs
name: "Access Control"
options:
0: "Open"
1: "Authentication Required"
description: "Access control user setting"
icon: "mdi:access-point-check"
entity_category: config
- id: awc
name: "Awattar Country"
options:
0: "Austria"
1: "Germany"
description: "Lumina Strom/aWattar country"
icon: "mdi:map-marker"
entity_category: config
# IN FIRMWARE < 38.5 this was a switch (ON/OFF) value
# IN FIRMWARE >= 38.5 this is a select (Always locked/Locked when car is connected/Never locked) value
- id: bac
name: "Lock level selection"
options:
0: "Always locked"
1: "Locked when car is connected"
# 2: "Unknown Value"
3: "Never locked"
description: "Locks the button on the device so that changing the current level is not possible"
icon: "mdi:account-cancel"
- id: lmo
options: lmoValues
name: "Charging Mode"
description: "Charging mode Default, Eco or Next Trip"
icon: "mdi:leaf"
- id: lot
name: "Load Balancing"
options:
0: "Static"
1: "Dynamic"
description: "Load Balancing Type"
icon: "mdi:scale-balance"
enabled: False
entity_category: config
- id: psm
name: "Phase Switch"
options:
0: "Auto"
1: "1 Phase"
2: "3 Phases"
description: "Choose how the charger switches phases"
icon: "mdi:car-3-plus"
entity_category: config
- id: tds
name: "Daylight Saving"
options:
0: "None"
1: "EuropeanSummerTime"
2: "UsDaylightTime"
description: "Timezone daylight saving mode"
icon: "mdi:map-clock"
entity_category: config
- id: ust
options: ustValues
name: "Cable unlock"
description: "Lock cable when the car is connected (Normal), while the car is charging (AutoUnlock) or (AlwaysLock)"
icon: "mdi:lock-outline"
entity_category: config