Update main.py
parent
7fd658ffa8
commit
8a853c3b21
5
main.py
5
main.py
|
@ -86,6 +86,9 @@ def change_idle_mode(channel):
|
|||
idle_mode = f.readline()
|
||||
print('Change Idle-Mode: '+idle_mode)
|
||||
|
||||
def test(input: str,channel):
|
||||
print(test)
|
||||
|
||||
if __name__ == '__main__':
|
||||
strip = Adafruit_NeoPixel(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)
|
||||
strip.begin()
|
||||
|
@ -96,6 +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)
|
||||
|
||||
try:
|
||||
while True:
|
||||
|
|
Loading…
Reference in New Issue