View Source VintageNetWiFi.SignalInfo (vintage_net_wifi v0.12.5)

Information about active connection signal levels

  • :center_frequency1 - center frequency for the first segment
  • :center_frequency2 - center frequency for the second segment (if relevant)
  • :frequency - control frequency
  • :linkspeed - current TX rate
  • :signal_dbm - current signal in dBm (RSSI)
  • :signal_percent - signal quality in percent
  • :width - channel width

Summary

Types

@type t() :: %VintageNetWiFi.SignalInfo{
  center_frequency1: non_neg_integer(),
  center_frequency2: non_neg_integer(),
  frequency: non_neg_integer(),
  linkspeed: non_neg_integer(),
  signal_dbm: integer(),
  signal_percent: 0..100,
  width: String.t()
}

Functions

Link to this function

new(center_frequency1, center_frequency2, frequency, linkspeed, signal_dbm, width)

View Source

Create a new SignalInfo struct