Type alias WifiInterface

WifiInterface: {
    enabled: boolean;
    encryption?: WifiEncryption;
    key?: string;
    ssid?: string;
}

Configuration of a WiFi interface (client or access-point).

Type declaration

  • enabled: boolean

    Enable or disable the WiFi interface.

  • Optional encryption?: WifiEncryption

    WiFi encryption protocol to use for this network.

  • Optional key?: string

    Pre-shared key for the WiFi network if encryption is enabled. Minimum length is 8 characters.

  • Optional ssid?: string

    SSID (name) of the WiFi network.

Generated using TypeDoc