Projet de remplacement du "RPiPasserelle" d'Otec.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Maxime Alves LIRMM@home b61667080d [read-only][issue #25] supression du changement de /boot en ro (pas besoin) 3 years ago
config [read-only][issue #25] supression du changement de /boot en ro (pas besoin) 3 years ago
db [db] update des valeurs limites des variables comme sur l'image + renommage du script pre-exec 3 years ago
docs [doc] /config/{last_update,mac_address} 3 years ago
logs/bug/30 logs for issue #30 3 years ago
pyheatpump [supervise] supression du except socket.gaierror 3 years ago
staging/dev Merge branch 'master' of https://git.yannweb.net/cli/pyHeatpump 3 years ago
tests [variable_type] update complement function to a simpler version + tests 3 years ago
.gitignore [gitignore] .swp .swo 3 years ago
LICENSE Initial commit 3 years ago
MANIFEST.in [deps] package with setuptools 3 years ago
Pipfile [deps] added pylint 3 years ago
Pipfile.lock Added pipfile for pipenv usage 3 years ago
README.md add readme staging directories (dev) 3 years ago
poetry.lock [deps] added netifaces module 3 years ago
pyproject.toml [deps] package with setuptools 3 years ago
pytest.ini pytest.ini - less verbose 3 years ago
setup.cfg [deps] package with setuptools 3 years ago
setup.py [deps] added HTML template to dependencies 3 years ago
tox.ini [deps] package with setuptools 3 years ago

README.md

pyHeatpump

Projet de remplacement du “RPiPasserelle” d’Otec.

Dependencies

pysqlite3 umodbus starlette uvicorn pytest requests

Install

Initialize a database in the home directory of your system user.

sqlite3 -init ./db/pyheatpump.sql /var/run/pyheatpump/pyheatpump.sqlite3

Create a configuration file in /etc/pyheatpump.ini .

[heatpump]
mac_address = 00:00:00:00:00:00
database = /var/run/pyheatpump/pyheatpump.sqlite3

[supervisor]
scheme = https
host = supervision-test.gteo.fr
port = 8081
post_path = /Symfony/web/app_dev.php/boardws/insert
get_path = /Symfony/web/app_dev.php/boardws/orders
interval = 10000
heatpump_id = 42

[api]
host = 0.0.0.0
port = 80

Fetch manually to initialize the data.

pyheatpump fetch

Insert the init files into the right locations.

cp -t /etc/init.d conf/pyheatpump
chmod +x /etc/init.d/pyheatpump
rc-update add default pyheatpump
rc-service pyheatpump start
cp ./conf/pyheatpump.systemd.socket /etc/systemd/system/pyheatpump.socket
cp ./conf/pyheatpump.systemd.service /etc/systemd/system/pyheatpump.service
systemctl daemon-reload
systemctl enable pyheatpump
systemctl start pyheatpump

Enable the cron task / systemd timer for the automatic fetch and supervise tasks.

cat conf/pyheatpump.cron >> /etc/crontab
cp ./conf/pyheatpump.systemd.timer /etc/systemd/system/pyheatpump.timer

Environment

Depending of which staging environment you attended to use, please check the dedicated directory in staging. You’ll find their a README and an install file that will help you further.