![]() |
[SOLVED] No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [SOLVED] No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) (/showthread.php?tid=7252) |
No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - tobitruba - 12-31-2024 Audio Device: IQaudIO Pi-DigiAMP+ Issue Description: After installing the new Moode Version 9 (9.2.0 and 9.2.1) (Raspberry Pi Imager and update), there is no sound output when trying to listen to "LR Channel and Phase" or any other audio. When reverting to the previous version, Release 8.3.9 (32-bit Bullseye), the amplifier works flawlessly, and sound output is as expected. RPI: PI Zero 2 Steps to Reproduce:
RE: No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - Tim Curtis - 12-31-2024 Run the command below and see if audio becomes unmuted. Code: sudo /var/www/util/sysutil.sh unmute-pi-digiampplus RE: No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - Tim Curtis - 12-31-2024 Actually run the two commands below and see of that works Code: CHIP=$(gpiodetect | grep pinctrl | awk 'NR==1 {print}' | cut -d " " -f1) RE: No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - tobitruba - 01-01-2025 Thank you for the very quick solution! The first command didn’t work, but the second approach did! Not Working: 1. Code: moodeuser@moode:~ $ sudo /var/www/util/sysutil.sh unmute-pi-digiampplus 2. Code: CHIP=$(gpiodetect | grep pinctrl | awk 'NR==1 {print}' | cut -d " " -f1) Thanks again, and I wish you a Happy New Year 2025! RE: No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - Tim Curtis - 01-01-2025 Nice, I'll add that fix to the next release RE: No sound with IQaudIO Pi-DigiAMP+ (with Moode 9.2) - Tim Curtis - 01-01-2025 If you want to try the fix run the command below. It will install the updated sysutil.sh file. Code: sudo wget -q https://raw.githubusercontent.com/moode-player/moode/develop/www/util/sysutil.sh -O /var/www/util/sysutil.sh |