Search found 1 match

by madhephaestus
Tue Feb 04, 2020 1:43 am
Forum: ESP32 Arduino
Topic: Servo & I2C Timer issue
Replies: 3
Views: 8139

Re: Servo & I2C Timer issue

Author of ESP32Servo here. Take a look into the sensor and see if you can specify which timer to use. The ESP32Servo class will allocate timers in order, starting with 0. If that's not possible, before calling servo.begin(), call ``` ESP32PWM::timerCount[0]=4; ``` This should lock out timer channel ...