********************************* deviceReset_pico.txt ********************************* # This example demos the Cytron Maker Pi Pico import machine import utime from machine import Pin #for PicoLe-22 #by D@CC #on 2021EMay24 progName="deviceReset_pico.py" print("Reset: program blinks leds 0- 25 on, then off") print(" then sets many pins as input") for GPnn in range(0,26): #except 26 ISSUE print("after setting GP25 as IN") for GPnn in range(26,30): #except 31 print(" Now GP20,21,22 LEDs all blinking, ADC0(GP26) might be ON") # deviceReset_pico.py # source: none # date: 2021EMay24 ********************************* /deviceReset_pico.txt