Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

2.0 KiB

title, description, ha_category, ha_release, ha_iot_class, redirect_from
title description ha_category ha_release ha_iot_class redirect_from
Telnet Switch Instructions on how to integrate telnet switches into Home Assistant.
Switch
0.54 Local Polling
/components/switch.telnet/

The telnet switch platform allows you to control devices with telnet commands.

To enable this switch, add the following lines to your configuration.yaml file:

{% raw %}

# Example configuration.yaml entry
switch:
  platform: telnet
  switches:
    projector:
      resource: THE_IP_ADDRESS
      port: 4002
      command_on: "PWR ON"
      command_off: "PWR OFF"
      command_state: "PWR?"
      value_template: '{{ value == "PWR=01" }}'

{% endraw %}

{% configuration %} switches: description: The array that contains all switches. required: true type: list keys: identifier: description: Name of the switch as slug. Multiple entries are possible. required: true type: list keys: resource: description: Host name or IP address of the device. required: true type: string port: description: Port to connect to. required: false default: 23 type: integer command_on: description: Command to turn device on. required: true type: string command_off: description: Command to turn device off. required: true type: string command_state: description: Command to determine the state of the switch. If not defined the switch will assume successful state changes. required: false type: string value_template: description: The template evaluating to true will indicate that the switch is on. required: false type: template name: description: The name used to display the switch in the frontend. required: false type: string {% endconfiguration %}