Search found 15 matches
- Thursday 06 December 2018 15:18
- Forum: RFLink Transceiver
- Topic: RFLink does not work in combo with dzVents script
- Replies: 1
- Views: 1367
Re: RFLink does not work in combo with dzVents script
I think is a bug. I had to add a .afterSEc(1) to the switchOn() in order to make it work. It seems to a bug to me. Apperently the PIR sends multiple time the ON signal when it's triggered and the RFLink gateway can't handle it. return { on = { devices = { "PIR" }}, execute = function(domoticz ...
- Thursday 06 December 2018 15:15
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
Is the PIR also controlled by the RFLINK? It still could be interference, PIR transmitting multiple times and interfering with the switch commands for the LED's. This does not happen when you manually control the LED switch from domoticz. What happens if you do a SwitchOn.AfterSec(<delay>)? Yes ...
- Tuesday 04 December 2018 1:09
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
I did a quick test and it is looking good so far. I will test more tomorrow. Will let you know.SweetPants wrote: ↑Monday 03 December 2018 12:32 What happens if you do a SwitchOn.AfterSec(<delay>)?
Thankx
Edwin
- Sunday 02 December 2018 16:31
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
Yes I totally agree but I still can't explain why the LED is not switched on via the scripts as I said before when I use the GUI I can control the let's
- Saturday 01 December 2018 23:28
- Forum: RFLink Transceiver
- Topic: RFLink does not work in combo with dzVents script
- Replies: 1
- Views: 1367
RFLink does not work in combo with dzVents script
I have a problem with RFLink When I use Domoticz dzVents script the LED lights aren't switch on and off, but when I use the Domotiz GUI, they do. I turned on Debug in RFLink but from a loggin POV it seems to work fine. But in real live it doesn't. the LED leds are only switched on when I use the ...
- Saturday 01 December 2018 22:21
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
I found a way to debug the data send/received from RFLink and found out that dzVents is failing to send the "on" once the PIR was triggerd. 10;rfdebug=on; Re: How to log RFLink "raw" messages in Domoticz ? Post by Stuntteam » Wednesday 01 February 2017 14:52 We crafted a quick and dirty solution for ...
- Saturday 01 December 2018 16:52
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
I did, no change in behaviour.
Is there a way to see what is send to rflink?
Is there a way to see what is send to rflink?
- Saturday 01 December 2018 10:00
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
Just to understand what is happening; When you switch the lights manually, Do you switch them using a wall switch or do you click on the bulb in the domoticz Gui ? Gui When the script is fired, I see the changes in the Gui and log but LED stay out. If I click in the Gui on the light bulb, the light ...
- Friday 30 November 2018 22:14
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
I Did. I replaced the switch to a switch apx 4 meters from the RFLink. Same results. Then I tried 3 others. All within very close range of the RFLink. All had the same result. The switches are mixed in brand: Action, Kaku, euromest. In Domoticz it seems oke., but in real life the lights are not ...
- Friday 30 November 2018 17:27
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
I can confirm that the LED lights were switched on and of (2 times) when I manually switch them on/of This is the light in Domoticz https://drive.google.com/open?id=1UdXbBRxa2h8M1PfctVgqjkaDhjvPiEFa Now we are getting to the core of the problem. When the script switches it seems like it is sending ...
- Thursday 29 November 2018 16:55
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
Domoticz responds the same. From op Domoticz pov it it working like a charm. I see the PIR sensor activated and the switch IDX34 goes on. Domoticz shows me all this. But: the actual lights are not switched on. It seems like the instructions to the gateway (RFLink) is not right. (If I manually click ...
- Thursday 29 November 2018 15:55
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
Important note when using forXXX(): Let's say you have a light that is triggered by a motion detector. Currently the light is Off and you do this: light.switchOn().forMin(5). What happens inside Domoticz is this: at t0 Domoticz issues the switchOn() command and schedules a command to restore the ...
- Thursday 29 November 2018 14:47
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
Re: dzVents script works, but LED lights are not turned on
The light switch is not turned on. In Domoticz I see the switch (light bulb) is turned on, but I don't see and hear the switch (and the LED lights are not turned on). If I understand your script and description correctly you want the light to go on for one minute when motion is detected. If that is ...
- Thursday 29 November 2018 11:31
- Forum: dzVents
- Topic: dzVents script works, but LED lights are not turned on
- Replies: 22
- Views: 2891
dzVents script works, but LED lights are not turned on
Hello, I have the dzVents code return { on = { devices = { 'PIR' } }, execute = function(domoticz, devices) if (devices.state == 'On') then domoticz.devices(34).switchOn().checkFirst().forMin(1) domoticz.devices(34).switchOff().checkFirst().afterMin(1) end end } This is actually working, BUT, the ...
- Wednesday 04 November 2015 15:44
- Forum: RFLink Transceiver
- Topic: Domoticz Synology Rf-link MySensors
- Replies: 2
- Views: 1744
Domoticz Synology Rf-link MySensors
I want to setup a system with the following components: Domoticz as controller using Synology RF-link to access KlikAanKlikUit sensors and switches and I want to used MySensors What do I need to accomplish this? Is the http://www.nodo-shop.nl/nl/rflink-gateway/127-rflink-bouwpakket-of-gesoldeerd ...