micropython/ports/rp2/boards/WEACTSTUDIO/modules/board.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
92 B
Python
Raw Normal View History

from machine import Pin
led = Pin(25, Pin.OUT, value=0)
key = Pin(23, Pin.IN, Pin.PULL_UP)