Custom component to support Metron EV chargers.
A few useful sensors are exported along with services to set charging current, time delay and toggle solar charging
There are 2 different methods of installing the custom component
- Add this repository from HACS->Integrations->Custom repositories.
- Enter https://github.com/OmegaModr/home-assistant-metron-ev and select integration as the type
- Install the latest version
- Restart Home Assistant.
- Install the component from Settings->Integrations. You may have to clear the browser cache to make the Metron integration appear in the list.
- Make sure you have git installed on your machine.
- Navigate to you home assistant configuration folder.
- Create a
custom_components
folder of it does not exist, navigate down into it after creation. - Execute the following command:
git clone https://github.com/OmegaModr/home-assistant-metron-ev.git ev_metron_websockets
To use the services and sensors on lovelace dashboards use the Charger-card at https://github.com/tmjo/charger-card
As a basic starting point use the configuration below to get you started. Change the entity names to your specific ones.
type: custom:charger-card
brand: template
show_leds: true
details:
name:
entity_id: sensor.doma_station_name
attribute: name
status:
entity_id: sensor.doma_station_status
substatus:
entity_id: sensor.doma_solar_charging_enable
currentlimits:
- 0
- 6
- 8
- 12
- 14
- 16
collapsiblebuttons:
group1:
text: Charge rate
icon: mdi:speedometer
group2:
text: Additional info
icon: mdi:information
group3:
visible: false
info_left:
- entity_id: sensor.doma_station_active
text: Online
icon: mdi:connection
- entity_id: sensor.doma_telemetry_signal_present
text: Signal Strength
icon: mdi:signal
group1:
- entity_id: sensor.doma_dinamic_charging_current_limit
text: Current Limit
unit_show: true
service: ev_metron_websockets.set_dynamic_limit
service_data:
current: '#SERVICEVAL#'
device_id: c0f08ebfa4af4d991cca4430a16c028e
- entity_id: sensor.doma_timer_delay
text: Charge Delay
unit_show: false
icon: mdi:clock
service: ev_metron_websockets.set_charger_delay
dropdownitems:
- 0
- 60
- 180
- 240
service_data:
time: '#SERVICEVAL#'
device_id: c0f08ebfa4af4d991cca4430a16c028e
- entity_id: sensor.doma_solar_charging_state
text: Solar Charging
unit_show: false
icon: mdi:solar-power
service: ev_metron_websockets.toggle_solar
type: service
service_data:
device_id: c0f08ebfa4af4d991cca4430a16c028e
group2:
- entity_id: sensor.doma_l1_current
text: L1 Current
unit_show: true
- entity_id: sensor.doma_l2_current
text: L2 Current
unit_show: true
- entity_id: sensor.doma_l3_current
text: L3 Current
unit_show: true
- entity_id: sensor.doma_previous_charge_energy
text: Previous charge
unit_show: true
- entity_id: sensor.doma_solar_surplus_power
text: Solar Surplus
icon: mdi:solar-power
unit_show: true
stats:
default:
- entity_id: sensor.doma_total_charging_power
text: Charge Power
unit_show: true
- entity_id: sensor.doma_this_charge_energy
text: This Charge
unit_show: true
- entity_id: sensor.doma_charging_time
text: Charge Time
show_toolbar: false
entity: sensor.doma_station_name
Configuration is done through in Configuration > Integrations where you first configure the name and ip address of the station.
The basic use of the integrations from the UI should be self-explanatory. The integration defines a number of services that can be used from automations and scripts to control the charger and the charging process. The available services can be found in Home Assistant at Developer tools->Services.
The easiest way to set up services and their parameters is to use the automation editor or the developer tools. However, you can also write the code in plain yaml. The UI will use device_id as target for the services. This is a random string generated internally by HA and is not very user friendly.
Three examples of the services you can call:
service: ev_metron_websockets.toggle_solar
data:
device_id: c06269a64fc9f8f8dc150142f3bde4ce
service: ev_metron_websockets.set_dynamic_limit
data:
current: 12
device_id: c06269a64fc9f8f8dc150142f3bde4ce
service: ev_metron_websockets.set_charger_delay
data:
time: 60
device_id: c06269a64fc9f8f8dc150142f3bde4ce