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. |