You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But now to my problem. When I have this code as main.py:
from machine import *
import picosleep
led = Pin(25, Pin.OUT)
def blink():
led.toggle()
while True:
picosleep.seconds(3)
blink()
my Pico doesn't seem to be accessible when connecting it to the computer. So when I want to make changes to the program, I have to flash_nuke it in order to function.
Maybe this is my error, I'm just new to this subject :)
Anyways, any help would be appreciated!