(Created page with "= X10 interface = The X10 interface uses the [https://github.com/glibersat/python-x10 Python X-10] library to talk to the X10 interfaces. While Python X10 does support the CM...") |
(→Configuration) |
||
Line 6: | Line 6: | ||
<pre> | <pre> | ||
[x10] | [x10] | ||
+ | interface=CM11 | ||
device=/dev/ttyUSB0 | device=/dev/ttyUSB0 | ||
switches=A2,A3,B3,B4,B5,B9,B12,B16 | switches=A2,A3,B3,B4,B5,B9,B12,B16 | ||
</pre> | </pre> | ||
+ | |||
= Device types = | = Device types = | ||
Currently only switches are supported for simple on/off. These switches can be used for lamp, appliance, motion detectors, remote control buttons, etc. Dimmer support is planned but has not been implemented. | Currently only switches are supported for simple on/off. These switches can be used for lamp, appliance, motion detectors, remote control buttons, etc. Dimmer support is planned but has not been implemented. |
Contents |
The X10 interface uses the Python X-10 library to talk to the X10 interfaces. While Python X10 does support the CM11/12, CM15, and CM17a interfaces, only the CM11 has been tested and functionality for the others would require minor code changes. Send a message to 'dinki' on the forums or IRC if you are interested in using these other interfaces.
The X10 device driver reads from a configuration file located at /etc/opt/agocontrol/conf.d/x10.conf:
[x10] interface=CM11 device=/dev/ttyUSB0 switches=A2,A3,B3,B4,B5,B9,B12,B16
Currently only switches are supported for simple on/off. These switches can be used for lamp, appliance, motion detectors, remote control buttons, etc. Dimmer support is planned but has not been implemented.
Python X-10 only supports sending X10 commands. This device driver has been given a limited, but functional access to commands received on the X10 interface via RF->Powerline communications. The device driver only recognizes on/off commands received but support for dimmer commands are planned for future releases.