MalteHST

Results 2 comments of MalteHST

Thanks for this neat instruction. I've tested this on my own and can confirm the function (also with 5kOhm resistance). But before defining the button action you have to add:...

You may solve your problem if you define your action in gpio-buttons.py like that: ``` def def_stop(): check_call("./scripts/playout_controls.sh -c=playerstop", shell=True) stop = Button(21,pull_up=False) stop.when_released = def_stop ``` So the player...