void loadLabels() {
irPinStatus = analogRead(irPin);
digitalWrite(enable23, LOW); // Enable Stepper23
if (irPinStatus > 30) {
// timeBegin = millis();// For later use
timeBegin = millis();
do {
irPinStatus = analogRead(irPin);
stepper23.setMaxSpeed(10000);
stepper23.setSpeed(-3000);
stepper23.runSpeed();
} while (irPinStatus > 30);
} else if (irPinStatus < 30) {
timeEnd = micros();
pushLabel();
loadingLabels = false;
}
// unsigned long duration = timeEnd - timeBegin; // For later use
lcd.clear();
lcd.print("Loading Complete");
// lcd.setCursor(2, 1); // For later use
// lcd.print(duration);
// delay(2000);
// backExit();
}