Elias Karakoulakis
Elias Karakoulakis
if you can get me an zwave thermostat that'd be handy :) just kidding, we just need an example of how are thermostat values set using OpenZWave, then I can...
`Unhandled Command Class 0x30` but I see that this command class is now supported: http://www.openzwave.com/dev/classOpenZWave_1_1SensorBinary.html What version of the OZW lib do you have?
there's a custom TimeParameters class defined in ozw which the 7-byte payload is defined: https://github.com/OpenZWave/open-zwave/blob/master/cpp/src/command_classes/TimeParameters.cpp#L196-L208 Judging by this line however: https://github.com/OpenZWave/open-zwave/blob/master/cpp/src/command_classes/TimeParameters.cpp#L217 seems that the valueType for TIME_PARAMETERS_SET is a...`ValueType_Button` (I'd...
We probably need to refactor this in a way that doesn't break existing clients. This project already has 16 or so dependants. Maybe pass in the required API version upon...
How about creating an interim object encapsulating the homeId via the connect() return value? something like: ``` const zwave = new OpenZWave({ ConsoleOutput: false }); // let's start two zwave...
I've started working on a new branch to enable multiple drivers. I'm going to do this in a way outlined above, namely without breaking the existing API, and using `Connect()`...
ok, I've got something on a branch that you can test: https://github.com/OpenZWave/node-openzwave-shared/tree/feature/multiple-drivers I've also changed the API to reflect the ability to connect() to multiple controllers, so take a look...
This is a known issue about OpenZWave and there's no easy way around it. Some ZWave devices don't even bother to report a manual status change, and you need to...
Hi Chris. Try searching for "node-red-contrib-openzwave" for a nice way to use node.js as a GUI for zwave. Στις 4 Ιουν 2015 1:30 π.μ., ο χρήστης "Chris Bongers" < [email protected]>...
Hey, what sja is saying is that you have to wait for the library to finish its initialisation. Just copy up the example code (with all the event handlers) up...