Although the specs show A3 (aka D17) as a PWM pin, I cannot get it to output PWM. I can output PWM with 16 , but not 17. I verified this with a logic analyzer.
This simple sketch demonstrates it.
What am I missing?
#include <Servo.h>
Servo myservo16, myservo17;
void setup() {
myservo16.attach(16);
myservo16.write(180);
myservo17.attach(17);
myservo17.write(180);
}
void loop() {
}
Any thoughts?
Thanks,
Sean