import time
import machine
time.sleep(5)
print("hello Tomaree")
LED_PIN = 0
BUTTON_PIN = 14
LED_PIN2 = 1
led = machine.Pin(LED_PIN, machine.Pin.OUT)
led2 = machine.Pin(LED_PIN2, machine.Pin.OUT)
button = machine.Pin(BUTTON_PIN, machine.Pin.IN, machine.Pin.PULL_UP)
while True
if not button.value():
led.on()
led2.on()
print("LED ON!")
time.sleep(0.5)
else:
led.off()
LED_PIN2.off()
print("LED OFF!")
time.sleep(0.5)