Search found 12 matches

by RobertH
Wednesday 30 March 2016 20:35
Forum: Z-Wave
Topic: Support domitech bulb and Forest curtain
Replies: 5
Views: 1510

Re: Support domitech bulb and Forest curtain

I'm also wondering if it's just a matter of adding the xml file in the right directory to get it working? If so I will pull the trigger on a few of these.

Sent from my SM-G925K using Tapatalk
by RobertH
Friday 18 March 2016 8:36
Forum: Design, usability and languages
Topic: NEW frontpage.html - request comments
Replies: 1301
Views: 426761

Re: NEW frontpage.html - request comments

Hi, Im starting to get the status page like I want it: status.png But I would like to integrate "+ VOL -" into one cell, so when you press + it adjust volume up and the opposit for -. And pressing the VOL would toggle mute. Is this in any way possible? Below I have the curl commands. I could not ...
by RobertH
Tuesday 15 March 2016 18:47
Forum: PHP and all others
Topic: Set TEXT of a virtual text device with spaces
Replies: 4
Views: 2113

Re: Set TEXT of a virtual text device with spaces

Use %20 for space.

Sent from my SM-G925K using Tapatalk
by RobertH
Wednesday 09 March 2016 13:40
Forum: Others
Topic: Is Domoticz able to activate RGBW animation programs?
Replies: 38
Views: 14515

Re: Is Domoticz able to activate RGBW animation programs?

Use inspect element and then see under network the url it sends in Chrome.

Sent from my SM-G925K using Tapatalk
by RobertH
Wednesday 09 March 2016 13:26
Forum: LUA
Topic: Help with Waze ETA script
Replies: 8
Views: 2232

Re: RE: Re: Help with Waze ETA script

I see that you use my version of the script. I did not try it in windows, but after some testing now i see that all you need is to install curl. I downloaded curl from here http://winampplugins.co.uk/curl/ and copied it to c:\windows If JSON.lua is in the same directory as the script, then you ...
by RobertH
Wednesday 09 March 2016 8:44
Forum: LUA
Topic: Help with Waze ETA script
Replies: 8
Views: 2232

Help with Waze ETA script

Hi, I have tried to modifie the script under to work under Windows I changed the include path of the JSON parser file but I still gives me an error, the file is there and the name is exactly the same. Could this be the curl part and how would I go about changing it? From log: 2016-03-09 08:43:00.070 ...
by RobertH
Friday 12 February 2016 10:31
Forum: Suggestions
Topic: Mode-selector / multistate device
Replies: 104
Views: 47067

Re: Mode-selector / multistate device

Finally, I set the original activity devices to "unused" in the devices page. Hmm, interesting - you can set them to unused and still everything works? I would've assumed you cannot control the activities with them anymore after that. My approach was: commandArray = {} if devicechanged['Media ...
by RobertH
Thursday 11 February 2016 11:04
Forum: Other questions and discussions
Topic: Cleaning IDX
Replies: 21
Views: 7178

Re: Cleaning IDX

Is it in some way possible to see wich IDX belong to for example a Fibaro dimmer?
Because sometimes you add more than one new z wave unit and over a little time they add some extra devices.
by RobertH
Tuesday 05 January 2016 19:13
Forum: LUA
Topic: Solved: Need help with LUA script for Fibaro Dimmer
Replies: 1
Views: 1666

Re: Need help with LUA script for Fibaro Dimmer

After much fiddeling I finally managed to solve it on my own. Here is the solution in case it helps somebody else: commandArray = {} if (devicechanged['Stue dimmer S2 1 click'] == 'On') then if (otherdevices['Dimmer Stue'] == 'Off' or otherdevices['Stue lamp 1'] == 'Off' or otherdevices['Stue lamp 2 ...
by RobertH
Saturday 26 December 2015 14:25
Forum: LUA
Topic: Solved: Need help with LUA script for Fibaro Dimmer
Replies: 1
Views: 1666

Solved: Need help with LUA script for Fibaro Dimmer

Hi, I already have a LUA device script that I am using but I would like to add some additional functionality to it. This is what I am using now: commandArray = {} if (devicechanged['Stue dimmer S2 1 click'] == 'On') then commandArray['Group:LivingRoom']='On' elseif (devicechanged['Stue dimmer S2 2 ...
by RobertH
Tuesday 01 December 2015 8:28
Forum: LUA
Topic: SOLVED: Problem with LUA
Replies: 3
Views: 1029

Re: Problem with LUA

Got it solved. By stupid mistake I had not set the devices to used, which was something I did when I named them for the other switch. My bad!
by RobertH
Monday 30 November 2015 9:02
Forum: LUA
Topic: SOLVED: Problem with LUA
Replies: 3
Views: 1029

SOLVED: Problem with LUA

Hello, I have 2 lua scripts called: script_device_dimmerstue.lua and script_device_dimmersoverom.lua The first one was added first and is working, nothing happens on the second one but I can see the buttons beeing reffered to is triggered in the log. First script: commandArray = {} if (devicechanged ...