Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions source/_components/qwikswitch.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,32 @@ On some QS Mobile servers button events are only generated for switches added to

### {% linkable_title Qwikswitch Sensors %}

Some Qwikswith devices might support more than one channel per device (i.e. ipmod). The channel can be specified by appending a number to the QS_id. Example sensors configuration:
The sensor configuration is a list of sensors. Each sensor is configured with the following parameters:

- **name** (*Required*): The sensor name from which the entity_id will be derived.
- **id** (*Required*): A QS_Id
- **type** (*Required*): The Qwikswitch sensor type. These could include:
- imod (up to 6 channels)
- door (single channel)
- qwikcord (Channel1 = CTavg, Channel 2 = CTsum)
- **channel** (*Optional, default=1*): The channel of interest. Refer to type above.


Example sensor configuration:

```yaml
qwikswitch:
...
sensors:
door_sensor: '@0dev01'
door2_sensor: '@0dev02.1'
door3_sensor: '@0dev02.2'
- name: door sensor
id: "@id03"
type: door
- name: Imod 1 sensor
id: "@id02"
channel: 1
type: imod
- name: Imod 2 sensor
id: "@id02"
channel: 2
type: imod
```