mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 01:40:34 +02:00
6 lines
105 B
Python
6 lines
105 B
Python
from machine import Pin
|
|
|
|
# ESP12 module as used by many boards
|
|
# Blue LED on pin 2
|
|
LED = Pin(2, Pin.OUT)
|