Search found 2 matches

by Odolyte
Sun Jan 31, 2021 4:42 pm
Forum: Raspberry Pi microcontroller boards
Topic: "Import machine" not working on RPi Pico
Replies: 5
Views: 10125

"Import machine" not working on RPi Pico

Hi, with last micropython image : adafruit-circuitpython-raspberry_pi_pico-fr-6.2.0-beta.1.uf2 using Thonny, when i do a print("Hello Pico") everything works fine, but when i try to make the onboard led blink with : import machine import utime led_onboard = machine.Pin(25, machine.Pin.OUT) while Tru...
by Odolyte
Sun Jan 31, 2021 4:31 pm
Forum: Raspberry Pi microcontroller boards
Topic: "Import machine" not working on RPi pico
Replies: 1
Views: 3090

"Import machine" not working on RPi pico

Hi, with last micropython image : "adafruit-circuitpython-raspberry_pi_pico-fr-6.2.0-beta.1.uf2" a print ("hello world") works fine but when i try to make the onboard led blink with : import machine import utime led_onboard = machine.Pin(25, machine.Pin.OUT) while True: led_onboard.value(1) utime.sl...