linuxOS_AP06/external/rockchip-test/audio/acodec_test/set_hpout_volume.sh
2025-06-03 12:28:32 +08:00

14 lines
191 B
Bash
Executable File

#!/bin/bash
v=$1
echo "Set HPOUT volume, range 0->33"
if [ ! -n "$v" ] ; then
echo "please enter a volume"
else
echo "set volume: $v"
amixer set "Output 1" $v
amixer get "Output 1"
fi