Update Edimax switch component configuration variable (#6891)

* Update Edimax switch component configuration variable

* ✏️ Added default name
This commit is contained in:
Klaas Schoute 2018-10-17 23:18:58 +02:00 committed by Fabian Affolter
parent 6bccc3a085
commit 75300e2081

View File

@ -24,10 +24,24 @@ switch:
host: 192.168.1.32 host: 192.168.1.32
``` ```
Configuration variables: {% configuration %}
host:
- **host** (*Required*): The IP address of your Edimax switch, eg. `192.168.1.32`. description: "The IP address of your Edimax switch, e.g., `192.168.1.32`."
- **username** (*Optional*): Your username for the Edimax switch. Defaults to `admin`. required: true
- **password** (*Optional*): Your password for the Edimax switch. Defaults to `1234`. type: string
- **name** (*Optional*): The name to use when displaying this switch. username:
description: Your username for the Edimax switch.
required: false
default: admin
type: string
password:
description: Your password for the Edimax switch.
required: false
default: 1234
type: string
name:
description: The name to use when displaying this switch.
required: false
default: Edimax Smart Plug
type: string
{% endconfiguration %}