Add integration for Lektrico (#30221)

* Add integration for Lektrico

* Update source/_integrations/lektrico.markdown

Co-authored-by: Franck Nijhof <frenck@frenck.nl>

* Update source/_integrations/lektrico.markdown

Co-authored-by: Franck Nijhof <frenck@frenck.nl>

* Add integration for Lektrico

* Remove extra blank lines.

* Update ha_release and delete ha_quality_scale.

* tiny tweak

* Add sensors description.

* Add units to sensors.

* Remove enum type.

* Update description for energy sensor.

---------

Co-authored-by: mtarjoianu <mihaela_tarjoianu@yahoo.com>
Co-authored-by: mtarjoianu <50733603+mtarjoianu@users.noreply.github.com>
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com>
This commit is contained in:
Lektri.co 2024-09-09 16:39:13 +03:00 committed by GitHub
parent 7eeaa05c82
commit 55d4eb3cba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 80 additions and 0 deletions

View File

@ -451,6 +451,7 @@ source/_integrations/ld2410_ble.markdown @930913
source/_integrations/leaone.markdown @bdraco
source/_integrations/led_ble.markdown @bdraco
source/_integrations/legrand.markdown @cgtobi
source/_integrations/lektrico.markdown @lektrico
source/_integrations/leviton_z_wave.markdown @home-assistant/z-wave
source/_integrations/lg_netcast.markdown @Drafteed @splinter98
source/_integrations/lidarr.markdown @tkdrob

View File

@ -0,0 +1,79 @@
---
title: Lektrico Charging Station
description: Instructions on how to integrate a Lektrico Chargering Station with Home Assistant.
ha_category:
- Sensor
ha_release: "2024.10"
ha_iot_class: Local Polling
ha_config_flow: true
ha_codeowners:
- '@lektrico'
ha_domain: lektrico
ha_zeroconf: true
ha_platforms:
- sensor
---
The **Lektrico Charging Station** integration integrates your [Lektrico Charging Station](https://lektri.co) into your Home Assistant and allows you to monitor it.
The Lektrico Charging Station device will be added as a sensor in Home Assistant.
{% include integrations/config_flow.md %}
## Sensors
Sensors available in the library:
### Single-phase charger
| Condition | Unit | Description |
| :------------------ | :--- | :-------------------------------------------------------- |
| state | | State of the charger. |
| charging_time | s | Indicates the current session charging time. |
| power | kW | Current instant power. |
| energy | kWh | Total charged energy for the current charging session. |
| temperature | °C | Board temperature. |
| lifetime_energy | kWh | Total charged energy since installation. |
| installation_current| A | Current value [A] to be limited by software. |
| limit_reason | | Current limit reason. |
| voltage | V | Measured voltage. |
| current | A | Measured current. |
### Three-phase charger
| Condition | Unit | Description |
| :------------------ | :--- | :-------------------------------------------------------- |
| state | | State of the charger. |
| charging_time | s | Indicates the current session charging time. |
| power | kW | Current instant power. |
| energy | kWh | Total charged energy for the current charging session. |
| temperature | °C | Board temperature. |
| lifetime_energy | kWh | Total charged energy since installation. |
| installation_current| A | Current value [A] to be limited by software. |
| limit_reason | | Current limit reason. |
| voltage_l1 | V | Measured voltage on L1. |
| voltage_l2 | V | Measured voltage on L2. |
| voltage_l3 | V | Measured voltage on L3. |
| current_l1 | A | Measured current on L1. |
| current_l2 | A | Measured current on L2. |
| current_l3 | A | Measured current on L3. |
### Single-phase energy meter
| Condition | Unit | Description |
| :------------------ | :--- | :-------------------------------------------------------- |
| breaker_current | A | Main breaker current. |
| power | kW | Measured active power. |
| pf | | Power factor. |
### Three-phase energy meter
| Condition | Unit | Description |
| :------------------ | :--- | :-------------------------------------------------------- |
| breaker_current | A | Main breaker current. |
| power_l1 | kW | Measured active power on L1. |
| power_l2 | kW | Measured active power on L2. |
| power_l3 | kW | Measured active power on L3. |
| pf_l1 | | Power factor on L1. |
| pf_l2 | | Power factor on L2. |
| pf_l3 | | Power factor on L3. |