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: docs/mqtt.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,9 @@ Claim & override properties can be set independantly. Sending json with only som
40
40
To remove a selected claim/override property, just send "clear" as property parameter ( i.e. `<base-topic>/claim/set {"charge_current": "clear"}` )
41
41
42
42
Scheduler data:
43
-
`<base-topic>/scheduler/` : get scheduler data ([json data]
44
-
`<base-topic>/scheduler/set <json data>` : set/update schedules ( data as refered from API: https://openevse.stoplight.io/docs/openevse-wifi-v4/e87e6f3f90787-batch-update-schedule )
45
-
`<base-topic>/scheduler/clear <id> :`remove related event
43
+
`<base-topic>/schedule/` : get scheduler data ([json data]
44
+
`<base-topic>/schedule/set <json data>` : set/update schedules ( data as refered from API: https://openevse.stoplight.io/docs/openevse-wifi-v4/e87e6f3f90787-batch-update-schedule )
45
+
`<base-topic>/schedule/clear <id> :`remove related event
46
46
47
47
Limit:
48
48
`<base-topic>/limit/` : get limit data ([json data]
Copy file name to clipboardExpand all lines: models/Config.yaml
+34-1Lines changed: 34 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ x-examples:
28
28
- https
29
29
ssid: wibble_ext
30
30
pass: _DUMMY_PASSWORD
31
+
ap_ssid: openevse-2343
32
+
ap_pass: _DUMMY_PASSWORD
31
33
lang: en
32
34
www_username: ''
33
35
www_password: ''
@@ -58,6 +60,7 @@ x-examples:
58
60
ocpp_chargeBoxId: ''
59
61
ocpp_authkey: ''
60
62
ohm: ''
63
+
divert_type: -1
61
64
divert_PV_ratio: 1.1
62
65
divert_attack_smoothing_time: 20
63
66
divert_decay_smoothing_time: 200
@@ -66,12 +69,14 @@ x-examples:
66
69
current_shaper_min_pause_time: 300
67
70
current_shaper_data_maxinterval: 120
68
71
current_shaper_smoothing_time: 60
72
+
vehicle_data_src: 0
69
73
tesla_access_token: _DUMMY_PASSWORD
70
74
tesla_refresh_token: _DUMMY_PASSWORD
71
75
tesla_created_at: 2479357952
72
76
tesla_expires_in: 3888000
73
77
tesla_vehicle_id: '142960157278'
74
78
led_brightness: 51
79
+
scheduler_start_window: 60
75
80
flags: 115467
76
81
emoncms_enabled: true
77
82
mqtt_enabled: true
@@ -89,9 +94,12 @@ x-examples:
89
94
ocpp_auth_auto: true
90
95
ocpp_idtag: '0E000000'
91
96
ocpp_auth_offline: true
97
+
rfid_enabled: false
92
98
mqtt_protocol: mqtt
93
-
charge_mode: fast
94
99
is_threephase: false
100
+
wizard_passed: false
101
+
default_state: false
102
+
charge_mode: fast
95
103
x-tags:
96
104
- Config
97
105
properties:
@@ -170,6 +178,12 @@ properties:
170
178
pass:
171
179
type: string
172
180
minLength: 1
181
+
ap_ssid:
182
+
type: string
183
+
minLength: 1
184
+
ap_pass:
185
+
type: string
186
+
minLength: 1
173
187
www_username:
174
188
type: string
175
189
www_password:
@@ -245,8 +259,12 @@ properties:
245
259
type: string
246
260
ocpp_auth_offline:
247
261
type: boolean
262
+
rfid_enabled:
263
+
type: boolean
248
264
ohm:
249
265
type: string
266
+
divert_type:
267
+
type: number
250
268
divert_PV_ratio:
251
269
type: number
252
270
divert_attack_smoothing_time:
@@ -255,6 +273,10 @@ properties:
255
273
type: number
256
274
divert_min_charge_time:
257
275
type: number
276
+
current_shaper_max_pwr:
277
+
type: number
278
+
vehicle_data_src:
279
+
type: number
258
280
tesla_access_token:
259
281
type: string
260
282
minLength: 1
@@ -309,3 +331,14 @@ properties:
309
331
The maximum number of seconds to randomly add/subtract from the a scheduled charge start time, eg a value of 600 will adjust the start time my +/- 10 minutes. This is to help prevent large syncrinised loads when multiple verchiles start charging at the same time.
310
332
is_threephase:
311
333
type: boolean
334
+
description: |
335
+
Needs to be enabled if charging with 3 phases setup for proper calculations
336
+
wizard_passed:
337
+
type: boolean
338
+
description: |
339
+
define if wizard has been passed or not
340
+
default_state:
341
+
type: boolean
342
+
description: |
343
+
OpenEVSE default state when no claims are running ( 0: disabled | 1: active)
0 commit comments