1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-03 11:22:38 +02:00

Removed some test code in RC Servos

- Code was there so I could test as a 5th axis on the 4x SPI controller.
This commit is contained in:
bdring
2020-05-15 06:39:02 -05:00
parent 216b5fa86c
commit 68495f9d45

View File

@@ -69,10 +69,6 @@ void RcServo :: init() {
ledcSetup(_channel_num, SERVO_PULSE_FREQ, SERVO_PULSE_RES_BITS);
ledcAttachPin(_pwm_pin, _channel_num);
_current_pwm_duty = 0;
pinMode(GPIO_NUM_4, OUTPUT);
digitalWrite(GPIO_NUM_4, HIGH);
}
void RcServo :: config_message() {