Fix servo detach chopped PWM (#1650)

This commit is contained in:
Guillermo Ruffino 2021-04-08 09:22:30 -03:00 committed by Jesse Hills
parent 5ab2ef4079
commit b680649113
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -37,6 +37,11 @@ void HOT ESP8266PWM::write_state(float state) {
uint32_t duty_off = total_time_us - duty_on;
if (duty_on == 0) {
// This is a hacky fix for servos: Servo PWM high time is maximum 2.4ms by default
// The frequency check is to affect this fix for servos mostly as the frequency is usually 50-300 hz
if (this->pin_->digital_read() && 50 <= this->frequency_ && this->frequency_ <= 300) {
delay(3);
}
stopWaveform(this->pin_->get_pin());
this->pin_->digital_write(this->pin_->is_inverted());
} else if (duty_off == 0) {