Browse Source

'M220' doesn't take a 'T' parameter in any format.

Remco Burema 4 years ago
parent
commit
eb9912b924
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/PostProcessingPlugin/scripts/ChangeAtZ.py

+ 1 - 1
plugins/PostProcessingPlugin/scripts/ChangeAtZ.py

@@ -889,7 +889,7 @@ class ChangeAtZProcessor:
 
         # set feedrate percentage
         if "speed" in values:
-            codes.append("M220 S" + str(values["speed"]) + " T1")
+            codes.append("M220 S" + str(values["speed"]) + "")
 
         # set print rate percentage
         if "printspeed" in values: