Firstly download the volumio image and extract it, then write it to an SDCARD, you can get it here.
Now insert that card into your Pi and wait something like 5 minutes. Next enable ssh so that you can setup the audio driver. To enable ssh, go http://volumio.local/DEV/ in your browser and click "ENABLE" under SSH. It doesn't report anything but you have just enabled the SSHd daemon. You can now login to your volumio device.
Open a terminal and tell ssh to connect to the Pi like so :
Code: Select all
ssh volumio@volumio.local
Setup the /boot/config.txt file by editing it as super user (password is volumio) :
Code: Select all
sudo nano /boot/config.txt
Code: Select all
dtoverlay=audioinjector-addons
Code: Select all
#dtparam=audio=on
#audio_pwm_mode=2
Code: Select all
initramfs volumio.initrd
gpu_mem=16
max_usb_current=1
#dtparam=audio=on
#audio_pwm_mode=2
dtparam=i2c_arm=on
disable_splash=1
dtoverlay=audioinjector-addons
Code: Select all
sudo reboot
Code: Select all
volumio@volumio:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: audioinjectoroc [audioinjector-octo-soundcard], device 0: AudioInject-HIFI cs42448-0 []
Subdevices: 1/1
Subdevice #0: subdevice #0
It should be working.
Matt