Commit e65a0a9b authored by MagoKimbra's avatar MagoKimbra

Merge remote-tracking branch 'refs/remotes/origin/dev'

parents b63319ad bde64a97
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
* either sets a Sane Default, or results in No Change to the existing value. * either sets a Sane Default, or results in No Change to the existing value.
* *
*/ */
#include "base.h" #include "base.h"
#define EEPROM_VERSION "MKV428" #define EEPROM_VERSION "MKV428"
......
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
* "G" Codes * "G" Codes
* *
* G0 -> G1 except for laser where G0 is "move without firing" * G0 -> G1 except for laser where G0 is "move without firing"
* G1 - Coordinated Movement X Y Z E, for laser move by firing * G1 - Coordinated Movement X Y Z E F(feedrate) P(Purge), for laser move by firing
* G2 - CW ARC * G2 - CW ARC
* G3 - CCW ARC * G3 - CCW ARC
* G4 - Dwell S[seconds] or P[milliseconds], delay in Second or Millisecond * G4 - Dwell S[seconds] or P[milliseconds], delay in Second or Millisecond
...@@ -209,6 +209,7 @@ ...@@ -209,6 +209,7 @@
*/ */
#include "base.h" #include "base.h"
#if ENABLED(DIGIPOT_I2C) || ENABLED(BLINKM) #if ENABLED(DIGIPOT_I2C) || ENABLED(BLINKM)
#include <Wire.h> #include <Wire.h>
#endif #endif
......
...@@ -5626,6 +5626,7 @@ inline void gcode_M81() { ...@@ -5626,6 +5626,7 @@ inline void gcode_M81() {
laser_peripherals_off(); laser_peripherals_off();
#endif #endif
#endif #endif
delay_ms(1000); // Wait 1 second before switching off delay_ms(1000); // Wait 1 second before switching off
#if HAS(SUICIDE) #if HAS(SUICIDE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment