# `Grizzly.ZWave.Commands.FailedNodeRemove`
[🔗](https://github.com/smartrent/grizzly/blob/v9.1.4/lib/grizzly/zwave/commands/failed_node_remove.ex#L1)

This command is used to remove a non-responding node. It will only succeed
if the controller has already put the node on the failed nodes list.

Params:

  * `:seq_number` - the sequence number of the networked command (required)
  * `:node_id` - The id of the node to be removed if failed as presumed (required)

When encoding the params you can encode for a specific command class version
by passing the `:command_class_version` to the encode options

```elixir
Grizzly.ZWave.Commands.FailedNodeRemove.encode_params(failed_node_remove)
```

If there is no command class version specified this will encode to version 4 of the
`NetworkManagementInclusion` command class. This version supports the use of 16 bit node
ids.

# `param`

```elixir
@type param() :: {:node_id, char()} | {:seq_number, Grizzly.ZWave.seq_number()}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
