mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
6 lines
137 B
Python
6 lines
137 B
Python
from machine import Pin, Signal
|
|
|
|
# Freescale/NXP FRDM-K64F board
|
|
# Blue LED on port B, pin 21
|
|
LED = Signal(Pin(("GPIO_1", 21), Pin.OUT))
|