# identify_wifi_MAC.py

# Display the hardware address from the WiFi chip.
# This may be needed for requesting network access.

# To try this, copy it to the CIRCUITPY drive as code.py, or just paste it at the REPL command line.

import wifi
mac = ':'.join([("%02x" % b) for b in wifi.radio.mac_address])
print("WiFi MAC:", mac)
