diff -r 3be7b2326e2c -r 4402d76c5fa9 src/eric7/MicroPython/Devices/DeviceBase.py --- a/src/eric7/MicroPython/Devices/DeviceBase.py Fri Feb 24 14:11:20 2023 +0100 +++ b/src/eric7/MicroPython/Devices/DeviceBase.py Fri Feb 24 18:36:43 2023 +0100 @@ -1013,7 +1013,7 @@ except AttributeError: res['flash_info_available'] = False -import ubinascii as __ba_ +import binascii as __ba_ try: import machine as __mc_ if isinstance(__mc_.freq(), tuple): @@ -1203,11 +1203,11 @@ """ Public method to get data related to the current WiFi status. - @return tuple of two dictionaries containing the WiFi status data - for the WiFi client and access point - @rtype tuple of (dict, dict) + @return tuple of three dictionaries containing the WiFi status data + for the WiFi client, access point and overall data + @rtype tuple of (dict, dict, dict) """ - return {}, {} + return {}, {}, {} def connectWifi(self, ssid, password): """