Update main.py

master
Ebbe Baß 2021-11-09 18:28:28 +01:00
parent 41343a6f5a
commit ae2598895e
1 changed files with 4 additions and 4 deletions

View File

@ -86,8 +86,8 @@ def change_idle_mode(channel):
idle_mode = f.readline()
print('Change Idle-Mode: '+idle_mode)
def test(input: str):
print(test)
def test():
print('test')
if __name__ == '__main__':
strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)
@ -99,8 +99,8 @@ if __name__ == '__main__':
GPIO.add_event_detect(13, GPIO.BOTH, callback=led_power_toggle, bouncetime=300)
GPIO.add_event_detect(19, GPIO.BOTH, callback=change_idle_mode, bouncetime=300)
GPIO.add_event_detect(13, GPIO.BOTH, callback=test('button1'), bouncetime=300)
GPIO.add_event_detect(19, GPIO.BOTH, callback=test('button2'), bouncetime=300)
GPIO.add_event_detect(13, GPIO.BOTH, callback=test, bouncetime=300)
GPIO.add_event_detect(19, GPIO.BOTH, callback=test, bouncetime=300)
try:
while True: