home-assistant.io/source/_integrations/anel_pwrctrl.markdown
2024-11-27 18:57:16 +01:00

1.8 KiB

title description ha_category ha_iot_class ha_release ha_domain ha_platforms ha_integration_type related ha_quality_scale
Anel NET-PwrCtrl Instructions on how to integrate ANEL PwrCtrl switches within Home Assistant.
Switch
Local Polling 0.30 anel_pwrctrl
switch
integration
docs title
/docs/configuration/ Configuration file
legacy

The anel_pwrctrl switch platform allows you to control ANEL PwrCtrl devices on firmware 6.x and older. ANEL PwrCtrl devices on firmware 7.x are not supported.

Supported devices (tested):

  • PwrCtrl HUT
  • PwrCtrl Advanced
  • PwrCtrl Advanced Power

To add this platform to your installation, add the following to your {% term "configuration.yaml" %} file. {% include integrations/restart_ha_after_config_inclusion.md %}

# Example configuration.yaml entry
switch:
  - platform: anel_pwrctrl
    host: IP_ADDRESS
    port_recv: PORT
    port_send: PORT
    username: USERNAME
    password: PASSWORD

{% configuration %} host: description: The IP address or hostname of your PwrCtrl device. required: false type: string port_recv: description: The port on which the device receives data. required: true type: integer port_send: description: The port from which the device sends data. required: true type: integer username: description: The username for your device. required: true type: string password: description: The password for your device. required: true type: string {% endconfiguration %}

{% note %} If no host is given the platform will try to auto-discover all devices on the network, that are listening on the given port_recv. {% endnote %}