From c6f4f3ad91fe175548d1cdd199127afeb4cb43be Mon Sep 17 00:00:00 2001 From: Mikey Sklar Date: Sun, 29 Jun 2025 18:33:12 -0700 Subject: [PATCH] change volume parameter --- TLV320DAC3100_Examples/TLV320_CircuitPython_WAV/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TLV320DAC3100_Examples/TLV320_CircuitPython_WAV/code.py b/TLV320DAC3100_Examples/TLV320_CircuitPython_WAV/code.py index 6d3e41a75..63a9bb39d 100644 --- a/TLV320DAC3100_Examples/TLV320_CircuitPython_WAV/code.py +++ b/TLV320DAC3100_Examples/TLV320_CircuitPython_WAV/code.py @@ -15,7 +15,7 @@ dac.configure_clocks(sample_rate=44100, bit_depth=16) # use headphones dac.headphone_output = True -dac.headphone_volume = -15 # dB +dac.dac_volume = -15 # dB # or use speaker # dac.speaker_output = True # dac.speaker_volume = -10 # dB