Search found 50 matches

by Backbone
Thursday 16 October 2025 16:40
Forum: Bugs and Problems
Topic: SSH on bookworm not working
Replies: 9
Views: 286

Re: SSH on bookworm not working


If you are using imager 1.96 there is a bug: [BUG]:Enabling SSH does not enable SSH #1242
See: https://github.com/raspberrypi/rpi-imager/issues/1242


Thanks Hansie,

In the mean time I have conquered all problems.
I can SSH in with Putty without any error now.
Now I have all running on Bookworm ...
by Backbone
Wednesday 15 October 2025 20:17
Forum: Bugs and Problems
Topic: SSH on bookworm not working
Replies: 9
Views: 286

Re: SSH on bookworm not working


The answer is in the posts above.

I guess you never updated your OS the last couple of years, otherwise you most likely would have the some error on your bullseye installation.

I just installed a new Trixie via an SSD and on first boot (monitor and keyboard attached), I was asked for a user and ...
by Backbone
Wednesday 15 October 2025 8:54
Forum: Bugs and Problems
Topic: SSH on bookworm not working
Replies: 9
Views: 286

Re: Domoticz version 2025.2 released (Fails)

[/quote]

Did you set username and password in raspi imager? Earlier raspbians used username "pi" and default password "raspberry", but that was an obvious security weakness so they changed it. Now you must set the username and password manually, under the gear button on raspi-imager..

If you don't ...
by Backbone
Tuesday 14 October 2025 21:18
Forum: Bugs and Problems
Topic: SSH on bookworm not working
Replies: 9
Views: 286

SSH on bookworm not working

I dont blame anyone but myself, but.,,,
Getting openssl3 on a bricked seems a study on its own for simple Domoticz users like me.
New SD card with Raspi imager filled with a bookworm version which I asume has openssl3 by standard.
Put SSH file on card too.
Put card in PI and power up.
Check if IP is ...
by Backbone
Monday 13 October 2025 20:44
Forum: News & Updates
Topic: Domoticz upcoming beta/release and OpenSSL 3.0
Replies: 66
Views: 34549

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Too late....
You first click update after a new version message pops up.
Then after the fail you start to search why it fails and land here after some google searches. :shock:

Time for a new install and restore a backup.

Paco
by Backbone
Thursday 01 May 2025 6:57
Forum: dzVents
Topic: Time function is not executed
Replies: 5
Views: 2154

Re: Time function is not executed

put your code in and that works. I get the logs.

2025-05-01 06:53:00.179 dzVents: timertest: Timer event was triggered by every minuteat time : 2025-5-1 6:53:0.52
2025-05-01 06:53:00.179 dzVents: timertest: It works at time :2025-5-1 6:53:0.52

But the trigger is on every minute.

My original ...
by Backbone
Thursday 01 May 2025 6:49
Forum: dzVents
Topic: Time function is not executed
Replies: 5
Views: 2154

Re: Time function is not executed

Hello Walter,

Thanks for testing, so it must be in my setup.

Domoticz:
Version: 2024.7
Build Hash: b317cfab1
Compile Date: 2024-07-13 16:59:31
dzVents Version: 3.1.8
Python Version: 3.9.2 (default, Mar 12 2021, 04:06:34) [GCC 10.2.1 20210110]
Active User: admin

I thought about the summer/winter ...
by Backbone
Wednesday 30 April 2025 14:32
Forum: dzVents
Topic: Time function is not executed
Replies: 5
Views: 2154

Time function is not executed

I wrote a script for a thermostat that worked fine for 6 months.
Suddenly the time function is not executed anymore.
Nothing to be shown in the log when a time period is activated.

Only when I manually trigger the object where this timer is residing in from OFF to Normaal or vice versa it changes ...
by Backbone
Friday 06 December 2024 8:43
Forum: dzVents
Topic: Yet Another Thermostat script debug [solved]
Replies: 16
Views: 2390

Re: Yet Another Thermostat script debug

I found out Waaren has past away. :-(

In the meantime I worked more on the code and got what I need and works for my purpose.
Might need polishing but I am happy.
Thanks for all the support who responded with tips and tricks.

It now uses two scripts.

Script1 for the general settings.
As most ...
by Backbone
Monday 04 November 2024 11:17
Forum: Design, usability and languages
Topic: Floorplan and other menus can not be set
Replies: 2
Views: 2456

Re: Floorplan and other menus can not be set

Thanks Walter,

I will check this evening.

Paco
by Backbone
Sunday 03 November 2024 8:59
Forum: Design, usability and languages
Topic: Floorplan and other menus can not be set
Replies: 2
Views: 2456

Floorplan and other menus can not be set

Hello,

I want to add and change a floorplan but it is not in the top menubar.
I cant select any menu to be active.
Is Domoticz trunkated?
Or do I look in the wrong place?

Paco
by Backbone
Friday 01 November 2024 9:34
Forum: dzVents
Topic: simple thermostat script[solved]
Replies: 5
Views: 1580

Re: simple thermostat script[solved]

Found a solution....by try and error that works.
Maybe for others who run also into this basic problem...

return
{
on =
{
devices = {'Thermostat_Control' },
},

execute = function(dz)

local Thermostat = dz.devices('Thermostat_Control') -- =idx69

-- "Boost" mode active, initiated by ...
by Backbone
Friday 01 November 2024 8:03
Forum: dzVents
Topic: simple thermostat script[solved]
Replies: 5
Views: 1580

Re: simple thermostat script[solved]

Hello Walter,

I have a follow up question for what looks to be simple.

If I run this script and change the selector value from 10 to 20 by clicking the selector the selector does NOT returns back from boost to normaal after 1 minute.
Is this correct script behaviour? Did I missed something ...
by Backbone
Saturday 26 October 2024 9:46
Forum: Other questions and discussions
Topic: Domoticz.log location [solved]
Replies: 7
Views: 2145

Re: Domoticz.log location [solved]

Got it solved.

return
{
on =
{
devices = {'Thermostat_Control', 'Heater_Switch', 'Temp_Kamer','Setpoint_Regular' },
timer = {'every minute'},
},

execute = function(dz)

--local Vartemp = dz.variables('Vartemp') --declared as float value
local Thermostat = dz.devices('Thermostat_Control ...
by Backbone
Saturday 26 October 2024 8:53
Forum: dzVents
Topic: simple thermostat script[solved]
Replies: 5
Views: 1580

Re: simple thermostat script

Walter, I got it working.
With some try and error.............and implementing checkfirst the correct way.

return
{
on =
{
devices = {'Thermostat_Control', 'Heater_Switch', 'Temp_Kamer','Setpoint_Regular' },
timer = {'every minute'},
},

execute = function(dz)

--local Vartemp = dz ...
by Backbone
Saturday 26 October 2024 8:01
Forum: dzVents
Topic: simple thermostat script[solved]
Replies: 5
Views: 1580

Re: simple thermostat script

Hello Walter,

Sorry for me misunderstanding.
My DZvents knowledge might be lacking heavily but I am willing to learn if I understand what goes on.

OK. You say I created a loop. So now I understand the behaviour shown in the script why it is repeating.

I already added the dz.devices(67).switchOff ...
by Backbone
Friday 25 October 2024 20:25
Forum: dzVents
Topic: simple thermostat script[solved]
Replies: 5
Views: 1580

simple thermostat script[solved]

For a proof of concept I made a simple script for switching ON/OFF a relay that works as backup (parallel) when the original thermostat fails.
The boiler only works with ON/OFF not Opentherm.

The ON/OFF relay is based on a ESPEASY (heater switch) and works fine when toggled when the script does ...
by Backbone
Monday 21 October 2024 20:25
Forum: Other questions and discussions
Topic: Domoticz.log location [solved]
Replies: 7
Views: 2145

Re: Domoticz.log location

Hi Walter,

As far as my knowledge goes I switched off all logging options as you described.
Problem of the filling of the log starts as soon as I start the DZvents script as written below and change the setting manual of a "switch".
Without changing the Switch output the logging is regular.
When I ...
by Backbone
Saturday 19 October 2024 17:17
Forum: Other questions and discussions
Topic: Domoticz.log location [solved]
Replies: 7
Views: 2145

Domoticz.log location [solved]

Hello,
When I check my log from the settings menu I see a constant data stream filling the log.
But that is a very low fill in. once every 20 seconds or so. No important data. Just scripts starting, weather info data and so on.
When I start a Dzvents thermostat script I created the log is filled ...
by Backbone
Friday 26 April 2024 11:07
Forum: dzVents
Topic: Yet Another Thermostat script debug [solved]
Replies: 16
Views: 2390

Re: Yet Another Thermostat script debug

Hello, three years ago my domoticz went down and corrupted.

I am slowly restoring what I have and all works fine and now I am back at debugging the thermostat code.
Difference between 3 years ago and now is even if have code snippets I clearly do not know anymore how far I was in the project that ...