from machine import Pin
from utime import sleep
import network
if hasattr(network, "WLAN"):
# the board has WLAN capabilities
print("Hello, Pi PicoW!")
else:
print("Hello, Pi Pico!")
led5 = Pin(5, Pin.OUT)
while True:
led5.toggle()
sleep(0.5)