Generic Output Switch

The output switch platform allows you to use any output component as a switch.

../../_images/output-ui1.png
# Example configuration entry
output:
  - platform: gpio
    pin: 25
    id: 'generic_out'
switch:
  - platform: output
    name: "Generic Output"
    output: 'generic_out'

Configuration variables:

  • output (Required, ID): The ID of the output component to use.

  • name (Required, string): The name for the switch.

  • id (Optional, ID): Manually specify the ID used for code generation.

  • All other options from Switch.

See Also