-
-
Notifications
You must be signed in to change notification settings - Fork 852
[DRAFT] Support free2move eProWallbox #20743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
@@ -20,7 +20,7 @@ RUN make ui | |||
|
|||
|
|||
# STEP 2 build executable binary | |||
FROM --platform=$BUILDPLATFORM golang:1.24-alpine AS builder | |||
FROM --platform=$BUILDPLATFORM golang:1.24.0-alpine AS builder |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pls revert
charger/eprowallbox.go
Outdated
func (wb *EProWallbox) getGeneralStatus() (string, error) { | ||
b, err := wb.conn.ReadHoldingRegisters(eproRegGeneralStatus, 1) | ||
if err != nil { | ||
return "F", err |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return "F", err | |
return api.StatusNone, err |
charger/eprowallbox.go
Outdated
return "F", err | ||
} | ||
s := binary.BigEndian.Uint16(b) | ||
statusDecodeMap := map[uint16]string{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bitte evcc Stati verwenden
charger/eprowallbox.go
Outdated
} | ||
|
||
if status, ok := statusDecodeMap[s]; ok { | ||
wb.log.TRACE.Printf("OCPP Status: %s", status) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bitte alle trace logs raus- die sind nciht notwendig
Co-authored-by: andig <[email protected]>
Co-authored-by: andig <[email protected]>
…into feature/eprowallbox
Danke fürs schnelle Feedback! Die Wallbox hat einen watchdog, um auf einen Fallback-Current zurückzufallen, wenn HEMS oder in diesem Fall evcc nicht funktioniert, bzw. nicht zyklisch den Watchdog bedient. Gibt es bereits ein anderes Beispiel, wie das bei anderen Wallboxen umgesetzt ist? |
Ja, z. B. alfen oder mennekes-compact |
Implement support for Free2Move eProWallbox ('normal' + 'Move').
Accordingly to modes communication map.
https://www.esolutions.free2move.com/eu/wp-content/uploads/2024/03/eProWallbox-eProWallbox-Move_Modbus-communication-map.V12023-1.pdf
Open points