dchote / talkiepi

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
Mozilla Public License 2.0
268 stars 107 forks source link

Waveshare WM8960 Audio HAT #23

Open paspo opened 3 years ago

paspo commented 3 years ago

If you're using the Waveshare WM8960 Audio HAT, please take these notes into consideration:

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.

Also: thanks for talkiepi, it's awesome.