Arduino library to control PT2314 AKA ET2314 audio processor I made a few changes to andykarpov's PT2314 library, which is awesome BTW. andykarpov made a default gain of 11.25dB which made the sound on my speakers clipped and distorted, so I changed the default values and added the varia...
Arduino library to control PT2314 AKA ET2314 audio processorExample usage:PT2314 audioswitch; setup() { Wire.begin(); audioswitch.init(); audioswitch.gain(1); // +3.75dB gain audioswitch.channel(0); // 0-3 => channel 1-4 audioswitch....