Saleae Logic Analyzer

The Saleae Logic Analyzer is an inexpensive debugging tool from Saleae.

Tests
Arduino Hardware Pulse Width Modulation (PWM)
void setup()
{
pinMode(3, OUTPUT);
analogWrite(3, 85); // 85/255 = 1/3
}
void loop()
{
}





