mochad_dispatch is a daemon written in Python that translates mochad's tcp-based events to MQTT messages
Project description
mochad_dispatch allows you to connect your X10 security devices (door/window sensors, motion sensors, remotes) to home automation software like OpenHAB, Home Assistant or Domoticz
What exactly does it do?
mochad_dispatch connects to mochad (which reads messages from a USB receiver like the X10 CM15a) and listens for X10 security and button-press messages which now includes power line receipt of control messages (Rx PL) then publishes those to an MQTT broker.
It will automatically reconnect to both mochad and the MQTT broker. However, if a reconnect attempt fails for 60 seconds straight, mochad_dispatch will give up and exit.
Usage description
usage: mochad_dispatch [-h] [-s SERVER] [-f] [-l] [-m MQTT_DISCOVERY] [--cafile CAFILE] [-c HOUSECODES] dispatch_uri
positional arguments:
dispatch_uri dispatch messages to this URI. mqtt://host:port[,user=username,pass=password]
options:
-h, --help show this help message and exit
-s SERVER, --server SERVER
IP/host of server running mochad (default 127.0.0.1)
-f, --foreground Don't fork; run in foreground (for debugging)
-l, --legacy Use legacy X10 topic format (default is HomeAssistant MQTT auto discovery format)
-m MQTT_DISCOVERY, --mqtt-discovery MQTT_DISCOVERY
MQTT discovery for Home Assistant (default homeassistant/5A0uqYZF2_mochad_dispatch)
--cafile CAFILE File containing trusted CA certificates
-c HOUSECODES, --housecodes HOUSECODES
House codes for X10 devices (default ABCDEFGHIJKLMNOP)
How do I use it?
Run mochad_dispatch with a mochad hostname and a MQTT URI
$ mochad_dispatch -s hal9000 mqtt://mqtt.example.com:1883
Then subscribe to the appropriate device topics. The general format is
X10/MOCHAD_HOST/KIND/ADDRESS
where KIND is security for RFSEC alerts and button for button presses from an X10 remote. Note that button events are sent at QoS 0 and without the retain flag so they will not persist.
What about MQTT with TLS?
For TLS support use the ‘–cafile’ option like so
$ mochad_dispatch -s hal9000 --cafile /etc/pki/tls/cert.pem mqtt://mqtt.example.com:8883
What about MQTT username and password?
For username and password use the ‘,user=theusername,pass=thepassword’ appended to the URI like so
$ mochad_dispatch -s hal9000 mqtt://mqtt.example.com:1883,user=theusername,pass=thepassword
What about house code filtering?
You can also add filtering by house code as well using the -c/–housecodes optino and list your codes that you want to use. The default is all A thru P. To use just add -c AD or any other combination of house codes.
$ mochad_dispatch -s hal9000 -c AD mqtt://mqtt.example.com:1883
Home Assistant Integration
Mochad Dispatch has the ability to dynamcally add binary sensors for state of devices. This is the defualt opertaion. These devices can used to trigger other automations.
To switch off the Home Addistant integration through MQTT discovery, use -l/–legacy option.
To change the mqtt category for the MQTT discovery to not use the default “homeassistant” or change the unique id for the node default of 5A0uqYZF2_mochad_dispatch
$ mochad_dispatch -s hal9000 -c AD --mqtt-discovery homeassistant/5A0uqYZF2_mochad_dispatch mqtt://mqtt.example.com:1883
Also, through configuration in Home Assistant for the X10 security devices, you can use configure this under the ‘’’mqtt:’’’ heading. See https://www.home-assistant.io/integrations/alarm_control_panel.mqtt/
mqtt:
- alarm_control_panel:
name: "Alarm Panel"
state_topic: "X10/hal9000/security/C8:21:B2"
value_template: "{{value_json.command}}"
Troubleshooting
mochad_dispatch has been tested with mochad 0.1.17 and Mosquitto 1.4.3
Start by making sure your MQTT broker is relaying X10 messages by subscribing to the topic
X10/#
For example, using the mosquitto broker:
$ mosquitto_sub -v -t X10/#
X10/hal9000/security/C8:21:B2 {"dispatch_time": "2016-02-18T18:36:12.147877+00:00", "func": {"event_type": "contact", "event_state": "normal", "device_type": "DS10A", "delay": "min"}}
X10/hal9000/security/33:8C:30 {"dispatch_time": "2016-02-18T18:30:42.763780+00:00", "func": {"event_state": "normal", "device_type": "DS10A", "delay": "min", "event_type": "contact"}}
Dockerized App
Build the docker image (using the Dockerfile based on the jfloff/alpine-python image) and run the mochad_dispatch command. IMPORTANT: you must use the “-f” flag (to disable background/daemon mode) else the docker container will exit immediately.
$ docker build -t mochad_dispatch . $ docker run -d -it mochad_dispatch mochad_dispatch -s hal9000 mqtt://mqtt.example.com:1883 -f
Dockerized App Full Stack Example
Run (and background) individual Docker containers to provide an MQTT broker, a MOCHAD daemon, and a MOCHAD_DISPATCH instance (assuming you’ve already built an image as described above):
$ docker run -d --name=mosquitto -p 1883:1883 -p 9001:9001 sourceperl/mosquitto $ docker run -d --name=mochad -p 1099:1099 --device "/dev/bus/usb/005" jshridha/mochad:latest $ docker run --link mosquitto --link mochad:hal9000 -d -it mochad_dispatch mochad_dispatch -s hal9000 mqtt://mosquitto:1883 -f
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mochad_dispatch-1.0.0.tar.gz.
File metadata
- Download URL: mochad_dispatch-1.0.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82fa6a530df16c9a1d38e70ecf0298bab9f9003f027894df28439454b3fb7d1c
|
|
| MD5 |
61fa7689e0367872577afc6448bcc48f
|
|
| BLAKE2b-256 |
ea97db29a4903449d3443a704b2af36bf7344f24e53eab222900cf1926bc72f7
|
File details
Details for the file mochad_dispatch-1.0.0-py3-none-any.whl.
File metadata
- Download URL: mochad_dispatch-1.0.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0616304cdd558b9e546c17c97e27adf301550c1d7d4cfda33fd8590ffd1f1635
|
|
| MD5 |
ce4a3b6ad5d2646d087908e327ef6c50
|
|
| BLAKE2b-256 |
01f567f1c7a3db003d1f07d607fc9b90f2d46df72d5c46a03e726b5efd29ab65
|