Page 3 of 3

Re: [userMODULE] OpenRemoteHelpers

Posted: 18 Jan 2016 18:06
by pz1
Look inside the very old RaZ-OR module
https://github.com/pz1/Razberry/blob/ma ... nremote.js

starting at line 180

It does something with the Math.round function.

Re: [userMODULE] OpenRemoteHelpers

Posted: 18 Jan 2016 20:29
by pierre2302
It's perfect, thank you !!

Re: [userMODULE] OpenRemoteHelpers (iOS client)

Posted: 08 Feb 2016 19:04
by pz1
There is a new completely rewritten beta release of the OpenRemote iOS client. Further instructions on the OR site.

Re: [userMODULE] OpenRemoteHelpers

Posted: 16 Feb 2016 00:49
by winston
Hi , I Check the operability of the commands (dimmer-->http://raspberry_ip:8083/OpenRemote/SwitchMultilevelSet/2/0/50) from the browser and this sends me the message "404 not found". This from openremote not work

Re: [userMODULE] OpenRemoteHelpers

Posted: 16 Feb 2016 11:10
by pz1
winston wrote:Hi , I Check the operability of the commands (dimmer-->http://raspberry_ip:8083/OpenRemote/SwitchMultilevelSet/2/0/50) from the browser and this sends me the message "404 not found". This from openremote not work
See second warning on the Openremote page

Re: [userMODULE] OpenRemoteHelpers

Posted: 21 Oct 2017 22:35
by pierre2302
Hello

I think there is a problem on the alarmsensor command

we must replace:

Code: Select all

case "AlarmStatus":
                // there are usually no instances for alarms
                return (zway.devices[N].AlarmSensor.data.level.value == 0) ? "off" : "on" ;



by :

Code: Select all

case "AlarmStatus":
		var T = params.shift();
                return (zway.devices[N].instances[I].AlarmSensor.data[T].sensorState.value == 0) ? "off" : "on" ;
Necessary for the flood sensor and the smoke detector.