Here are two sketches (first for Uno, second for ESP32 QT Pico Py). The notable part of this is that using a standard cheap digital servo, this works just fine, but with the A20CLS, it doesn't. Do note that I modified the Servo.h and ESP32Servo.h themselves in an attempt to fix the problem. Specifically, I REFRESH_INTERVAL to 3003 (instead of 2000) and DEFAULT_PULSE_WIDTH to 1520 (instead of 1500) in Servo.h. In ESP32Servo.h I changed REFRESH_CPS to 333.
I know that modifying libraries is advised against but I'm pretty sure this is a PWM problem given that the A20CLS works with the physical servo tester and is recieving power normally.
First (Uno):
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards
int pos = 0; // variable to store the servo position
void setup() {
myservo.attach(1); // attaches the servo on pin 1 to the servo object
myservo.write(20);
delay(500);
myservo.write(40);
delay(500);
myservo.write(60);
delay(500);
}
void loop() {
/*
for (pos = 0; pos <= 60; pos += 1) { // goes from 0 degrees to 180 degrees
// in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}*/
}
Second (ESP32)
#include <ESP32Servo.h>
Servo myservo; // create servo object to control a servo
// 16 servo objects can be created on the ESP32
int pos = 0; // variable to store the servo position
// Recommended PWM GPIO pins on the ESP32 include 2,4,12-19,21-23,25-27,32-33
// Possible PWM GPIO pins on the ESP32-S2: 0(used by on-board button),1-17,18(used by on-board LED),19-21,26,33-42
// Possible PWM GPIO pins on the ESP32-S3: 0(used by on-board button),1-21,35-45,47,48(used by on-board LED)
// Possible PWM GPIO pins on the ESP32-C3: 0(used by on-board button),1-7,8(used by on-board LED),9-10,18-21
#if defined(CONFIG_IDF_TARGET_ESP32S2) || defined(CONFIG_IDF_TARGET_ESP32S3)
int servoPin = 26;
#elif defined(CONFIG_IDF_TARGET_ESP32C3)
int servoPin = 26;
#else
int servoPin = 26;
#endif
void setup() {
// Allow allocation of all timers
ESP32PWM::allocateTimer(0);
ESP32PWM::allocateTimer(1);
ESP32PWM::allocateTimer(2);
ESP32PWM::allocateTimer(3);
myservo.setPeriodHertz(50); // standard 50 hz servo
myservo.attach(servoPin, 1000, 2000); // attaches the servo on pin 18 to the servo object
// using default min/max of 1000us and 2000us
// different servos may require different min/max settings
// for an accurate 0 to 180 sweep
}
void loop() {
for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees
// in steps of 1 degree
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the positionij
}
for (pos = 180; pos >= 0; pos -= 1) { // goes from 180 degrees to 0 degrees
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}
}