Search found 16 matches

by Mavy
Thursday 27 March 2014 9:44
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: [120] opentherm gateway

gizmocuz wrote:Strange, don't have this issue here....
Running 1657 i still cannot remove the protection from the setpoint device. Its working fine for switches tho.
by Mavy
Wednesday 26 March 2014 7:52
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: [120] opentherm gateway

I just noticed that my domoticz says its still at 1645. Is this an issue in the update file or is my domoticz really now updating?

PS: I have tried to manually download the update file but the issue remained after that.
by Mavy
Tuesday 25 March 2014 12:32
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: [120] opentherm gateway

I checked and i can change the setpoint. I was also able to turn protection on and change the setpoint after that. However i can not turn the protection off anymore.
by Mavy
Friday 21 March 2014 9:41
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: [120] opentherm gateway

Anybody?
by Mavy
Wednesday 19 March 2014 10:53
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: [120] opentherm gateway

Where any changes made to the set point functionality? For some weird reason i cannot change the setpoint from domoticz anymore.
If i update the value nothing happens. There is not even a message in the log saying its being updated.
by Mavy
Sunday 09 March 2014 16:22
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: opentherm gateway

Ah ok, i was trying to debug a lua script but the amount of updates from the otgw made it nearly impossible. Ended up disabling otgw while i was debugging.
by Mavy
Friday 07 March 2014 14:22
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: opentherm gateway

Is there a way to turn of the OTGW logging in domoticz? My log is filled these lines: Fri Mar 7 14:20:04 2014 (Heater) Thermostat (Heater Room Setpoint) Fri Mar 7 14:20:04 2014 (Heater) Temperature (Heater Room Temp) Fri Mar 7 14:20:04 2014 (Heater) Temperature (Boiler Water Temperature) Fri Mar 7 ...
by Mavy
Thursday 06 March 2014 9:07
Forum: OpenTherm gateway
Topic: [120] opentherm gateway
Replies: 381
Views: 135223

Re: opentherm gateway

I think these are the ID's you are looking for. Flame status (Off/On) = OpenTherm MsgID=0 (ID0:LB3: Slave Status: Flame status) CH Mode (Off/On) = OpenTherm MsgID=0 (ID0:HB0: Master status: CH enable) DHW Mode (Off/On) = OpenTherm MsgID=0 (ID0:HB1: Master status: DHW enable) Max Modulation level ...
by Mavy
Sunday 23 February 2014 14:43
Forum: Other questions and discussions
Topic: Domoticz and LightwaveRF with wifi Link
Replies: 21
Views: 9064

Re: Domoticz and LightwaveRF with wifi Link

sadly this wont work that easy, the built in lua does not support dynamic libraries. @Mathiasw: Yes curl does allow me to do what i would like but it has one major down side. It spawns as a child of domoticz. So when you stop domoticz while a curl thread is running your domoticz will hang until you ...
by Mavy
Tuesday 18 February 2014 10:03
Forum: Switches and Scenes
Topic: ACDB-6500BC doorbell
Replies: 31
Views: 7431

Re: ACDB-6500BC doorbell

What exactly are you trying to achieve? As said before the doorbell only send an on command, so you wont actually see anything change other then a new on record in the log.
by Mavy
Saturday 15 February 2014 22:37
Forum: Switches and Scenes
Topic: ACDB-6500BC doorbell
Replies: 31
Views: 7431

Re: ACDB-6500BC doorbell

I am using this same doorbell and for me it worked without any issues. The only difference i can see is that i have ATI,AD and Hideki enabled.

@mbliek, i am pretty sure the 6500BC is an ARC devices because it has the Letter code selector.
by Mavy
Saturday 15 February 2014 12:12
Forum: LUA
Topic: Wake up Light
Replies: 24
Views: 11525

Re: Wake up Light

I would add a check in the loop to check if a light is Off before starting to dim it. This is to prevent the wakeup from starting if the light is already On. Another thing i would do is add a condition to stop the wake up sequence if the light is turned Full On or Off (So your able to turn the ...
by Mavy
Saturday 15 February 2014 10:44
Forum: LUA
Topic: Wake up Light
Replies: 24
Views: 11525

Re: Wake up Light

Oh nice idea, i hadn't thought of using the last update. The json code is here http://regex.info/blog/lua/json
by Mavy
Saturday 15 February 2014 3:38
Forum: LUA
Topic: Wake up Light
Replies: 24
Views: 11525

Re: Wake up Light

The original script i tried was: commandArray = {} if (devicechanged['Bedroom Rene Wakeup'] == 'On') then if (otherdevices['Bedroom Rene Light'] == 'Off') then print("Wake up light on!") for i = 1, 16, 1 do print("Setting Level: "..i) oss = "curl 'http://127.0.0.1:8080/json.htm?type=command&param ...
by Mavy
Friday 14 February 2014 9:05
Forum: LUA
Topic: Wake up Light
Replies: 24
Views: 11525

Re: Wake up Light

I did see that thread but that script kind of defeats the purpose of domoticz. Plus it has a similar issue as the bash script i mentioned earlier. There is no decent way to get a single device status using json.
by Mavy
Thursday 13 February 2014 23:28
Forum: LUA
Topic: Wake up Light
Replies: 24
Views: 11525

Wake up Light

Hi Everyone, I was wondering if anyone has managed to create some sort of wake up light using domoticz yet. I tried to create one but all my efforts so far have failed. At first i tried to use a blocky based event, however I seem to be missing a basic function in the blocky event builder. That ...