mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-27 21:36:51 +00:00

* Update Mochad light and switch component configuration variable Update style of Mochad light and switch component documentation to follow new configuration variables description. Related to #6385. * 🚑 Bugfix * ⏪ Undo last change * 🚑 Fix * 🚑 Fix round 2
50 lines
1.2 KiB
Markdown
50 lines
1.2 KiB
Markdown
---
|
|
layout: page
|
|
title: "Mochad Light"
|
|
description: "Instructions on how to integrate X10 Mochad lights into Home Assistant."
|
|
date: 2017-07-14 11:29
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
ha_category: Light
|
|
ha_release: 0.51
|
|
---
|
|
|
|
The `mochad` light platform lets you control an X10 enabled dimmer/light device.
|
|
|
|
|
|
|
|
To enable this sensor, you first have to set up the [mochad component](/components/mochad/) and then add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
light:
|
|
- platform: mochad
|
|
devices:
|
|
- address: a1
|
|
- address: a5
|
|
```
|
|
|
|
{% configuration %}
|
|
address:
|
|
description: The X10 address of the light.
|
|
required: true
|
|
type: string
|
|
name:
|
|
description: The name of the light.
|
|
required: false
|
|
default: x10_light_dev_address
|
|
type: string
|
|
comm_type:
|
|
description: pl (powerline) or rf (radio frequency).
|
|
required: false
|
|
default: pl
|
|
type: string
|
|
brightness_levels:
|
|
description: The number of brightness levels the X10 light device supports. This can either be 32, 64, or 256 (note that the max value sent to the device will be n-1 because it starts at 0).
|
|
required: false
|
|
default: 32
|
|
type: integer
|
|
{% endconfiguration %}
|