from picozero import LED from time import sleep led = LED(25) while 1 : led.toggle() print( "\b"*4, led.value, end="" ) sleep(1) pass