Hi Guys,
i just got a Picade HAT and I want to use it with Raspbian Stretch and the legacy-python-drivers from Github because I only need the Power On/Off Feature and the I2S Sound Output.
I got the power functions working but I cant get the sound Output to work.
I already edited /boot/config.txt
so that regular audio is disabled and i2s is enabled, like so:
dtparam=audio=off
dtparam=i2c_arm=off
dtparam=i2s=on
dtoverlay=hifiberry-dac
Also I created a little /etc/asound.conf
like so:
pcm.!default {
type hw card 0
}
ctl.!default {
type hw card 0
}
Now i get this when I do aplay -l
pi@raspberrypi ~ $ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: sndrpihifiberry [snd_rpi_hifiberry_dac], device 0: HifiBerry DAC HiFi pcm5102a-hifi-0 []
Subdevices: 1/1
Subdevice #0: subdevice #0
seems fine, but i still get no Sound through my connected Speaker if i do a speaker-test -c2
Any hints or ideas what I’m missing?