From 4ecc479228973d503b7fc3db0d4d44ff2dd69d28 Mon Sep 17 00:00:00 2001 From: proflamyt <53262578+proflamyt@users.noreply.github.com> Date: Fri, 18 Nov 2022 15:34:19 +0100 Subject: [PATCH] Update Win32Wifi.py Added Received Signal Strength Indicator to values returned by WirelessNetwordBss --- win32wifi/Win32Wifi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/win32wifi/Win32Wifi.py b/win32wifi/Win32Wifi.py index 75aab60..835ce71 100644 --- a/win32wifi/Win32Wifi.py +++ b/win32wifi/Win32Wifi.py @@ -141,6 +141,7 @@ def __str__(self): result += "BSS Type: %s\n" % self.bss_type result += "PHY Type: %s\n" % self.phy_type result += "Capabilities: %d\n" % self.capabilities + result += "Rssi: %d\n" % self.rssi # result += "Raw Information Elements:\n" # result += "%r" % self.raw_information_elements result += "\nInformation Elements:\n"