Skip to content

Commit

Permalink
Merge pull request #59 from zwave-js/dev
Browse files Browse the repository at this point in the history
3.7.1
  • Loading branch information
marcus-j-davies authored May 29, 2021
2 parents 17b7c8d + 77425f0 commit 577de59
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# node-red-contrib-zwave-js Change Log

- 3.7.1
- Fix typo in **SetRFRegion** code

- 3.7.0
- Added **ToggleRF** method to the **Controller** class
- Added **SetRFRegion** and **GetRFRegion** methods to the **Controller** class
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-zwave-js",
"version": "3.7.0",
"version": "3.7.1",
"license": "MIT",
"description": "An extremely easy to use, zero dependency and feature rich Z-Wave node for Node Red, based on Z-Wave JS.",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion zwave-js/zwave-js.js
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ module.exports = function (RED) {

case "SetRFRegion":
await Driver.controller.setRFRegion(Enums.RFRegion[Params[0]]);
Send(ReturnController, "RF_REGION_SET", Enums.RFRegion[RFR], send);
Send(ReturnController, "RF_REGION_SET", Params[0], send);
break;

case "ToggleRF":
Expand Down

0 comments on commit 577de59

Please sign in to comment.