Skip to content

Add documentation about SCSGate #182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 1, 2016
Merged
Show file tree
Hide file tree
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
29 changes: 29 additions & 0 deletions source/_components/light.scsgate.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
layout: component
title: "SCSGate light"
description: "Instructions how to integrate SCSGate lights into Home Assistant."
date: 2016-01-31 19:30
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Light
---

The SCSGate device can control lights of the BTicino MyHome system.

To enable SCSGate lights in your installation, add the following to your `configuration.yaml` file:

```yaml
# Example configuration.yaml entry
light:
platform: scsgate
devices:
living_room:
name: Living Room
scs_id: XXXXX
```

Configuration variables:

- **devices** (*Required*): A list of devices with their name to use in the frontend.
30 changes: 30 additions & 0 deletions source/_components/rollershutter.scsgate.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
layout: component
title: "SCSGate Rollershutter"
description: "Instructions how to integrate SCSGate motorized devices into Home Assistant."
date: 2016-01-31 22:16
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Rollershutter
---
The SCSGate device can control motirized roller shutters connected to the BTicino MyHome system.

To enable SCSGate roller shutters in your installation, add the following to your `configuration.yaml` file:

```yaml
# Example configuration.yaml entry
rollershutter:
platform: scsgate
devices:
living_room:
name: Living Room
scs_id: XXXXX
```

Configuration variables:

- **devices** (*Required*): A list of devices with their name to use in the frontend.

**Known limitation:** it is not possible to know the current state of the roller shutter.
33 changes: 33 additions & 0 deletions source/_components/scsgate.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: component
title: "SCSGate"
description: "Instructions how to integrate SCSGate into Home Assistant."
date: 2016-01-31 19:20
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Hub
---

The SCSGate component support the [SCSGate](https://translate.google.com/translate?hl=en&sl=it&tl=en&u=http%3A%2F%2Fguidopic.altervista.org%2Feibscsgt%2Finterface.html) device. This a homebrew device allows to interact with the MyHome system from BTicino/Legrande.

To enable SCSGate in your installation, add the following to your `configuration.yaml` file:

```yaml
# Example configuration.yaml entry
scsgate:
device: PATH_TO_DEVICE
```

Configuration variables:

- **device** (*Required*): The path to your device, e.g. `/dev/ttyACM0`

### How to find the scs_id for your devices

The SCSGate component relies on the [scsgate](https://github.com/flavio/scsgate) python module.

This module provides also a command line tool called `scs-monitor`. This program can be used to find the IDs of your lights, switches and roller shutters and produce the YAML snippet to insert into your `configuration.yaml` file.

For more information checkout [this](http://scsgate.readthedocs.org/en/latest/?badge=latest#creation-of-a-home-assistant-configuration-file) section of `scsgate`'s documentation.
29 changes: 29 additions & 0 deletions source/_components/switch.scsgate.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
layout: component
title: "SCSGate switch"
description: "Instructions how to integrate SCSGate switches into Home Assistant."
date: 2016-01-31 22:15
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Switch
---

The SCSGate device can control switches of the BTicino MyHome system.

To enable SCSGate switches in your installation, add the following to your `configuration.yaml` file:

```yaml
# Example configuration.yaml entry
switch:
platform: scsgate
devices:
living_room:
name: Living Room
scs_id: XXXXX
```

Configuration variables:

- **devices** (*Required*): A list of devices with their name to use in the frontend.