Replies: 1 comment 3 replies
-
basically: best practice is a manually operated switch for two of the 3 phases |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi EVCC team 👋
I'm working on a custom charger setup and would love some input.
⚡ What I'm trying to do
I want to enable phase switching (1p/3p) using a Shelly relay in combination with a Wallbox Pulsar Plus charger. My goal is to:
Use EVCC (not Home Assistant) to decide when to switch phases.
Control phase switching via MQTT to the Shelly.
Continue using the Pulsar Plus as the actual EV charger.
🧩 What I've tried
I've configured a custom charger in evcc.yaml like this:
chargers:
type: custom
status:
source: mqtt
topic: "ev/lader/status"
charging: "charging"
connected: "connected"
disconnected: "disconnected"
enable:
source: mqtt
topic: "ev/lader/enable"
payload: true
payloadOff: false
maxcurrent:
source: mqtt
topic: "ev/lader/setCurrent"
phases1p3p:
source: mqtt
topic: "ev/lader/phaseSwitch"
payloads:
1: "1"
3: "3"
tos: true
But I'm struggling to get this working. EVCC fails to start
🧪 What I'm looking for
✅ Is this setup supported the way I'm attempting it?
📐 Are there known working examples of phases1p3p with type: custom chargers?
🧠 How can I ensure EVCC is the decision-maker on when to switch phases?
🧰 Any best practices for combining template: pulsarplus with external phase switching?
Any help would be greatly appreciated – and thank you for a fantastic open-source project 🙏
Beta Was this translation helpful? Give feedback.
All reactions