from machine import *

print("Hello, ESP32!")

switch = Pin(14, Pin.OUT)

while True:
    status = switch.value()
    print(status)
    sleep(1)