Skip to content

RelayMaster switch platform for Home Assistant

License

Notifications You must be signed in to change notification settings

igorguida/switch.relaymaster

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

layout title description date sidebar comments sharing footer
page
RelayMaster Platforms
Instructions how to integrate RelayMaster boards with Home Assistant.
2017-06-14
true
false
true
true

RelayMaster platforms for Home Assistant

These components support Domotika home automation control boards running RelayMaster firmware that exposes /ajax.xml and ioconf.xml.

Work sponsored by Igor Guida.

The relaymaster switch platform allows you to control the relays of a Domotika control board running RelayMaster firmware.

To use your RelayMaster board with configured relays, add the following to your configuration.yaml file:

# Example configuration.yaml entry
switch:
  - platform: relaymaster
    url: http:https://IP_ADDRESS
    username: user
    password: secret

Configuration variables:

  • url (Required): URL of the control board, e.g. http:https://192.168.1.100.
  • username (Required): Username to log into the control board.
  • password (Required): Password to log into the control board.

The relaymaster binary sensor platform allows you to read the digital inputs of a RelayMaster board.

To use your RelayMaster board with configured digital inputs, add the following to your configuration.yaml file:

# Example configuration.yaml entry
binary_sensor:
  - platform: relaymaster
    url: http:https://IP_ADDRESS
    username: user
    password: secret

Configuration variables:

  • url (Required): URL of the control board, e.g. http:https://192.168.1.100.
  • username (Required): Username to log into the control board.
  • password (Required): Password to log into the control board.
  • max_number (Optional): Maximum number of digital inputs on this board (Default: 12).
  • ignore_unused (Optional): Skip inputs that have no name assigned (Default: True).

The relaymaster sensor platform allows you to read the analog inputs of a RelayMaster board.

To use your RelayMaster board with configured analog inputs, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: relaymaster
    url: http:https://IP_ADDRESS
    username: user
    password: secret

Configuration variables:

  • url (Required): URL of the control board, e.g. http:https://192.168.1.100.
  • username (Required): Username to log into the control board.
  • password (Required): Password to log into the control board.
  • base_number (Optional): The number of the last digital input before the analog inputs (Default: 12).
  • ignore_unused (Optional): Skip inputs that have no name assigned (Default: True).

About

RelayMaster switch platform for Home Assistant

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%