1void main() { 2 // Trigger servo movement based on the difference 3 if (remappedDifference > 0) { 4 Serial.println("Turning clockwise..."); 5 controlServo(SERVO_CW); // Spin the servo clockwise 6 } else if (remappedDifference < 0) { 7 Serial.println("Turning counterclockwise..."); 8 controlServo(SERVO_CCW); // Spin the servo counterclockwise 9 } /* else { 10 Serial.println("Stopping servo..."); 11 controlServo(SERVO_STOP); // Stop the servo if the difference is zero 12 } */ 13} 14 15