Files
Sony-e-mount/Software/led.py

6 lines
128 B
Python

from machine import Pin
LED_ERR = Pin(25, Pin.OUT)
LED_DIR = Pin(3, Pin.OUT)
LED_MSG = Pin(6, Pin.OUT)
LED_OK = Pin(7, Pin.OUT)