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
Functions
Create a new SignalInfo struct
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@spec new( non_neg_integer(), non_neg_integer(), non_neg_integer(), non_neg_integer(), integer(), String.t() ) :: t()
Create a new SignalInfo struct