xComfortMQTT

xComfortMQTT


Keywords
cooper, influxdb, iot, mqtt, xcomfort
License
MIT
Install
pip install xComfortMQTT==1.2.0

Documentation

xComfortMQTT

Travis Release License PyPI

Installing

You can install xComfortMQTT directly from PyPI:

sudo pip3 install -U xComfortMQTT

Config

Insert this snippet to the file /etc/xComfortMQTT.yml:

---
shc:
  host: 192.168.0.2
  username: admin
  password: very-strong-password

mqtt:
  host: 192.168.0.1

Usage

Update /etc/xComfortMQTT.yml and run

xComfortMQTT -c /etc/xComfortMQTT.yml

Systemd

Insert this snippet to the file /etc/systemd/system/xComfortMQTT.service:

[Unit]
Description=xComfortMQTT
After=network.target

[Service]
Type=simple
User=pi
ExecStart=/usr/local/bin/xComfortMQTT -c /etc/xComfortMQTT.yml
Restart=always
RestartSec=5
StartLimitIntervalSec=0

[Install]
WantedBy=multi-user.target

Enable the service start on boot:

sudo systemctl enable xComfortMQTT.service

Start the service:

sudo systemctl start xComfortMQTT.service

View the service log:

journalctl -u xComfortMQTT.service -f

PM2

pm2 start /usr/bin/python3 --name "xComfortMQTT" -- /usr/local/bin/xComfortMQTT -c /etc/xComfortMQTT.yml
pm2 save

Development

git clone git@github.com:blavka/xComfortMQTT.git
cd xComfortMQTT
./test.sh
sudo python3 setup.py develop