Search found 1355 matches

by dannybloe
Sunday 08 November 2020 12:35
Forum: dzVents
Topic: Timing rule as trigger no longer works lastest beta 2020.2 (build 12554) [Solved]
Replies: 5
Views: 1074

Re: Timing rule as trigger no longer works lastest beta 2020.2 (build 12554) [Solved]

Indeed, this should be split into separate rules. And's and comma's are not supported. The reason it might have worked is purely coincidental, perhaps due to how dzVents parses the rules.
by dannybloe
Saturday 02 May 2020 17:45
Forum: dzVents
Topic: Syntax [Solved]
Replies: 10
Views: 2645

Re: Syntax [Solved]

Awesome!! 😆
by dannybloe
Wednesday 22 April 2020 11:19
Forum: Evohome
Topic: Request count limitation exceeded, please try again later
Replies: 1
Views: 2184

Request count limitation exceeded, please try again later

Hi folks, After upgrading to 2020.1 and using the EvoHome Web API I'm getting these errors: Error: (Evohome) v1 login failed with message: Request count limitation exceeded, please try again later. I switched to another evohome-account and then it works for a while but in an hour things stop working ...
by dannybloe
Thursday 02 April 2020 9:07
Forum: LUA
Topic: Iterate within a group
Replies: 16
Views: 2301

Re: Iterate within a group

All these suggestions are far from trivial mostly due to performance issues. Doing a devices={ '*' } is a true performance killer as for each event (can be dozens per event-tick) all device objects get instantiated in dzVents and the execute function gets executed. So I truly don't recommend this at ...
by dannybloe
Monday 17 February 2020 10:08
Forum: dzVents
Topic: dzVents 3.0 released
Replies: 17
Views: 3026

Re: dzVents 3.0 released

MrHobbes74 wrote: Monday 17 February 2020 10:01 Hi! You can transfer multiple values by providing a json formatted string as the myData parameter (e.g. data=[{“a”:“b”, “c”:“d”}]
Make sure it is url encoded.
by dannybloe
Sunday 16 February 2020 19:09
Forum: dzVents
Topic: dzVents 3.0 released
Replies: 17
Views: 3026

Re: dzVents 3.0 released

I just updated, unfortunately I get this error message: Error: EventSystem: in /home/pi/domoticz/dzVents/runtime/dzVents.lua: /home/pi/domoticz/dzVents/runtime/EventHelpers.lua:462: bad argument #1 to 'for iterator' (table expected, got string) Please report this in the bugs section together with ...
by dannybloe
Thursday 13 February 2020 20:45
Forum: dzVents
Topic: dzVents 3.0 released
Replies: 17
Views: 3026

dzVents 3.0 released

Hi folks, I am proud to announce dzVents 3.0 has been merged in Domoticz v4.11687. Thanks to the hard work of MrHobbes74, waaren and yours truly we have some very interesting new features: System events Many times asked for and now possible is a way to run scripts as soon as Domoticz was started ...
by dannybloe
Friday 24 January 2020 8:13
Forum: Dashticz
Topic: New sub fora
Replies: 0
Views: 385

New sub fora

Hi folks,

As you can see I have locked a couple of the huge topics in favor of the new sub channels in this forum. The new channels are:
  • Bugs
  • Feature requests
  • How-tos

Let's try to use those as much as possible. All other discussions can stay in the main channel.

Kind regards,

Danny
by dannybloe
Friday 24 January 2020 8:10
Forum: Bugs
Topic: Dashticz - Bug report
Replies: 557
Views: 129392

Re: Dashticz - Bug report

Peeps, there is a new sub forum for bug reports. Let's start using that from now on where each report is it's own topic to keep things manageable. Locking this topic for now.

Cheers,

Danny
by dannybloe
Friday 24 January 2020 8:08
Forum: Feature requests
Topic: Dashticz - Feature Requests
Replies: 391
Views: 110602

Re: Dashticz - Feature Requests

Peeps, there's a new sub forum for feature request. Let's use that one from now on. This topic will be locked.

Cheers,

Danny
by dannybloe
Friday 24 January 2020 8:07
Forum: Dashticz
Topic: Dashticz - General Discussions
Replies: 3672
Views: 565582

Re: Dashticz - General Discussions

Peeps, this thread is going to be closed as it is too long be useful anymore. Please feel free to post new topics and let's try to stick to the topic and keep them short.

Danny
by dannybloe
Friday 27 December 2019 10:50
Forum: Zigbee
Topic: HUE: Connection refused
Replies: 0
Views: 636

HUE: Connection refused

I am running Domoticz here on a Pi3 using the Hue plugin. So far so good. It polls every 10s for updates. But… regularly (every 1 or 2 days) it suddenly cannot connect anymore to the bridge (Error: Philips Hue: Error getting Light States, (Check IPAddress/Username)). Using curl on the Pi, the bridge ...
by dannybloe
Tuesday 17 December 2019 7:21
Forum: dzVents
Topic: dzVents randomised times [Solved]
Replies: 2
Views: 1453

Re: dzVents randomised times [Solved]

I'd say the comment should be something like: -- switch off for 2 minutes after a randomized period of 1-10s has passed.
And the delay is before the actual switching.
by dannybloe
Sunday 03 February 2019 15:01
Forum: dzVents
Topic: Date and time calculations in dzvents [Solved]
Replies: 16
Views: 11705

Re: Date and time calculations in dzvents [Solved]

I know :-) Ideas and pull-request are always welcome.
by dannybloe
Sunday 03 February 2019 13:26
Forum: dzVents
Topic: Date and time calculations in dzvents [Solved]
Replies: 16
Views: 11705

Re: Date and time calculations in dzvents [Solved]

Well, it's one line of code. But if that's too complicated then I'd say use the Lua functions. You'll love them :-p
by dannybloe
Sunday 03 February 2019 12:55
Forum: dzVents
Topic: Date and time calculations in dzvents [Solved]
Replies: 16
Views: 11705

Re: Date and time calculations in dzvents [Solved]

The .compare attribute of the compare() results should give you just that information I believe. I created the Time object and the compare function so you don't have to deal with Lua's horrible date/time support.
by dannybloe
Sunday 03 February 2019 11:12
Forum: dzVents
Topic: Date and time calculations in dzvents [Solved]
Replies: 16
Views: 11705

Re: Date and time calculations in dzvents [Solved]

Why don't you use dzVents Time object for this. Afaik it can do all of the above. Especially when you use the compare function.
by dannybloe
Tuesday 11 December 2018 6:44
Forum: dzVents
Topic: Current date and Date user variables
Replies: 2
Views: 1846

Re: Current date and Date user variables

Or you use the date object’s compare function. See the docs.
by dannybloe
Monday 03 December 2018 8:14
Forum: dzVents
Topic: dimTo doesn't work ? (Bug ?)
Replies: 5
Views: 780

Re: dimTo doesn't work ? (Bug ?)

Best is to see the log from the command-line as the web version of the log (in the GUI) seems to miss entries every now and then.
by dannybloe
Sunday 02 December 2018 17:16
Forum: dzVents
Topic: domoticz.time.matchesRule
Replies: 4
Views: 909

Re: domoticz.time.matchesRule

You can change the rule

Code: Select all

on 20/12,21/12,22/12,23/12,24/12,25/12,26/12,27/12,28/12,29/12,30/12,31/12
to

Code: Select all

on 20/12-31/12
and this one:

Code: Select all

on 23/10,24/10,25/10,26/10,27/10,28/10,29/10,30/10,31/10,1/11,2/11,3/11,4/11
to

Code: Select all

on 20/12-31/12,1/11-4/11
Much shorter :-)