WiFiManager icon indicating copy to clipboard operation
WiFiManager copied to clipboard

added get_ip()

Open peterpalfi opened this issue 2 years ago • 1 comments

peterpalfi avatar Apr 02 '22 23:04 peterpalfi

@peterpalfi Why not get that info directly from the main.py code?

...
# Main Code goes here, wlan is a working network.WLAN(STA_IF) instance.
print("ESP OK")

print(wlan.ifconfig())
print('IP', wlan.ifconfig()[0])
print('RSSI', wlan.status('rssi'))

ebolisa avatar Apr 03 '22 09:04 ebolisa