linuxOS_AP05/external/rockchip-test/audio/acodec_test/set_hpout_volume.sh
2025-06-02 13:59:07 +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