Hallo!
Bei mir trat das gleiche Problem auf, Startup-Sound, dann nur noch Stille. Lösung war bei mir das Skript RPi-Jukebox-RFID/scripts/gpio-buttons.py an das Pinout anzupassen (unten nur der geänderte Teil des Skripts):
Code
shut = Button(12, hold_time=2)
#vol0 = Button(13,pull_up=True)
volU = Button(16,pull_up=True,hold_time=0.3,hold_repeat=True)
volD = Button(26,pull_up=True,hold_time=0.3,hold_repeat=True)
next = Button(5,pull_up=True)
prev = Button(13,pull_up=True)
halt = Button(6,pull_up=True)
#reco = Button(6, pull_up=True) # Choose GPIO to fit your hardware
#play = Button(12,pull_up=True) # Choose GPIO to fit your hardware
#vol0.when_pressed = def_vol0
Display More
Gemäß dem Pinout von https://de.pinout.xyz/pinout/phat_beat#
Vielleicht hilft das?
Viele Grüße
Christian