Search found 5 matches

by prutsky
Friday 03 October 2025 14:38
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: FRsh install on Raspberry Pi OS Trixie fails
Replies: 2
Views: 546

Re: FRsh install on Raspberry Pi OS Trixie fails

Yes! Thank you.

Code: Select all

wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u3_arm64.deb
and

Code: Select all

sudo dpkg -i libssl1.1_1.1.1w-0+deb11u3_arm64.deb 
did the "trick" .
by prutsky
Friday 03 October 2025 10:01
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: FRsh install on Raspberry Pi OS Trixie fails
Replies: 2
Views: 546

FRsh install on Raspberry Pi OS Trixie fails

Hi,
I try to install Domoticz on a new Pi5 system, with a fresh install of Raspbian Trixie. The install stops after checking libssl1.1 without any error message:
$ sudo bash -c "$(curl -sSfL https://install.domoticz.com)"
:::
::: You are root.
::: Verifying free disk space...
:::
::: Checking apt ...
by prutsky
Saturday 14 June 2025 22:12
Forum: Python
Topic: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working
Replies: 3
Views: 1995

Re: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working

I found out my get_devices call was not correct (not using the xid).

The correct one is: url = "%s/json.htm?type=command&param=getdevices&rid=%s" % (self.baseurl, xid)
by prutsky
Saturday 14 June 2025 13:49
Forum: Python
Topic: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working
Replies: 3
Views: 1995

Re: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working

Thanks for clearing that out! I got this working:


url = f"{self.baseurl}/json.htm?type=command&param=getdevices"
data = json.load(self.__execute__(url))
return data

def get_gas_values(url, device_id):
"""
Get gasmeter reading.
"""

device_data = Domoticz(url).get_device(device_id)
data ...
by prutsky
Saturday 14 June 2025 9:15
Forum: Python
Topic: get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working
Replies: 3
Views: 1995

get_gas_values(domoticzurl, domoticzdeviceid_gas) stopped working

Hi,
I'm running two scripts which uses "get_gas_values(domoticzurl, domoticzdeviceid_gas)". These scripts worked fine until May 6th 2025.

Now I get the following error:
/domoticz/scripts $ python3 gasstanden.py
Traceback (most recent call last):
File "/home/pi/domoticz/scripts/gasstanden.py ...