Search found 12 matches

by jeroenb42
Friday 13 November 2020 19:38
Forum: Z-Wave
Topic: Grouping wall switch to socket
Replies: 0
Views: 228

Grouping wall switch to socket

I have a Neo Coolcam 2 channel wall switch which turns on a light. What I want to do is "link" one of the switches to Neo Coolcam Power Plug. I know how to do it using Domoticz but I wonder if it is possible to do it with just Z-Wave. My guess was groups. This is what I did: 2 channel switch is ...
by jeroenb42
Thursday 01 October 2020 21:39
Forum: Z-Wave
Topic: Oomi Mote [wallmote]
Replies: 2
Views: 1256

Re: Oomi Mote [wallmote]

That part I've managed to do. I did not even copy the file from the Aeotec directory. I just added a line. login to your raspberry cd ~/domoticz/Config sudo vi manufacturer_specific.xml search for 16a This is the Fantem (Oomi) section Add the following line (I added it at the bottom of the ...
by jeroenb42
Thursday 10 September 2020 15:01
Forum: Others
Topic: Cannod add Xiaomi Gateway
Replies: 6
Views: 4944

Re: Cannod add Xiaomi Gateway

Thanks for the explanation. I bought the v2 hub (after finding out the v3 Aqara does not work with Domoticz). Port 9898 was closed on it so I soldered as described, got in the gateway and was able to psm-set network.open_pf 3 I verified with psm-get network.open_pf and I got the answer 3 ...
by jeroenb42
Thursday 23 May 2019 20:56
Forum: Dashticz
Topic: Remove the space an icon takes up on the screen
Replies: 2
Views: 1191

Re: Remove the space an icon takes up on the screen

I have figured it out so let me share it. There are 2 parts to it, the icon itself and the div surrounding it. In my example, I have a text sensor for which I only want to show the text itself and don't care about the icon. The Domoticz id in my example is 1260. The relevant CONFIG.js section ...
by jeroenb42
Sunday 19 May 2019 14:26
Forum: Dashticz
Topic: Remove the space an icon takes up on the screen
Replies: 2
Views: 1191

Remove the space an icon takes up on the screen

I have some MiFlora devices and I want to show the values of each of them in a row. I can manage that easily but I'm running out of space. I want to remove the space that the icon takes up (if it says 100 lux I know what it is). If have tried making the icons all empty and I have tried with css but ...
by jeroenb42
Wednesday 08 May 2019 22:39
Forum: Dashticz
Topic: Multiple screens on a mobile
Replies: 0
Views: 638

Multiple screens on a mobile

I'm relatively new to Dashticz and loving it so far. I am now trying to get multiple screens working. I have created 2 screens and a button on screen 1 to go to screen 2. It works on my laptop browser but on my mobile the screens are put together as one page and the button does nothing. The ...
by jeroenb42
Saturday 13 October 2018 13:20
Forum: Python
Topic: Python create water sensor
Replies: 1
Views: 496

Re: Python create water sensor

I got my own question answered so I thought I would share the results. The homewizard has 2 water values (at least in my case), waterflow and water usage. I created the sensors using the following code: Waterflow Domoticz.Device(Name="Water", Unit=self.water_id, TypeName="Waterflow").Create() Water ...
by jeroenb42
Thursday 11 October 2018 11:09
Forum: Python
Topic: Python create water sensor
Replies: 1
Views: 496

Python create water sensor

I have been working on updating the Homewizard plugin created by @Wobbles (I have an energylink which his code does not yet cover) and I am trying to add a water sensor. I have seen images of people who have a water meter in Domoticz with an indication of liter. I've managed to create a counter that ...
by jeroenb42
Thursday 28 June 2018 13:15
Forum: dzVents
Topic: Error: attempt to index global 'domoticz' (a nil value) [Solved]
Replies: 6
Views: 5179

Re: Error: attempt to index global 'domoticz' (a nil value) [Solved]

Ah, thanks for that. Did not realize there was a LUA with and without dzVents.
Followed this thread: viewtopic.php?t=7642
and got what I wanted, global functions.
Thanks all
by jeroenb42
Thursday 28 June 2018 12:01
Forum: dzVents
Topic: Error: attempt to index global 'domoticz' (a nil value) [Solved]
Replies: 6
Views: 5179

Re: Error: attempt to index global 'domoticz' (a nil value) [Solved]

Can't find the info right now but if I am not mistaken you also need to pass domoticz as 1st value. Try if changing urlEncode = function (str) to urlEncode = function (domoticz, str) in helpers and domoticz.helpers.urlEncode("test test") to domoticz.helpers.urlEncode(domoticz, "test test") in your ...
by jeroenb42
Thursday 28 June 2018 10:06
Forum: dzVents
Topic: Error: attempt to index global 'domoticz' (a nil value) [Solved]
Replies: 6
Views: 5179

Error: attempt to index global 'domoticz' (a nil value) [Solved]

It's going to be something completely silly but I can't figure it out, nor can I Google the answer. I created a global_data.lua file in the domoticz/scripts/dzVents/scripts directory. I know that Domoticz finds it because it contained a typo which showed up in the log. Fixed the typo to give this ...
by jeroenb42
Wednesday 09 May 2018 10:43
Forum: Suggestions
Topic: Virtual sensor for duration/time
Replies: 2
Views: 1484

Virtual sensor for duration/time

I am looking for a virtual sensor which can track duration/time. I want to track how long certain devices are on/in use. I have implemented a way to test whether these devices are on in another sensor and I would like to record how long these devices are on each day. I have been able to implement ...