Update mmuGcodeParser.py

Bump up the version
This commit is contained in:
Nikolai
2019-02-01 21:55:42 -08:00
committed by GitHub
parent ced093a634
commit 45140c1ed3

View File

@@ -32,7 +32,7 @@ from io import open
""" --------------------------------------------------------------------- """ ---------------------------------------------------------------------
### Constants ### Constants
""" """
VERSION = "v0.1" VERSION = "v0.2"
MYGCODEMARK = " ; MMUGCODEPARSER " + VERSION MYGCODEMARK = " ; MMUGCODEPARSER " + VERSION
UNLOAD_START_LINE = "unloadStartLine" UNLOAD_START_LINE = "unloadStartLine"
LOAD_START_LINE = "loadStartLine" LOAD_START_LINE = "loadStartLine"
@@ -53,6 +53,7 @@ debug_set = False
# Drop the temperature by 10C during the ramming process. Checking if it might help # Drop the temperature by 10C during the ramming process. Checking if it might help
ram_temp_diff = 10 ram_temp_diff = 10
# Set this to True if you want to drop the temperature even for the same filament
ram_temp_diff_wait_for_stabilize = False ram_temp_diff_wait_for_stabilize = False
# get the input file specified, and turn it into a path variable for the current OS # get the input file specified, and turn it into a path variable for the current OS