mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-28 05:46:48 +00:00

* Update Modbus component configuration variable Update style of Modbus component (all the 4 files) documentation to follow new configuration variables description. * Update modbus.markdown * Update binary_sensor.modbus.markdown * Tweak fix * Tweak round 2 😛 * ✏️ Tweak round 3
112 lines
2.6 KiB
Markdown
112 lines
2.6 KiB
Markdown
---
|
|
layout: page
|
|
title: "Modbus Switch"
|
|
description: "Instructions on how to integrate Modbus switches into Home Assistant."
|
|
date: 2015-08-30 23:38
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: modbus.png
|
|
ha_category: Switch
|
|
ha_release: pre 0.7
|
|
ha_iot_class: "Local Push"
|
|
---
|
|
|
|
|
|
The `modbus` switch platform allows you to control [Modbus](http://www.modbus.org/) coils or registers.
|
|
|
|
## {% linkable_title Configuration %}
|
|
|
|
To use your Modbus switches in your installation, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
switch:
|
|
platform: modbus
|
|
slave: 1
|
|
coils:
|
|
- name: Switch1
|
|
slave: 1
|
|
coil: 13
|
|
- name: Switch2
|
|
slave: 2
|
|
coil: 14
|
|
registers:
|
|
- name: Register1
|
|
slave: 1
|
|
register: 11
|
|
command_on: 1
|
|
command_off: 0
|
|
```
|
|
|
|
{% configuration %}
|
|
coils:
|
|
description: A list of relevant coils to read from/write to.
|
|
required: false
|
|
type: map
|
|
keys:
|
|
slave:
|
|
description: The number of the slave (can be omitted for tcp and udp Modbus).
|
|
required: true
|
|
type: integer
|
|
name:
|
|
description: Name of the switch.
|
|
required: true
|
|
type: string
|
|
coil:
|
|
description: Coil number.
|
|
required: true
|
|
type: integer
|
|
register:
|
|
description: A list of relevant registers to read from/write to.
|
|
required: false
|
|
type: map
|
|
keys:
|
|
slave:
|
|
description: The number of the slave (can be omitted for tcp and udp Modbus).
|
|
required: true
|
|
type: integer
|
|
name:
|
|
description: Name of the switch.
|
|
required: true
|
|
type: string
|
|
register:
|
|
description: Register number.
|
|
required: true
|
|
type: integer
|
|
command_on:
|
|
description: Value to write to turn on the switch.
|
|
required: true
|
|
type: integer
|
|
command_off:
|
|
description: Value to write to turn off the switch.
|
|
required: true
|
|
type: integer
|
|
verify_state:
|
|
description: Define if is possible to readback the status of the switch.
|
|
required: false
|
|
default: True
|
|
type: boolean
|
|
verify_register:
|
|
description: Register to readback.
|
|
required: false
|
|
default: same as register
|
|
type: string
|
|
register_type:
|
|
description: Modbus register types are holding or input.
|
|
required: false
|
|
default: holding
|
|
type: string
|
|
state_on:
|
|
description: Register value when switch is on.
|
|
required: false
|
|
default: same as command_on
|
|
type: integer
|
|
state_off:
|
|
description: Register value when switch is off.
|
|
required: false
|
|
default: same as command_off
|
|
type: integer
|
|
{% endconfiguration %}
|