You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: models/Properties.yaml
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,25 +3,37 @@ type: object
3
3
x-tags:
4
4
- Claims
5
5
description: ''
6
+
examples: []
6
7
properties:
7
8
state:
8
9
$ref: ./EvseState.yaml
9
10
charge_current:
10
11
type: integer
11
12
minimum: 0
13
+
description: Specify the active charge current in Amps
12
14
max_current:
13
15
type: integer
14
16
minimum: 0
17
+
description: Dynamically alter the max current while still allowing other claims to very the current via `charge_current` that can not exceede this value. This is primerialy designed for load sharing situations while still allowing things like PV divert to work so the charge current is the minimum of `charge_current` <= `max_current` <= configured soft limit <= hard coded limit
15
18
energy_limit:
16
19
type: integer
17
20
minimum: 0
21
+
format: int32
22
+
description: |-
23
+
Stop the charge after `energy_limit` Wh of energy have been transfered.
24
+
25
+
> Note: Not currently implemented
18
26
time_limit:
19
27
type: integer
20
28
minimum: 0
29
+
format: int32
30
+
description: |-
31
+
Stop the charge after the duration of the charging session has exceeded `time_limit` seconds
32
+
33
+
> Note: Not currently implemented
21
34
auto_release:
22
35
type: boolean
23
36
description: |
24
37
`true` if the manual override is auto-released when the vehicle is
25
38
disconnected, `false` if manual override will persist after vehicle
0 commit comments