Search found 222 matches
- Monday 02 June 2025 8:47
- Forum: News & Updates
- Topic: Domoticz version 2025.1 released
- Replies: 10
- Views: 4511
Re: Domoticz version 2025.1 released
Thats a good one, i hope to have some time tonight to dive in. Thanks!
- Sunday 01 June 2025 22:15
- Forum: News & Updates
- Topic: Domoticz version 2025.1 released
- Replies: 10
- Views: 4511
Re: Domoticz version 2025.1 released
Hi all, I'm running 2025.1 #16682 and If I check for an upgrade then #16712 is available, but when I klick OK then it takes 100 seconds and domoticz gives the feedback "there was a issue during the download,check your internet connection" I gave this over a two week period some tries but it keeps ...
- Sunday 11 May 2025 22:32
- Forum: General Discussion
- Topic: Best setup for smarthome
- Replies: 7
- Views: 583
Re: Best setup for smarthome
No camera at all on the pi, its the pi with a 16ch relais card. On the pi runs domoticz and mqtt and thats it.
I replaced the card and now it's solid again. Not sure what goes wrong on the pi.
@WouterO, no not the 12v but the 5v
I replaced the card and now it's solid again. Not sure what goes wrong on the pi.
@WouterO, no not the 12v but the 5v
- Saturday 10 May 2025 21:39
- Forum: General Discussion
- Topic: Best setup for smarthome
- Replies: 7
- Views: 583
Re: Best setup for smaethome
A RPi4 with a good SD card and a good power supply (!) should do the trick..... That zigbee is losing nodes should have nothing to do with SD card but with the zigbee controller stick as there the connection is stored. A bad power supply can give a lot of issues! Perhaps moving the gpio to esp will ...
- Saturday 10 May 2025 12:24
- Forum: General Discussion
- Topic: Best setup for smarthome
- Replies: 7
- Views: 583
Best setup for smarthome
Hi all, I currently have a setup on a pi4, I use the gpio to directly switch a 16ch relais card witch is primarily for central-heating usage. The rest is all zigbee or wifi /mqtt As the pi is using some SD cards and this gives the most irritating issues, like currently loosing zigbee devices ...
- Wednesday 05 March 2025 16:42
- Forum: Zigbee
- Topic: Sonoff SWV
- Replies: 2
- Views: 874
Re: Sonoff SWV
Thanks again Waltervl 

- Wednesday 05 March 2025 12:31
- Forum: Zigbee
- Topic: Sonoff SWV
- Replies: 2
- Views: 874
Sonoff SWV
Hi all, I have bought an Sonoff SWV and paired it with ZigbeeForDomoticz, it pops up without any issues, in devices two appear an voltage and a switch. On using the swith I get a error in my log that I dont understand. Maybe the device is not fully implemented yet but wanted to share it here. 2025 ...
- Wednesday 26 February 2025 15:41
- Forum: dzVents
- Topic: Tradfri bulb white balance
- Replies: 8
- Views: 555
Re: Tradfri bulb white balance
Works! Cheers Waltrvl
- Wednesday 26 February 2025 13:27
- Forum: dzVents
- Topic: Tradfri bulb white balance
- Replies: 8
- Views: 555
Re: Tradfri bulb white balance
I got it sorted my little scropt to change the white to yellow isch lapms of Ikea. I was focused on changing the CWWW with 0000, 00ff or ff00 but nothing worked for me. But it wasn't necessary at all I only had to change the t(emperatur) between 0 & 255 See the script that works for me. return { on ...
- Tuesday 25 February 2025 23:22
- Forum: dzVents
- Topic: Tradfri bulb white balance
- Replies: 8
- Views: 555
Re: Tradfri bulb white balance
I cannot find a setLamps() function in the documentation https://wiki.domoticz.com/DzVents:_next_generation_Lua_scripting So it seems you created your own setLamps() function. Correct Waltervl I did that with local function setLamps(level) Current script I only set the level as I dont know how to ...
- Tuesday 25 February 2025 9:00
- Forum: dzVents
- Topic: Tradfri bulb white balance
- Replies: 8
- Views: 555
Re: Tradfri bulb white balance
Hi Waltervl,
I use this to increase the brightness
I have no clue how to implement the color change
I use this to increase the brightness
Code: Select all
if lux < lux_threshold_low then
setLamps(55)
- Tuesday 25 February 2025 8:20
- Forum: dzVents
- Topic: Tradfri bulb white balance
- Replies: 8
- Views: 555
Tradfri bulb white balance
Hi all, I'm not getting my ikea tradfri bulbs to change color, I have the type that only goes from yellow to bright white. Currently I use setLevel to change the brightness that works but if I try kelvin or setcolbrightnessvalue i cant make it work If I manually change he color I get this in the log ...
- Tuesday 19 November 2024 7:48
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 108233
Re: Python Plugin: Smart Virtual Thermostat
Is there a other way of re-setting the plugin then manual trough the hardware page?
- Saturday 09 November 2024 13:29
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 108233
Re: Python Plugin: Smart Virtual Thermostat
I have a similar issue with this plugin, after the last update it seems not to be working stable anymore. I tried several things like replacing temperature sensors and other settings. Nothing changes the reliable functioning of the plugin, only thing that does seem to work is going to hardware-"SVT ...
- Saturday 09 March 2024 22:03
- Forum: Zigbee
- Topic: Zigbee4Domoticz fails update
- Replies: 4
- Views: 1238
Re: Zigbee4Domoticz fails update
Never mind, it's sorted again
Re: ssh
After some more testing I added the absolute path's to ssh, created an private key and also added the full path to the auth key. So working script: return { on = { devices = {669}, -- Adjust the device ID accordingly }, logging = { level = domoticz.LOG_DEBUG, marker = "ssh", }, execute = function ...
Re: ssh
Did you try directly? curl -X POST http://192.1.10.222:7999/1/config/set?emulate_motion=1 And if you want to go true ssh ssh [email protected] "curl http://localhost:7999/1/config/set?emulate_motion=1" Change the position of the first " Tried both, best result so far is with curl -X POST http://192 ...
Re: ssh
I have domoticz running on 192.1.10.72 and motioneye o runs on 192.1.10.222 Communication trough ssh works fine and with putty i run ssh [email protected] curl "http://localhost:7999/1/config/set?emulate_motion=1" the command is executed as intended and the camera starts recording. But from dzvent ...
Re: ssh
Did you try dz.executeShellCommand instead of the os.execute command? Tried many options by now, return { on = { devices = { 669, } }, logging = { level = domoticz.LOG_DEBUG, marker = "ssh" }, execute = function(domoticz, device) local sshCommand = 'ssh [email protected] http://localhost:7999/1 ...
Re: ssh
Put your complete command the a bash script like #!/bin/bash ssh [email protected] "mkdir b' Make that script executable and run that script as pi and again like root e.g. sudo <scriptname> If that works it should also work if you call your bash script from dzVents. Don't forget the " -o ...