From c0c767b0f92a7f20cd4c89e5d3089d0ef25e7c1d Mon Sep 17 00:00:00 2001 From: yaba-source <12479yp@gmx.de> Date: Fri, 27 Jun 2025 08:41:06 +0000 Subject: [PATCH] clean up --- micropython/testmain.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 micropython/testmain.py diff --git a/micropython/testmain.py b/micropython/testmain.py deleted file mode 100644 index cb35e99..0000000 --- a/micropython/testmain.py +++ /dev/null @@ -1,15 +0,0 @@ -from machine import Pin -import json -import time - -while True: - an = Pin(5, Pin.IN) - bereit = Pin(4, Pin.IN) - fehler = Pin(14, Pin.IN) - - if an.value() == 1: - print("An") - if bereit.value() == 1: - print("Bereit") - if fehler.value() == 1: - print("Fehler") \ No newline at end of file