Search found 18 matches

by Pacman42
Friday 30 September 2022 11:07
Forum: Zigbee
Topic: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)
Replies: 692
Views: 129252

Re: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)

I have now identified the problem. The switches are existing in deConz, but not in Phoscon. I will remove them and re-pair them during the weekend and see if that solves the problem. I didn't know that deConz and Phoscon could get out of sync...
by Pacman42
Tuesday 27 September 2022 11:29
Forum: Zigbee
Topic: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)
Replies: 692
Views: 129252

Re: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)

I am not using VNC, I use RDP to avoid such problems. But maybe these problems do occur with RDP as well?

I have manuall stopped/started the services, so it is not that. I have connectivity for everything else in deConz, but not for setting the state of the switches. Polling the state from deConz ...
by Pacman42
Tuesday 27 September 2022 0:59
Forum: Zigbee
Topic: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)
Replies: 692
Views: 129252

Re: Python Zigbee plugin, deCONZ bridge (Using Conbee or Raspbee)

I have a very strange problem with the deConz plugin. I can import devices to Domoticz, and they do work for a while after an initial installation, but then they suddenly stop working. I still have communication with deConz, everything is fine except when I turn a switch on/off, then I get this ...
by Pacman42
Saturday 05 December 2020 15:22
Forum: Zigbee
Topic: Lidl now also sells Zigbee smarthome devices
Replies: 78
Views: 70667

Re: Lidl now also sells Zigbee smarthome devices



Has anyone managed to get the colors working on the RGB E27 LED?

I get them to work in Phosconn App (Conbee), but the RGB controls are not working from Domoticz. Any ideas?

Perhaps a problem with the Python plugin?


Can you pm me if you still have the problem, I need too the device JSON, if ...
by Pacman42
Thursday 03 December 2020 19:17
Forum: Zigbee
Topic: Lidl now also sells Zigbee smarthome devices
Replies: 78
Views: 70667

Re: Lidl now also sells Zigbee smarthome devices

Has anyone managed to get the colors working on the RGB E27 LED?

I get them to work in Phosconn App (Conbee), but the RGB controls are not working from Domoticz. Any ideas?

Perhaps a problem with the Python plugin?
by Pacman42
Thursday 23 April 2020 8:05
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: How to install Domoticz on a Synology NAS
Replies: 577
Views: 198217

Re: How to install Domoticz on a Synology NAS


The upgrade to 2020.1 stable completely messed up my home automation due to MQTT-loopback not working any more.
And although there is an issue made in Github and maybe they will implement a solution, I fear this will take to long for wife and kids to keep sane :).
https://github.com/domoticz ...
by Pacman42
Thursday 23 April 2020 8:02
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: How to install Domoticz on a Synology NAS
Replies: 577
Views: 198217

Re: How to install Domoticz on a Synology NAS


Still not working for me. I tried to install the Python version, but then Domoticz doesn't start at all. So back to the non Python version, that starts, but stops everytime after 25 seconds.

Here are the last lines from my logfile, this is what happens everytime when I try to start Domoticz ...
by Pacman42
Friday 24 May 2019 9:01
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

I only have the RFXCOM and a USB disk attached via USB and when the RFXCOM is attached it is shown as an FT232 device.

So on my NAS the FT232 is the RFXCOM. My guess is that it may be connected to that I have a gen1 RFXCOM, have they changed the USB-serial chipset between generations?
by Pacman42
Thursday 23 May 2019 22:02
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

The driver is called FT232 on my RFXCOM, so this is the result:


for ii in (1..24)
do
ftdi=`lsusb|grep -c "FT232"`
if [ $ftdi -gt 0 ]
then
break
else
sleep 5
fi
done
su ${USER} -c "${DOMOTICZ} -www ${PORT} -wwwroot ${WWWROOT} -sslwww ${RSSLPORT} ........................


I will ...
by Pacman42
Thursday 23 May 2019 19:11
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

OK, adding a 3min delay on the row prior to starting Domoticz did the trick. So it is a timing issue.

The next solution is of course to run a loop with "sudo ls /dev/tty*|grep -c ttyUSB0" every five seconds during two minutes or until the device is created. That is a nicer workaround (if one ...
by Pacman42
Thursday 23 May 2019 13:46
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

Thinking a minute more about it, the problem is likely that the USB device is detected prior to the modules are inserted. But then another issue floats up to the surface, why isn't it possible to unplug-plug the USB connector after boot to get it working? /dev/ttyUSB0 is not available even after an ...
by Pacman42
Thursday 23 May 2019 13:33
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

Thanks, your proposal fits my analysis perfectly, even though I had not yet looked into the installation of the modules. I have several packages running on an DS216j (which is rather weak).

My next planned step was actually to insert a sleep for three minutes into the start-script of Domoticz, so I ...
by Pacman42
Thursday 23 May 2019 9:47
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

Additional information. The issue is not occuring if I reboot the Synology with the RFXCOM disabled, but if it is enabled it happens most of the time. It seems like Domoticz is trying to grab the /dev/ttyUSB0 prior to it existing and that this is blocking it from being created.

I will try to grab ...
by Pacman42
Thursday 23 May 2019 0:06
Forum: Others
Topic: domoticz in synology as package! Available now.
Replies: 1864
Views: 383964

Re: domoticz in synology as package! Available now.

I still must remove and insert the USB cable after rebooting the NAS to get the RFXCOM to be detected.

Is there a solution to this described in this thread that I have missed, or must I put it behind a USB-hub that I automatically urn on via Domoticz after the NAS has restarted to get detection of ...
by Pacman42
Friday 10 March 2017 11:01
Forum: Android
Topic: Domoticz app 2.0
Replies: 2382
Views: 678470

Re: Domoticz app 2.0

Is there any development on mydomoticz support?

I am currently using ssh-tunnels together with the app, but I would really like a no-hassle solution for remote control of my home.
by Pacman42
Monday 28 December 2015 11:17
Forum: Switches and Scenes
Topic: Conrad RSL2
Replies: 4
Views: 1442

Re: Conrad RSL2

I think the answer is within this thread: http://www.domoticz.com/forum/viewtopic.php?p=16059#p16059

But it seems that I need to listen for the device codes, which is not possible as I have no remote. It also seems like I need to write scripts to send the commands. There has to be a simpler way, or ...
by Pacman42
Monday 28 December 2015 9:53
Forum: Switches and Scenes
Topic: Conrad RSL2
Replies: 4
Views: 1442

Re: Conrad RSL2

Hi, Yes I have read the manual. It is stating that support is there but not explaining which transmit protocol to use...
by Pacman42
Monday 28 December 2015 1:53
Forum: Switches and Scenes
Topic: Conrad RSL2
Replies: 4
Views: 1442

Conrad RSL2

Hi, I have a couple of Conrad RSL2 switches that I want to connect to Domoticz via my RFXTRX433. Which protocol am I supposed to activate these? It seems like some people have huge problems, while others have no problems at all and are therefore not writing about it.

Anyway, which protocol should I ...