Due to hardware flaws, sometimes when interfacing with some of the units there is an audible hiss. Unfortunately since it is a hardware flaw the only solution is to use code to reduce the volume of the hiss.
in Arduino it should be something like
dacWrite(25,0)
Python
dac0 = machine.DAC(25)
dac0.write(0)