Raspberry Pi へのコメント:ソフトウェアのトラブルシューティング https://picockpit.com/raspberry-pi/ja/%e3%83%a9%e3%82%ba%e3%83%99%e3%83%aa%e3%83%bc%e3%83%91%e3%82%a4%e3%81%ae%e3%82%bd%e3%83%95%e3%83%88%e3%82%a6%e3%82%a7%e3%82%a2%e3%81%ae%e3%83%88%e3%83%a9%e3%83%96%e3%83%ab%e3%82%b7%e3%83%a5%e3%83%bc/ ー 土, 24 Feb 2024 22:28:52 +0000 一刻一刻 1 https://wordpress.org/?v=6.9.4 ビクター・ザバラ より https://picockpit.com/raspberry-pi/ja/%e3%83%a9%e3%82%ba%e3%83%99%e3%83%aa%e3%83%bc%e3%83%91%e3%82%a4%e3%81%ae%e3%82%bd%e3%83%95%e3%83%88%e3%82%a6%e3%82%a7%e3%82%a2%e3%81%ae%e3%83%88%e3%83%a9%e3%83%96%e3%83%ab%e3%82%b7%e3%83%a5%e3%83%bc/#comment-18595 ー 土, 24 Feb 2024 22:28:52 +0000 https://picockpit.com/raspberry-pi/?p=6855#comment-18595 señores, cordila saludo, su ayuda para solucionar problema con la ejecucion de comandos para una raspberry pi pico w, en la shell me sale: MPY: soft reboot.
Antes había escrito varios programas y funcionaba bien. Pero ya no funciona , ni siquiera para este sencillo ejemplo del led de parpadeo:
rom machine import Pin
import time

led = Pin(25, Pin.OUT) # Pico LED
#led = Pin(“LED”, Pin.OUT) # Pico W LED

try:
while True:
led.value(1) # Set led turn on
time.sleep(0.5) # Sleep 0.5s
led.value(0) # Set led turn off
time.sleep(0.5) # Sleep 0.5s
except:
pass

]]>