LEAP#241 General Purpose 358 Amplifier
There’s always room on my bench for another general purpose amplifier.
This is another LM358-based Op-Amp audio amplifier circuit, but it turns
out to be not so useful. As-is, it suffers from two issues.
First R8=1MΩ provides ridiculous gain, so most signals over 50mV or so slam to upper/lower output limits.
Second, the push-pull output stage can’t deliver much power.
As always, all notes, schematics and code are in the Little Electronics & Arduino Projects repo on GitHub

read more and comment..
LEAP#240 Digital Input with Analog Pins
This is a simple demonstration of a tip shared in the Arduino Tips and Tricks email newsletter.
On the Arduino Uno, there are 6 analog pins. While we’d normally use AnalogRead to read A/D values and
AnalogWrite to write PWM, they can also be used as GPIO digital pins.
As always, all notes, schematics and code are in the Little Electronics & Arduino Projects repo on GitHub

read more and comment..
LEAP#236-9 AudioDSP Effects
The AudioDSP project is a custom DSP shield for Arduino, intended for guitar effects processing. So time to try a few effects:
- Boost is a simple clean boost/volume control
- Distortion is a simple clipping distortion effect
- Crunch is a distortion effect using asymmetrical clipping based on Schetzen formula
- SuperCrunch is a distortion effect using symmetrical clipping based on Schetzen formula

read more and comment..
LEAP#235 AudioDSP DIY Shield for Arduino
I wanted to try some digital signal processing on the Arduino/AVR for some time.
This project started a breadboard-build of a circuit based on the pedalSHIELD by electrosmash, just to see if it was even half-way decent.
When that worked out, I put it on protoboard and did a bit more work on the software (refactored the core routines into an AudioDspDriver library).
Along the way I also got the genuine kit from electrosmash.
As always, all notes, schematics and code are in the Little Electronics & Arduino Projects repo on GitHub

read more and comment..