Search found 7 matches

by Deufo
Monday 08 September 2025 13:57
Forum: Zigbee
Topic: Z4D does not start on new instal
Replies: 3
Views: 128

Re: Z4D does not start on new instal

Hello,
With bookworm, you need to configure a python virtual environnement.
Please have a look here : https://zigbeefordomoticz.github.io/wik ... alEnv.html
by Deufo
Tuesday 05 October 2021 15:51
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Synology - guide to switch from Jadahl package to official docker (domoticz-docker)
Replies: 121
Views: 33620

Re: Synology - guide to switch from Jadahl package to official docker (domoticz-docker)

Hello,
Update to DSM7.0 ok, the last docker contains python and very soon curl, so it's really easy to use it.
Download the official image (domoticz/domoticz), create with autostart and high privilege, complete the folder part (docker/domoticz - /opt/domoticz/userdata) and the ports (replace Auto ...
by Deufo
Thursday 29 July 2021 16:53
Forum: dzVents
Topic: Security panel
Replies: 0
Views: 172

Security panel

Hello,
I just tried to use the template script called 'Security.lua'.
I copied it in my script folder, I played with the security panel control but the script is never called. Any idea ?

In the dz logs, I can see that the alarm state changes:
2021-07-29 16:48:34.487 Domoticz Internal: Security ...
by Deufo
Thursday 30 July 2020 18:50
Forum: Bugs
Topic: Notify function problem when using subsytem [CLOSED] [SOLVED]
Replies: 6
Views: 8654

Re: Notify function problem when using subsytem [CLOSED] [SOLVED]

ok, many thanks, I will take into account your return.
by Deufo
Thursday 30 July 2020 15:24
Forum: Bugs
Topic: Notify function problem when using subsytem [CLOSED] [SOLVED]
Replies: 6
Views: 8654

Re: Notify function problem when using subsytem [CLOSED] [SOLVED]

Sorry, I give you an example:



local Subsystem = domoticz.NSS_TELEGRAM


return
{
on =
{
timer =
{
'every minute',
},
},

logging =
{
level = domoticz.LOG_DEBUG,
marker = 'notify options',
},

execute = function(dz)
dz.notify('Some systems', 'Some',nil,nil,nil,Subsystem )
end ...
by Deufo
Thursday 30 July 2020 12:42
Forum: Bugs
Topic: Notify function problem when using subsytem [CLOSED] [SOLVED]
Replies: 6
Views: 8654

Re: Notify function problem when using subsytem [SOLVED]

Ok, my bad, found my problem.

I created a local variable outside the function with domotciz.NSS_TELEGRAM, don't know why but no error and the created variable was nil.

If I wan't to keep the creation of the variable at the beginning of the script (easier to find what to modify), I should use the ...
by Deufo
Thursday 30 July 2020 11:34
Forum: Bugs
Topic: Notify function problem when using subsytem [CLOSED] [SOLVED]
Replies: 6
Views: 8654

Notify function problem when using subsytem [CLOSED] [SOLVED]

Hello,
By trying to choose only one way to send a notification on my phone, I discovered a little problem in the function.
The wiki list the following constant :

NSS_FIREBASE, NSS_FIREBASE_CLOUD_MESSAGING, NSS_GOOGLE_DEVICES 3.0.10 Only with installed casting plugin, NSS_HTTP, NSS_KODI, NSS ...