🧑‍💻 Remove servo macros

This commit is contained in:
Scott Lahteine
2022-06-09 00:51:08 -05:00
parent 76a0cab782
commit e4e6abe5af
10 changed files with 25 additions and 28 deletions

View File

@@ -45,7 +45,7 @@ void stop();
bool BLTouch::command(const BLTCommand cmd, const millis_t &ms) {
if (DEBUGGING(LEVELING)) SERIAL_ECHOLNPGM("BLTouch Command :", cmd);
MOVE_SERVO(Z_PROBE_SERVO_NR, cmd);
servo[Z_PROBE_SERVO_NR].move(cmd);
safe_delay(_MAX(ms, (uint32_t)BLTOUCH_DELAY)); // BLTOUCH_DELAY is also the *minimum* delay
return triggered();
}