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

1.9 KiB

title, description, ha_category, ha_release, ha_iot_class, redirect_from
title description ha_category ha_release ha_iot_class redirect_from
Kankun SP3 Wifi Switch Instructions for the Kankun SP3 Wifi switch
Switch
0.36 Local Polling
/components/switch.kankun/

The kankun switch platform allows you to toggle customized Kankun SP3 Wifi switches. Switches are modified to include the json.cgi script to provide an HTTP API. Details of the necessary modifications can be found here (be sure to install the JSON version of the script as linked above).

Configuration

To enable it, add the following lines to your configuration.yaml:

# Example configuration.yaml entry
switch:
  platform: kankun
  switches:
    bedroom_heating:
      host: hostname_or_ipaddr

{% configuration %} switches: description: The array that contains all Kankun switches. required: true type: map keys: identifier: description: Name of the Kankun switch as slug. Multiple entries are possible. required: true type: map keys: host: description: Hostname or IP address of the switch on the local network. required: true type: string name: description: Friendly name of the switch. required: false type: string port: description: HTTP connection port. required: false default: 80 type: integer patch: description: Path of CGI script. required: false default: "/cgi-bin/json.cgi" type: string username: description: Username for basic authentication. required: false type: string password: description: Password for basic authentication. required: false type: string {% endconfiguration %}