added hardware board software and PC control guide

This commit is contained in:
2026-03-02 19:21:00 +01:00
parent 6775b5abec
commit c9d16c4a9b
6 changed files with 416 additions and 29 deletions

6
Software/led.py Normal file
View File

@@ -0,0 +1,6 @@
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)