Skip to content

Release v1.0.0

Compare
Choose a tag to compare
@marcus-j-davies marcus-j-davies released this 24 Dec 09:46
· 24 commits to main since this release
c773b3b
  • Versions

    • ZWave JS Driver Version: 8.9.1
    • ZWave JS Server Version: 1.14.0 (Schema Version 14)
  • Breaking Changes

    • endpoints object is no longer accessible on the ZWaveNode class, instead, they are acessed via
      ZWaveNode.GetEndpoint(int Index)

    • InvokeCCAPI no longer accepts an endpoint, instead InvokeCCAPI is now called on the ZWaveNode class itself,
      or an instance of Endpoint as obtained by ZWaveNode.GetEndpoint(int Index)

      These 2 changes now mirror the zwave-js API with regards to endpoint access.

      Examples:

      Driver.Controller.Nodes.Get(4).InvokeCCAPI(int CommandClass, string Method, params object[] Params)
      Driver.Controller.Nodes.Get(4).GetEndpoint(2).InvokeCCAPI(int CommandClass, string Method, params object[] Params)
  • New Features

    • Added ability to set a nodes name
    • Added ability to set a nodes location
    • Added ability to set a flag on a node to keep it awake.
    • Added the zwave-js getValue method
  • Fixes

    • Fix property setter loop
  • Changes

    • Bump ZWave JS Driver
    • Bump ZWave JS Server
    • Synchronise isHealNetworkActive