interface WifiAccessPoint {
    age?: number;
    channel?: number;
    macAddress: string;
    signalStrength?: number;
    signalToNoiseRatio?: number;
}

Properties

age?: number

The number of milliseconds since this access point was detected.

channel?: number

The channel over which the client is communicating with the acces.

macAddress: string

The MAC address of the WiFi node. It's typically called a BSS, BSSID or MAC address. Separators must be : (colon).

signalStrength?: number

The current signal strength measured in dBm.

signalToNoiseRatio?: number

The current signal to noise ratio measured in dB.