Search found 20 matches

by wavedoff
08 Nov 2018 16:58
Forum: Discussions in English
Topic: [2.3.8] Rules Transformation
Replies: 1
Views: 2970

Re: [2.3.8] Rules Transformation

I cannot get any of the new rules or scenes systems to work. I'm just continuing to use the old system until it gets sorted out. (I've not gotten a response to my original thread on the subject so I've no idea when that will be.)

Just delete the transformed scenes/rules and re-enable the old ones.
by wavedoff
17 Oct 2018 22:26
Forum: Discussions in English
Topic: New Scenes and Rules menus not functioning in 2.3.8?
Replies: 1
Views: 2577

New Scenes and Rules menus not functioning in 2.3.8?

I translated my old scenes and rules to the new system. It seemed to work fine, but upon testing I'm getting errors. Have I done something wrong? If I try and setup a new rule The only device available to me is sending a notification. I cannot assign a device. My existing rules look like this. if.PN...
by wavedoff
17 Oct 2018 22:05
Forum: Discussions in English
Topic: Will there be Farenheit support for the new 2.3.8 heating control system?
Replies: 0
Views: 2941

Will there be Farenheit support for the new 2.3.8 heating control system?

The new heating control system looks pretty neat, but it only works in Celsius.

Is there any chance we could get Fahrenheit support for it? I'd like to use it instead of the thermostat scheduler app, but everything in my system is setup for Fahrenheit.
by wavedoff
26 Aug 2018 16:20
Forum: RaZberry
Topic: Help with associations needed
Replies: 6
Views: 6740

Re: Help with associations needed

PoltoS meant "scenes". I guess his autocorrect misfired. Scenes are the primary way you control stuff with Z-wave. https://z-wave.me/essentials This documentation will help you out a lot. It is tempting to try and directly control devices with IF->Then rules, but it is always better to hav...
by wavedoff
22 May 2018 19:42
Forum: Discussions in English
Topic: Make BaseModule ignore erroneous sensor values?
Replies: 4
Views: 4702

Re: Make BaseModule ignore erroneous sensor values?

Removed periodic sensor polling entirely, and setup everything to send reports automatically. Got a report that it was 4.8 million degrees in my bathroom. :shock: I've also gotten a read of 0 volts out of one of my Zooz wall plugs as well. It seems that z-way needs some sort of sanity check for this...
by wavedoff
22 May 2018 00:38
Forum: Discussions in English
Topic: Make BaseModule ignore erroneous sensor values?
Replies: 4
Views: 4702

Re: Make BaseModule ignore erroneous sensor values?

Thank you for the response! I am using periodic sensor polling, so you may have encountered the same thing as me. Sometimes it will be fine for days, and other times it will bug out half a dozen times. I will play around with longer polling intervals and disabling it entirely, and see if the issue i...
by wavedoff
17 May 2018 16:51
Forum: Discussions in English
Topic: Make BaseModule ignore erroneous sensor values?
Replies: 4
Views: 4702

Make BaseModule ignore erroneous sensor values?

So I occasionally get absolutely crazy outputs from the sensors in my Z-wave network. For example, My bedroom has never reached 410 degrees :lol: zsensorerror.PNG This does not just happen with my Aeotec Multisensors, this also happens with the voltage readings from my Zooz power switches, and a cou...
by wavedoff
31 Jan 2018 10:19
Forum: Recipes
Topic: [userModule] Base Module (Updated 2017/01/22)
Replies: 24
Views: 40211

Re: [userModule] Base Module (Updated 2017/01/22)

Line 82 of base module describes some code that should throw a warning when values change too much between updates, with a TODO of making it reject these values as well. // Warn on big level changes - TODO maybe deny too big changes if (deviceType === 'sensorMultilevel') { var diff = Math.abs(lastLe...
by wavedoff
24 Nov 2017 23:14
Forum: Device specific
Topic: Remotec ZTS-500US Thermostat won't complete interview
Replies: 2
Views: 5455

Re: Remotec ZTS-500US Thermostat won't complete interview

I was able to get myself a workaround for this problem. Since the ZTS-500US doesn't create a UI element to tell you the operational status of the heater, I used the HTTP Device app to create one. URL to use is as follows, replace X with correct variable for your setup. http://X.X.X.X:8083/ZWave.zway...
by wavedoff
28 Oct 2017 16:01
Forum: Device specific
Topic: Remotec ZTS-500US Thermostat won't complete interview
Replies: 2
Views: 5455

Re: Remotec ZTS-500US Thermostat won't complete interview

So I've been poking around a bit. No luck with completing the interview, but the the following HTTP request will return a value that will tell me if the thermostat is calling for heating (1), cooling (2), or is off (0). /ZWave.zway/Run/devices[27].instances[0].commandClasses[66].data.state.value So ...