from machine import Pin
from time import sleep , ticks_us
led = Pin(2,Pin.OUT)
print("Hello, ESP32!")
# while True:
#   led.on()
#   sleep(1)
#   led.off()
#   sleep(1)
def myFunc():
  print("OK")
while True:
  ticks_us()