mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00
6 lines
152 B
Python
6 lines
152 B
Python
from machine import Pin, Signal
|
|
|
|
# ESP12 module as used by many boards
|
|
# Blue LED on pin 2, active low (inverted)
|
|
LED = Signal(2, Pin.OUT, invert=True)
|