The talkiepi project is for a truly headless mumble client for the Raspberry Pi, utilizing static config and GPIO for status LEDs and a button for push to talk
you have no LEDs and the default LED assignments are conflicting with some I2S signals
the button is on different GPIO
So please use this configuration:
const (
// no LEDs on this board, these GPIOs are free to use
// don't use GPIO18 with this board
OnlineLEDPin uint = 22
ParticipantsLEDPin uint = 23
TransmitLEDPin uint = 24
// This is the correct GPIO for the button
ButtonPin uint = 17
)
Maybe take into consideration the possibility to not use the LEDs in code.
If you're using the Waveshare WM8960 Audio HAT, please take these notes into consideration:
So please use this configuration:
Maybe take into consideration the possibility to not use the LEDs in code.
Also: thanks for talkiepi, it's awesome.