@@ -2158,12 +2158,12 @@ def headphone_output(self, enabled: bool) -> None:
2158
2158
self .right_dac_mute = False
2159
2159
self .left_dac_path = DAC_PATH_NORMAL
2160
2160
self .right_dac_path = DAC_PATH_NORMAL
2161
- self .headphone_left_gain = 0
2162
- self .headphone_right_gain = 0
2161
+ self .headphone_left_gain = 6
2162
+ self .headphone_right_gain = 6
2163
2163
self ._page1 ._configure_headphone_driver (
2164
2164
left_powered = True , right_powered = True , common = HP_COMMON_1_65V
2165
2165
)
2166
- self .headphone_volume = - 30 .1
2166
+ self .headphone_volume = - 20 .1
2167
2167
# NOTE: If you use DAC_ROUTE_HP here instead of DAC_ROUTE_MIXER,
2168
2168
# the DAC output will bypass the headphone analog volume
2169
2169
# attenuation stage and go straight into the headphone amp. That
@@ -2213,12 +2213,12 @@ def speaker_output(self, enabled: bool) -> None:
2213
2213
self .right_dac_mute = False
2214
2214
self .left_dac_path = DAC_PATH_NORMAL
2215
2215
self .right_dac_path = DAC_PATH_NORMAL
2216
- self .speaker_gain = 6 # safest speaker amp gain option: 6 dB
2216
+ self .speaker_gain = 12
2217
2217
self ._page1 ._set_speaker_enabled (True )
2218
2218
self ._page1 ._configure_analog_inputs (
2219
2219
left_dac = DAC_ROUTE_MIXER , right_dac = DAC_ROUTE_MIXER
2220
2220
)
2221
- self .speaker_volume = - 20.1
2221
+ self .speaker_volume = - 10
2222
2222
self .speaker_mute = False
2223
2223
else :
2224
2224
self ._page1 ._set_speaker_enabled (False )
0 commit comments