Expand encoder value range

This commit is contained in:
Scott Lahteine
2019-10-21 18:34:29 -05:00
parent 160c8be191
commit f00b48f9a8
7 changed files with 16 additions and 16 deletions

View File

@@ -137,7 +137,7 @@ millis_t MarlinUI::next_button_update_ms; // = 0
// Encoder Handling
#if HAS_ENCODER_ACTION
uint16_t MarlinUI::encoderPosition;
uint32_t MarlinUI::encoderPosition;
volatile int8_t encoderDiff; // Updated in update_buttons, added to encoderPosition every LCD update
#endif