from machine import Pin
from time import sleep

led_biru = Pin(2, Pin.OUT)
while True:
 led_biru.value(not led_biru.value())
 sleep(0.5)