mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 23:06:58 +00:00
🚜 Merges/Redirect qwikswitch component pages (#8512)
This commit is contained in:
parent
078cb34004
commit
a4b0be2e85
@ -1,18 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "QwikSwitch Binary Sensor"
|
||||
description: "Instructions on how to integrate Qwikswitch dimmers and relays as sensors into Home Assistant."
|
||||
date: 2016-05-04 00:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: qwikswitch.png
|
||||
ha_category: Sensor
|
||||
ha_iot_class: "Local Push"
|
||||
ha_release: "0.68"
|
||||
---
|
||||
|
||||
The `qwikswitch` binary_sensor platform allows you to use your [QwikSwitch](http://www.qwikswitch.co.za/) sensors within Home Assistant.
|
||||
|
||||
The platform is configured through the [QwikSwitch component](/components/qwikswitch/).
|
@ -1,19 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "QwikSwitch Light"
|
||||
description: "Instructions on how to integrate Qwikswitch dimmers and relays as lights into Home Assistant."
|
||||
date: 2016-05-04 00:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: qwikswitch.png
|
||||
ha_category: Light
|
||||
ha_iot_class: "Local Push"
|
||||
ha_release: "0.20"
|
||||
---
|
||||
|
||||
|
||||
The `qwikswitch` light platform allows you to control your [QwikSwitch](http://www.qwikswitch.co.za/) relays and dimmers as lights from within Home Assistant.
|
||||
|
||||
The platform is configured through the [QwikSwitch component](/components/qwikswitch/).
|
@ -8,13 +8,30 @@ comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: qwikswitch.png
|
||||
ha_category: Hub
|
||||
ha_category:
|
||||
- Hub
|
||||
- Binary Sensor
|
||||
- Light
|
||||
- Sensor
|
||||
- Switch
|
||||
featured: false
|
||||
ha_release: "0.20"
|
||||
redirect_from:
|
||||
- /components/binary_sensor.qwikswitch/
|
||||
- /components/light.qwikswitch/
|
||||
- /components/sensor.qwikswitch/
|
||||
- /components/switch.qwikswitch/
|
||||
---
|
||||
|
||||
The `qwikswitch` component is the main component to integrate various [QwikSwitch](http://www.qwikswitch.co.za/) devices with Home Assistant. The integration requires the QSUSB Modem device and connects to the QS Mobile application.
|
||||
|
||||
There is currently support for the following device types within Home Assistant:
|
||||
|
||||
- Binary Sensor
|
||||
- Light
|
||||
- Sensor
|
||||
- Switch
|
||||
|
||||
The `qwikswitch` component discovers all devices from QS Mobile. Currently, Relays and LED dimmers are discovered in Home Assistant. Relay devices are [lights](/components/light.qwikswitch/) by default, and can be configured as [switches](/components/switch.qwikswitch/).
|
||||
|
||||
{% linkable_title Configuration %}
|
||||
@ -26,7 +43,7 @@ qwikswitch:
|
||||
```
|
||||
|
||||
{% configuration %}
|
||||
url:
|
||||
url:
|
||||
description: The URL including the port of your QwikSwitch hub.
|
||||
required: true
|
||||
type: string
|
||||
@ -45,14 +62,14 @@ switches:
|
||||
required: false
|
||||
type: list
|
||||
sensors:
|
||||
description: A dictionary of sensors.
|
||||
description: A dictionary of sensors.
|
||||
required: false
|
||||
type: list
|
||||
keys:
|
||||
name:
|
||||
description: The sensor name from which the entity_id will be derived.
|
||||
required: true
|
||||
id:
|
||||
id:
|
||||
description: A QS_Id
|
||||
required: true
|
||||
type: string
|
||||
@ -64,7 +81,7 @@ sensors:
|
||||
- qwikcord (Channel 1 = CTavg, Channel 2 = CTsum)
|
||||
required: true
|
||||
type: string
|
||||
channel:
|
||||
channel:
|
||||
description: The channel of interest. Refer to type above.
|
||||
required: false
|
||||
default: 1
|
||||
@ -98,6 +115,7 @@ automation:
|
||||
The full packet from the QSUSB API will be passed as `data`
|
||||
|
||||
By default events will be fired if the value in the command (cmd) field of the listen packet equals:
|
||||
|
||||
- `TOGGLE` - Normal QwikSwitch Transmitter button
|
||||
- `SCENE EXE` - QwikSwitch Scene Transmitter buttons
|
||||
- `LEVEL` - QwikSwitch OFF Transmitter buttons
|
||||
@ -108,7 +126,7 @@ On some QS Mobile servers button events are only generated for switches added to
|
||||
|
||||
### {% linkable_title Qwikswitch Sensors %}
|
||||
|
||||
The sensor configuration is a list of sensors. Depending on the type of sensor, it will be a sensor or binary_sensor.
|
||||
The sensor configuration is a list of sensors. Depending on the type of sensor, it will be a sensor or binary_sensor.
|
||||
|
||||
Example sensor configuration:
|
||||
|
||||
@ -128,3 +146,9 @@ qwikswitch:
|
||||
channel: 2
|
||||
type: imod
|
||||
```
|
||||
|
||||
### {% linkable_title Switch %}
|
||||
|
||||
The `qwikswitch` platform allows you to control your [QwikSwitch](http://www.qwikswitch.co.za/) relays as switches from within Home Assistant.
|
||||
|
||||
If the device name in the QS Mobile application ends with `Switch` it will be created as a switch, otherwise as a light.
|
@ -1,18 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "QwikSwitch Sensor"
|
||||
description: "Instructions on how to integrate Qwikswitch dimmers and relays as sensors into Home Assistant."
|
||||
date: 2016-05-04 00:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: qwikswitch.png
|
||||
ha_category: Sensor
|
||||
ha_iot_class: "Local Push"
|
||||
ha_release: "0.67"
|
||||
---
|
||||
|
||||
The `qwikswitch` sensor platform allows you to use your [QwikSwitch](http://www.qwikswitch.co.za/) sensors in Home Assistant.
|
||||
|
||||
The platform is configured through the [QwikSwitch component](/components/qwikswitch/).
|
@ -1,20 +0,0 @@
|
||||
---
|
||||
layout: page
|
||||
title: "QwikSwitch Switch"
|
||||
description: "Instructions on how to integrate QwikSwitch relays into Home Assistant."
|
||||
date: 2016-05-04 00:00
|
||||
sidebar: true
|
||||
comments: false
|
||||
sharing: true
|
||||
footer: true
|
||||
logo: qwikswitch.png
|
||||
ha_category: Switch
|
||||
ha_iot_class: "Local Push"
|
||||
ha_release: "0.20"
|
||||
---
|
||||
|
||||
The `qwikswitch` platform allows you to control your [QwikSwitch](http://www.qwikswitch.co.za/) relays as switches from within Home Assistant.
|
||||
|
||||
If the device name in the QS Mobile application ends with `Switch` it will be created as a switch, otherwise as a [light](/components/light.qwikswitch/).
|
||||
|
||||
The platform is configured through the [QwikSwitch component](/components/qwikswitch/).
|
Loading…
x
Reference in New Issue
Block a user