Added support for GWUYU wallbox AC Charging Station Type 2 7kW monophase #5097
burleanu
started this conversation in
Show and tell
Replies: 0 comments
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.
Hello All,
Together with AI I was able to add support for this unknown charging station that was not appearing at all inside tuya-local.
Now all parameter you see inside the Tuya/SmartLife app appear also inside Home assistant.
What I had to do is create a new file inside custom_components/tuya_local/devices/ (I call it evse32a.yaml) and after decoding with AI all the dps are pesent in "download diagnostic" I was able to make them appear in HA.
Here is the content of the file. Maybe someone can add it to a pull request and become official.
name: AC EV Charging Station
products:
manufacturer: "Generic Tuya / Feyree-like"
model: "EVSE 32A"
entities:
=== Main Controls (RESTORED SLIDERS) ===
name: Charge Current
icon: "mdi:ev-plug-type2"
dps:
type: integer
name: value
unit: A
range:
min: 8
max: 32
step: 1
=== Charging Timers (RESTORED SLIDERS) ===
entity: number
name: Delay Charge Timer
icon: "mdi:hourglass-text"
dps:
type: integer
name: value
unit: h
range:
min: 0
max: 8
step: 1
entity: number
name: Charge Duration Limit
icon: "mdi:timer-outline"
dps:
type: integer
name: value
unit: h
range:
min: 0
max: 8
step: 1
=== Card Swipe - INVERTED MOMENTARY PUSH BUTTON ===
name: Card Swipe / RFID
icon: "mdi:card-account-details"
restore_mode: "always_on"
dps:
type: boolean
name: switch
=== Status Sensors ===
name: Plug Status
class: enum
icon: "mdi:power-plug"
dps:
type: string
name: sensor
mapping:
value: "Disconnected"
value: "Plugged In"
value: "Waiting to Charge"
value: "Charging"
=== Electrical Values ===
entity: sensor
name: Voltage
class: voltage
dps:
type: integer
name: sensor
unit: V
mapping:
entity: sensor
name: Current
class: current
dps:
type: integer
name: sensor
unit: A
mapping:
entity: sensor
name: Power
class: power
dps:
type: integer
name: sensor
unit: kW
mapping:
entity: sensor
name: Session Energy
class: energy
dps:
type: integer
name: sensor
unit: kWh
mapping:
=== Session Time ===
name: Session Time
class: duration
icon: "mdi:clock-outline"
dps:
type: integer
name: sensor
unit: h
mapping:
=== Temperature ===
name: Temperature
class: temperature
icon: "mdi:thermometer"
dps:
type: integer
name: sensor
unit: °C
mapping:
All reactions