Skip to content

Commit

Permalink
Update Node.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
XLDom authored Oct 17, 2023
1 parent 673d508 commit d57ebfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/zwave-js/src/lib/node/Node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3018,10 +3018,10 @@ protocol version: ${this.protocolVersion}`;
return this.handleBasicCommand(command);
} else if (command instanceof MultilevelSwitchCC) {
return this.handleMultilevelSwitchCommand(command);
} else if (command instanceof BinarySwitchCCSet) {
return this.handleBinarySwitchSetCommand(command);
} else if (command instanceof ThermostatModeCCSet) {
return this.handleThermostatModeSetCommand(command);
} else if (command instanceof BinarySwitchCCSet) {
return this.handleBinarySwitchSetCommand(command);
} else if (command instanceof ThermostatModeCCSet) {
return this.handleThermostatModeSetCommand(command);
} else if (command instanceof CentralSceneCCNotification) {
return this.handleCentralSceneNotification(command);
} else if (command instanceof WakeUpCCWakeUpNotification) {
Expand Down

0 comments on commit d57ebfb

Please sign in to comment.