LovrePetrovic
LovrePetrovic
A code example is this: `from machine import Pin import time led = Pin("LED", Pin.OUT) i = True while i: led.on() time.sleep(1) led.off() time.sleep(1) ` This code works fine in...
Hi, thanks for the response. Dsconnecting the board from Thonny didn't come to my mind but I tried it just now and the result is the same. I flashed the...
You are right, 25 should be used on the original Raspberry Pi Pico board but I'm using the Pico W and the code works in Thonny without any errors and...
Hi, somehow it is working now. I reinstalled PyCharm after a while and it succesfully pulls the module. I don't know how or why but compilation works. Btw, my is...