Skip to content

E3/DC Easy Connect 22kW | Wallbee ECO 22kW | Feature Request für Phases Parameter im GUI #5802

Discussion options

You must be logged in to vote

Ich habe folgende Lösung implementiert, da ich meine Automationen in Home Assistant steuere.

  1. In Home Assitant (z.B. config.yaml) den Sensor für die E3/DC Easy Connect Wallbox konfigurieren:
modbus:
  - name: e3dc
    type: tcp
    host: 192.168.x.x
    port: 502
    sensors:
      - name: state_wallbox01
        data_type: uint16
        address: 40087
        state_class: measurement
        scan_interval: 5
  1. Die Daten vom Sensor auslesen:
binary_sensor:
  - platform: template
    sensors:
      #### Wallbox
      wallbox_available:
        friendly_name: "Wallbox vorhanden und verfügbar"
        value_template: "{{ states('sensor.state_wallbox01')|int|bitwise_and(1) > 0 }}"
      wa…

Replies: 3 comments 5 replies

Comment options

You must be logged in to vote
1 reply
@james777-de
Comment options

Comment options

You must be logged in to vote
4 replies
@james777-de
Comment options

@VolkerK62
Comment options

@james777-de
Comment options

@VolkerK62
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by james777-de
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants