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