I have an audio amplifier board that I would like to mute and unmute by software. The board has two pins layed out to connect a button, which basically seems to just pull that specific pin to GND.
I tried to connect a Seeduino Xiao (pin 3, others also tested) and just do these lines to pull it to ground.
pinMode(3, OUTPUT);
digitalWrite(3, LOW);
Strangely the amp just ignores this. If I connect the wire to the Xiaos GND pin the amp is muted...
What am I missing here? Hope someone can guide me in the right direction. Thank you!