Search found 16 matches

by cantarevolare
Tuesday 09 January 2018 9:00
Forum: Other questions and discussions
Topic: Slack plugin or notifications group ?
Replies: 2
Views: 586

Slack plugin or notifications group ?

Hello, I wonder if there is a plugin for Domoticz as I saw on Jeedom. I saw a colleague having a "Slack" plugin : the notifications are sent to a Slack group (his family) and so, he knew when the heating turned on, when someone rang at the door, etc. Could you tell me if something like that is ...
by cantarevolare
Tuesday 19 December 2017 19:13
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Yes, I checked and there is only one device that's named like that. I tried with another device that's named differently, and there is still this return : 2017-12-19 19:14:58.226 dzVents: curtemp: I just thought of something and that's my bad of not telling you earlier, but this is a device that ...
by cantarevolare
Tuesday 19 December 2017 18:35
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

It says :
2017-12-19 18:30:03.214 dzVents: curtemp:

When I look at the json of the device, I found this :

Temp : 17.1
by cantarevolare
Tuesday 19 December 2017 13:25
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

up
by cantarevolare
Friday 15 December 2017 18:37
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

I found myself with print. I don't understand something, so I repost my script : commandArray = {} time = os.date("*t") -- Logic between 07:00 - 9:00 if time.hour >= 7 and time.hour <= 18 then if otherdevices["Radiateur chambre"] == 'Off' then commandArray["Radiateur chambre"]="On" print("Condition ...
by cantarevolare
Friday 15 December 2017 8:06
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Hello,

Is there a way to display the different value of variables in the log (or elsewhere), please ?

It could help me to know, every time it doesn't allow me to turn on (off) the heat, which conditions makes it happens and with which values.

Thank you in advance.
by cantarevolare
Thursday 14 December 2017 15:10
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Yes, these are the conditions. (I didn't know that time.hour <= 21 equals 21.59 and not 20.59 but I will correct it)
by cantarevolare
Thursday 14 December 2017 14:29
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

I don't understand: what are the cases that are not covered by this script, please ? There are already two majors conditions : before or after a certain hour, under or above a certain temperature.
by cantarevolare
Thursday 14 December 2017 13:59
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Thank you for this quick answer. If I saw what you changed, that's this part : elseif otherdevices["Radiateur chambre"] == 'Off' and curtemp < 18 then commandArray["Radiateur chambre"]="On" But the "commandArray["Radiateur chambre"]="Off"" was good because my switch is reversed : when the switch is ...
by cantarevolare
Thursday 14 December 2017 12:13
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Hello,

It won't work :(

No matter the temperature or the hour of the day, the event triggers and never allows me to switch the heat on :/
by cantarevolare
Friday 10 November 2017 9:34
Forum: Other questions and discussions
Topic: [Misc] Switch and logs
Replies: 1
Views: 344

[Misc] Switch and logs

Hello, Could you help me with these two questions, please ? 1- I have my switch for heating that are reversed : I have to put it to "Off" in order to switch on, and to "On" in order to switch off. I took the habit now but if there is a simple way to revert it, it could be cool ; 2- My temperatures ...
by cantarevolare
Friday 10 November 2017 9:26
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Thank you very much.
I just pasted it and I'll see these next days if it match what I wanted to do.
by cantarevolare
Thursday 09 November 2017 18:55
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

You don't misinterpret at all : it will only switch on the night when it's under 18. But, if the temperature go above 19 during the night, I expect it to turn off. I don't mind at all to begin coding in LUA. Could you guide me for the first condition and I'll try to make the rest, please ? Thank you ...
by cantarevolare
Thursday 09 November 2017 11:10
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

Re: [Problem] Event with time won't trigger

Hello, Ok, you must be right because this morning, I got a loop :( This is what I want to accomplish : * I want the heating switch to be OFF (but ON IRL) when it is the night (19:00 / 07:00) AND the temperature is under 18 and, of course, the heating switch is not already on OFF ; * I want the ...
by cantarevolare
Wednesday 08 November 2017 19:57
Forum: Blockly
Topic: [Problem] Event with time won't trigger
Replies: 21
Views: 3321

[Problem] Event with time won't trigger

Hello, I made this event to turn on the heating in a room when it is under a certain temperature and it is the night. I think the first works (thanks to the or condition) but the second won't work and I think that when I use time condition, it doesnt' work : https://img4.hostingpics.net/pics ...