mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-23 18:46:50 +00:00
1.3 KiB
1.3 KiB
title, description, ha_category, ha_iot_class, ha_release, ha_codeowners, ha_domain, ha_platforms, ha_integration_type, ha_config_flow
title | description | ha_category | ha_iot_class | ha_release | ha_codeowners | ha_domain | ha_platforms | ha_integration_type | ha_config_flow | |||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Energenie Power Sockets | Instructions on how to integrate Energenie Power-Strip switches into Home Assistant. |
|
Local Polling | 2024.5 |
|
energenie_power_sockets |
|
device | true |
The Energenie Power-Sockets {% term integration %} allows you to include Energenie USB Power-Sockets into your Home Assistant setup.
{% include integrations/config_flow.md %}
Troubleshooting
If you are running a {% term "Home Assistant Container" %} installation: Depending on your system configuration, it may be necessary to grant explicit user access rights to the USB device by creating an udev rule.
{% details "Creating an udev rule" %}
- Find the vendor_id and product_id of the USB device by calling
lsusb
:
lsusb
#e.g.: Bus 001 Device 005: ID 04b4:fd15 Cypress Semiconductor Corp. Energenie EG-PMS2
- Create an udev rule by calling:
sudo echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="04b4", ATTR{idProduct}=="fd15", MODE="0666"' > /lib/udev/rules.d/60-energenie-usb.rules
sudo udevadm control --reload-rules
sudo udevadm trigger
{% enddetails %}