View Source Grizzly.ZWave.Commands.FailedNodeReplace (grizzly v7.4.2)

Command for FAILED_NODE_REPLACE

Params:

  • :seq_number - the sequence number for the network command (required)
  • :mode - the inclusion mode (optional default :node_add_any_s2)
  • :tx_opts - the transmission options (optional default :explore)

If your controller does not support the NETWORK_MANAGEMENT_INCLUSION version 2, you will ned to pass :node_add_any as the :mode parameter.

This command should return the NodeAddStatus report after inclusion is complete.

Summary

Types

@type mode() ::
  :start_failed_node_replace
  | :stop_failed_node_replace
  | :start_failed_node_replace_s2
@type param() ::
  {:mode, mode()} | {:tx_opt, tx_opt()} | {:seq_number, Grizzly.seq_number()}
@type tx_opt() :: :null | :low_power | :explore

Functions

@spec decode_mode(byte()) :: {:ok, mode()} | {:error, Grizzly.ZWave.DecodeError.t()}
@spec encode_mode(mode()) :: byte()