mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-01-02 12:50:34 -07:00
✨ M282 - Detach Servo (#22760)
This commit is contained in:
parent
c2e4b1626f
commit
21e8f99500
11 changed files with 76 additions and 14 deletions
|
|
@ -192,6 +192,7 @@
|
|||
* M261 - i2c Request Data (Requires EXPERIMENTAL_I2CBUS)
|
||||
* M280 - Set servo position absolute: "M280 P<index> S<angle|µs>". (Requires servos)
|
||||
* M281 - Set servo min|max position: "M281 P<index> L<min> U<max>". (Requires EDITABLE_SERVO_ANGLES)
|
||||
* M282 - Detach servo: "M282 P<index>". (Requires SERVO_DETACH_GCODE)
|
||||
* M290 - Babystepping (Requires BABYSTEPPING)
|
||||
* M300 - Play beep sound S<frequency Hz> P<duration ms>
|
||||
* M301 - Set PID parameters P I and D. (Requires PIDTEMP)
|
||||
|
|
@ -862,6 +863,9 @@ private:
|
|||
static void M281();
|
||||
static void M281_report(const bool forReplay=true);
|
||||
#endif
|
||||
#if ENABLED(SERVO_DETACH_GCODE)
|
||||
static void M282();
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if ENABLED(BABYSTEPPING)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue