Header for individual menus

This commit is contained in:
Scott Lahteine
2020-08-21 05:21:34 -05:00
parent e2ee05c976
commit 4f67642122
32 changed files with 494 additions and 478 deletions

View File

@@ -938,6 +938,8 @@ void MarlinUI::update() {
if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
// Enable to output the encoder steps per second value
//#define ENCODER_RATE_MULTIPLIER_DEBUG
#if ENABLED(ENCODER_RATE_MULTIPLIER_DEBUG)
SERIAL_ECHO_START();
SERIAL_ECHOPAIR("Enc Step Rate: ", encoderStepRate);