Search found 2 matches

by djpearson
Mon Oct 04, 2021 6:55 pm
Forum: Raspberry Pi microcontroller boards
Topic: Cannot Unstuck Raspbery Pi Pico
Replies: 6
Views: 7248

Re: Cannot Unstuck Raspbery Pi Pico

I did a bit more rework on this and have a solution now. Thought I would document it here. Just FYI, I tweaked the code to produce a print output: import machine import time led_onboard = machine.Pin(25, machine.Pin.OUT) while True: led_onboard.toggle() current = time.time() time.sleep(3.123) now = ...
by djpearson
Mon Oct 04, 2021 6:11 am
Forum: Raspberry Pi microcontroller boards
Topic: Cannot Unstuck Raspbery Pi Pico
Replies: 6
Views: 7248

Re: Cannot Unstuck Raspbery Pi Pico

Perhaps a related question.... I just received my pi pico and successfully ran my simple blink script below using Thonny. Should be a no-brainer, right? Well it worked and then I decided to save it to the pico as main.py Of course it works also when the USB was disconnected and reconnected, as I had...