class WifiInformation

August 13, 2019 ยท View on GitHub

Member values

Member nameData typeDescriptionUsage
ssidSsidSSIDTo set ssid, you simply assign a value directly to a field within ssid. You can also use the parent message's HasField() method to check if a message type field value has been set.
security_typeintWi-Fi security typeYou can manipulate the field security_type as if it were a regular field. To clear the value of security_type and reset it to the default value for its type, you call the ClearField() method of the Message interface.
encryption_typeintWi-Fi encryption typeYou can manipulate the field encryption_type as if it were a regular field. To clear the value of encryption_type and reset it to the default value for its type, you call the ClearField() method of the Message interface.
signal_qualityintWi-Fi signal qualityYou can manipulate the field signal_quality as if it were a regular field. To clear the value of signal_quality and reset it to the default value for its type, you call the ClearField() method of the Message interface.
signal_strengthintWi-Fi signal power in dBmYou can manipulate the field signal_strength as if it were a regular field. To clear the value of signal_strength and reset it to the default value for its type, you call the ClearField() method of the Message interface.
frequencyintWi-Fi operating frequency (channel) in MHzYou can manipulate the field frequency as if it were a regular field. To clear the value of frequency and reset it to the default value for its type, you call the ClearField() method of the Message interface.
channelintWi-Fi operating channelYou can manipulate the field channel as if it were a regular field. To clear the value of channel and reset it to the default value for its type, you call the ClearField() method of the Message interface.

Parent topic: Base (Python)