Search found 9 matches

by mutley
Friday 15 February 2019 0:47
Forum: 433 & 868 transceiver
Topic: Does anyone successfully use RTL433 under windows ?
Replies: 5
Views: 2715

Re: Does anyone successfully use RTL433 under windows ?

Can't comment for Windows, but it's broken under Linux. RTL_433 has changed the command line parameters, and returns error if you pass any of old parameters. Domoticz has hard coded a few command line parameters and one of them causes RTL_433 to exit with an error. Only way round it is to use an ...
by mutley
Wednesday 13 February 2019 22:49
Forum: 433 & 868 transceiver
Topic: Does anyone successfully use RTL433 under windows ?
Replies: 5
Views: 2715

Re: Does anyone successfully use RTL433 under windows ?

Can't comment for Windows, but it's broken under Linux. RTL_433 has changed the command line parameters, and returns error if you pass any of old parameters. Domoticz has hard coded a few command line parameters and one of them causes RTL_433 to exit with an error. Only way round it is to use an old ...
by mutley
Tuesday 19 December 2017 21:54
Forum: Cameras
Topic: Unifi Video motion events to Domoticz / MQTT
Replies: 0
Views: 1421

Unifi Video motion events to Domoticz / MQTT

I just wrote a program that will monitor the motion log file of UniFi Video and post the events to a MQTT broker. It's designed to run on the NVR, so very specific to Linux systems, it won't get ported to Windows. Take a look if you need something like this, far more effective than using scripts ...
by mutley
Thursday 02 November 2017 16:47
Forum: dzVents
Topic: device trigger time-rule constraint
Replies: 3
Views: 2018

Re: device trigger time-rule constraint

Thanks. You gave me a hint. Needed to list each time constraint independently. Which makes it a lot more powerful. return { active = true, on = { devices = { ['Driveway Cam Motion'] = {'at daytime'}, ['Front Door Cam Motion'] = {'at daytime'}, ['Back Door Cam Motion'] = {'at daytime'}, ['Back Garden ...
by mutley
Thursday 02 November 2017 14:31
Forum: dzVents
Topic: device trigger time-rule constraint
Replies: 3
Views: 2018

device trigger time-rule constraint

I know this is really basic and silly question to ask, but I can't seem to find the right syntax for this command. I'm trying to use the 'at nighttime' constrain on a device trigger. The documentation gives this as an example. on = { devices = { ['myDevice'] = 'at nighttime' } } This is my code ...
by mutley
Friday 26 May 2017 18:12
Forum: Python
Topic: Python with colorpicker
Replies: 6
Views: 2196

Re: Python with colorpicker

I don't think you'll get what you want without modifying the source code. I've played with this, and it's basically junk. There seems to be no way to actually get any useful values. Set Color [0-255] is actually the Hue, so multiply that by ~1.4 to get a 0-360 range. Set Brightness and Set Level I ...
by mutley
Saturday 20 May 2017 16:17
Forum: Python
Topic: Python with colorpicker
Replies: 6
Views: 2196

Re: Python with colorpicker

If the plugin will be a python plugin What does this do? Domoticz.Device(Name="RGB Light", Unit=1, Type=241, Subtype=2, Switchtype=7).Create() And what are all the type/subtype/switchtype parameters? Is there a list with all possible options? I only find virtual sensor with the JSON part: /json.htm ...
by mutley
Thursday 18 May 2017 23:00
Forum: Python
Topic: Python with colorpicker
Replies: 6
Views: 2196

Re: Python with colorpicker

Yes it's possible in both c++ and python plugin. It's also possible using a "Virtual Censor" but I don;t think there is a way to get the RGB / HSL values with the virtual censor. This will do it for python plugin Domoticz.Device(Name="RGB Light", Unit=1, Type=241, Subtype=2, Switchtype=7).Create ...
by mutley
Tuesday 16 May 2017 18:19
Forum: ESP8266
Topic: ESP8266 + Tasmota + MQTT + Domoticz = Feedback problem.
Replies: 3
Views: 6237

Re: ESP8266 + Tasmota + MQTT + Domoticz = Feedback problem.

I've only just started playing with creating my own devices in Domoticz using MQTT, so I could be wrong but from what I think you are trying to ask this is what I think is going on. Domoticz does not poll any device over MQTT for status information. So unless your device sends out a states before it ...