created v0.3 functional software prototype

This commit is contained in:
2024-07-20 09:46:59 +02:00
parent b2597a60c7
commit fafa874b43
15 changed files with 377 additions and 0 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_STOP = Pin(6, Pin.OUT)
LED_OK = Pin(7, Pin.OUT)