Type alias NetdGetWifiStaStatusResponse

NetdGetWifiStaStatusResponse: {
    bssid: string;
    frequency: number;
    link_speed: number;
    noise: number;
    rssi: number;
    ssid: string;
    state: WifiStaState;
}

Status of wifi station.

Type declaration

  • bssid: string

    BSSID of the network.

  • frequency: number

    Frequency of the network in MHz.

  • link_speed: number

    Estimated link speed in Mbps.

  • noise: number

    Noise level in dBm.

  • rssi: number

    Received signal strength indicator (RSSI) of the network in dBm.

  • ssid: string

    SSID of the network.

  • state: WifiStaState

    Current state of Wi-Fi client.

Generated using TypeDoc