'''
from machine import Pin
import time
led_dict ={
"rot" : Pin(5, Pin.OUT),
"gelb" : Pin(9, Pin.OUT),
"grün" : Pin(12, Pin.OUT)
}
print("test aaaa")
while True:
prin("Test")
led_farb_wahl = input("LED Farbe rot, gelb oder grün : ")
pint(led_farb_wahl)
time.sleep(1)
'''
while True:
print("hallo")