From what i understand, you need to add a entry in moOde database:
And add an exception for the mixer name (DAC):
Line 1754
I don't have this DAC, so i can't test and I dont know if it's enough or if DAC's informations are acurate.
Code:
sudo sqlite3 /var/local/www/db/moode-sqlite3.db " INSERT INTO cfg_audiodev (id, name, dacchip, chipoptions, iface, list, driver, drvoptions) VALUES (148, 'HiFiBerry DAC2 HD', 'Burr Brown PCM5121', '100,0,FIR interpolation with de-emphasis', 'I2S', 'yes', 'hifiberry-dacplushd', '');"
And add an exception for the mixer name (DAC):
Code:
sudo nano -l /var/www/inc/playerlib.php
Line 1754
Code:
// I2S exceptions
elseif ($i2sdevice == 'HiFiBerry Amp(Amp+)') {
$mixername = 'Channels';
}
elseif ($i2sdevice == 'HiFiBerry DAC+ DSP') {
$mixername = 'DSPVolume';
}
elseif ($i2sdevice == 'Allo Katana DAC' || ($i2sdevice == 'Allo Piano 2.1 Hi-Fi DAC' && $_SESSION['piano_dualmode'] != 'None')) {
$mixername = 'Master';
}
elseif ($i2sdevice == 'HiFiBerry DAC2 HD') {
$mixername = 'DAC';
}
I don't have this DAC, so i can't test and I dont know if it's enough or if DAC's informations are acurate.