The last message in the map, and it reboots the charger
0108 was the one thing in the MQTT inventory nobody had wired: the device power mode, whose single documented value restarts the charger. It is the only way to reboot a charger that is on neither a CSMS nor the local network — which is most of them — so the cloud transport sends it now, and "reset" reaches it too, since that is what the OCPP path has always called the same act. Nothing waits for a confirmation: the device that would send it is the device rebooting, so the command answers at once and says the charger drops off the cloud for about a minute. The gate is unchanged and now covers both spellings — an explicit confirm plus a password step-up, audited either way. Modbus still refuses, because no register does this, but its refusal now names both transports that can rather than only the CSMS. Both clients already had the reset button and its password prompt; they were hidden in every mode that reads the device, which is why the cloud never showed one. Modbus is now the only mode without it. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
b2d333a63f
commit
4ff6242c8f
@@ -43,7 +43,13 @@ func (s *Server) ankerModbusAction(w http.ResponseWriter, r *http.Request, who *
|
||||
// Actions the register map has no equivalent for. Saying which transport is
|
||||
// missing them beats a bare "unknown action" the caller cannot act on.
|
||||
switch action {
|
||||
case "reset", "unlock", "availability", "trigger", "config":
|
||||
case "reset", "restart":
|
||||
// No register reboots the charger. Both of the other transports can, so
|
||||
// the refusal names them rather than only the CSMS.
|
||||
writeError(w, http.StatusBadRequest,
|
||||
"no register reboots the charger; the local Modbus connection cannot restart it. Switch the control mode to Anker cloud (MQTT) or a CSMS mode to use it.")
|
||||
return
|
||||
case "unlock", "availability", "trigger", "config":
|
||||
writeError(w, http.StatusBadRequest,
|
||||
"\""+action+"\" is an OCPP command; the local Modbus connection cannot send it. Switch the control mode to a CSMS mode to use it.")
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user