Hi all,
I recently got the pHAT DAC Wireless Audio Kit.
I gave it a fresh install of Rasbpian Jessie, from https://www.raspberrypi.org/downloads/raspbian/
Specifically:
Version: May 2016
Release date: 2016-05-10
Kernel version: 4.4
I’ve been following the instructions on http://learn.pimoroni.com/tutorial/phat/raspberry-pi-phat-dac-install but so far I’ve not had any luck getting the Pi to recognise the DAC.
e.g.
lucy@estelwen:~ $ aplay -l
aplay: device_list:268: no soundcards found...
I used the script to set this up, curl -sS get.pimoroni.com/phatdac | bash
Following the manual steps, the files the script would have touched all look as follows:
lucy@estelwen:~ $ cat /etc/modprobe.d/raspi-blacklist.conf
lucy@estelwen:~ $ cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.
i2c-dev
lucy@estelwen:~ $ cat /etc/asound.conf
pcm.!default {
type hw
card 0
}
ctl.!default {
type hw
card 0
}
lucy@estelwen:~ $ cat /boot/config.txt | tail -n 10
# Uncomment this to enable the lirc-rpi module
#dtoverlay=lirc-rpi
# Additional overlays and parameters are documented /boot/overlays/README
# Enable audio (loads snd_bcm2835)
#dtparam=audio=on
dtoverlay=i2s-mmap
dtoverlay=hifiberry-dac
Any ideas what I’m missing?