From 55d4eb3cba892cd6567eda47fb7b2e41f3fbccfd Mon Sep 17 00:00:00 2001 From: "Lektri.co" <137074859+Lektrico@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:39:13 +0300 Subject: [PATCH] Add integration for Lektrico (#30221) * Add integration for Lektrico * Update source/_integrations/lektrico.markdown Co-authored-by: Franck Nijhof * Update source/_integrations/lektrico.markdown Co-authored-by: Franck Nijhof * 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 Co-authored-by: mtarjoianu <50733603+mtarjoianu@users.noreply.github.com> Co-authored-by: Franck Nijhof Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> --- CODEOWNERS | 1 + source/_integrations/lektrico.markdown | 79 ++++++++++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 source/_integrations/lektrico.markdown diff --git a/CODEOWNERS b/CODEOWNERS index c0c6c5e75ed..23e63a7f9d1 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -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 diff --git a/source/_integrations/lektrico.markdown b/source/_integrations/lektrico.markdown new file mode 100644 index 00000000000..14857ea8068 --- /dev/null +++ b/source/_integrations/lektrico.markdown @@ -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. |