-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Hi all,
first of all thanks a lot for sharing this great idea to steer a Truma heater from outside the Truma univers!
As I already have an ioBroker installation, incl. a MQTT server, running in my camper van, I also would like to connect my Truma heating to this environment. The setup is running on an Raspi4, Debian Bookworm.
To first test if I'm able to get the python environment running (I'm not really a specialist in Linux environments), I set up a respective Debian test container in my Proxmox home environment, incl. a user 'pi'.
According to what I found in the read.me and the maybe a bit other Debian environment, I then figured out the following installation path.
('pip3' didn't work for the setup and the prompts advised me to go via 'pipx')
sudo apt install python3-pip
sudo apt install pipx
pipx ensurepath
pipx install inetbox_py[truma_service] --include-deps
pipx ensurepath
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
. ~/.bashrc
sudo reboot now
I also tested already some variations of the above (e. g. incl. using more 'sudo' and also w/o the installatoin of 'python3-pip'), but when trying to run 'truma_service' I always failed.
I got back:
-bash: truma_service: command not found
For me it sounds like maybe the path to find the service isn't set correctly, but could someone please support on this?