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

This command is used to advertise the measured RSSI on the Z-Wave network for
each used channel.

Params:

  * `:channels` - Each carries the measured RSSI value for the channel
  * `:long_range_primary_channel`- RSSI value on the Z-Wave Long Range primary
    channel (optional, v4 only)
  * `:long_range_secondary_channel`- RSSI value on the Z-Wave Long Range
    secondary channel (optional, v4 only)

# `param`

```elixir
@type param() ::
  {:channels,
   [
     Grizzly.ZWave.CommandClasses.NetworkManagementInstallationMaintenance.rssi()
   ]}
  | {:long_range_primary_channel,
     Grizzly.ZWave.CommandClasses.NetworkManagementInstallationMaintenance.rssi()}
  | {:long_range_secondary_channel,
     Grizzly.ZWave.CommandClasses.NetworkManagementInstallationMaintenance.rssi()}
```

---

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