Add M290 Babystepping

This commit is contained in:
Scott Lahteine
2017-10-25 15:49:34 -05:00
parent ce5f0ec85a
commit bd78ca0ee3
4 changed files with 71 additions and 3 deletions

View File

@ -525,6 +525,10 @@ void GcodeSuite::process_next_command() {
case 280: M280(); break; // M280: Set servo position absolute
#endif
#if ENABLED(BABYSTEPPING)
case 290: M290(); break; // M290: Babystepping
#endif
#if HAS_BUZZER
case 300: M300(); break; // M300: Play beep tone
#endif