You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Paradox Spectra 1738 Serial to Home Assistant MQTT Integration
1
+
# Paradox Spectra 1738 Serial to MQTT
2
2
3
3
This Python script was made to run on Raspberry Pi B+ connected to the serial port of the Paradox Spectra 1738 alarm panel.
4
4
5
-
Usage:
6
-
7
-
docker build -t paradox .
8
-
9
-
docker run -d --network host --device /dev/ttyAMA0:/dev/ttyAMA0 --restart always paradox
5
+
## Running with docker
6
+
* Set the IP address or hostname of your MQTT broker in the file config.yaml
7
+
* Build the image
8
+
`docker build -t paradox2mqtt .`
9
+
* Run the container
10
+
`docker run -d --device /dev/ttyAMA0:/dev/ttyAMA0 --restart=unless-stopped paradox2mqtt`
11
+
12
+
config.yaml can be mounted to /usr/src/app/config.yaml at the run command (`-v $(pwd)/config.yaml:/usr/src/app/config.yaml`) to apply a modified configuration without rebuilding the image.
0 commit comments