This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
howto:default_settings [2018/09/26 02:12] Matthew Upp |
howto:default_settings [2019/01/24 00:15] (current) Matthew Upp |
||
---|---|---|---|
Line 65: | Line 65: | ||
; Load firmware default settings and save to EEPROM | ; Load firmware default settings and save to EEPROM | ||
; for Malyan M200 & MP Select Mini | ; for Malyan M200 & MP Select Mini | ||
- | ; This file is much longer than it needs to be | + | ; This file is much longer than it needs to be. It is like this to show what is going on |
; | ; | ||
; Lines with only a semicolon are for making line separations only | ; Lines with only a semicolon are for making line separations only | ||
- | ; Please add a blank line to the end of the file while editing. DokuWiki Code Blocks deletes blank lines at the end of the block but g-code files should end with a single blank line at the end. | + | ; Please add a blank line to the end of the file while editing. DokuWiki Code Blocks removes blank lines at the end of the block but g-code files should end with a single blank line at the end. |
; | ; | ||
; | ; | ||
- | M106 S0 ; turn fan off in case it was already on | + | M107 ; turn fan off in case it was already on |
M106 S245 ; turn fan on to signify start | M106 S245 ; turn fan on to signify start | ||
; | ; | ||
- | G4 S2 ; Pause 2 seconds | ||
; | ; | ||
M502 ; Reset EEPROM to firmware defaults | M502 ; Reset EEPROM to firmware defaults | ||
M500 ; Save currently loaded settings to EEPROM | M500 ; Save currently loaded settings to EEPROM | ||
; | ; | ||
- | G4 S2 ; Pause 2 seconds | ||
; | ; | ||
- | M106 S0 ; turn fan off to signify completion | + | G91 ; Set to relative positioning |
+ | G1 X6 F1000 ; Move X-Axis 6mm to the right | ||
+ | M400 ; Wait for current moves to finish | ||
+ | M107 ; turn fan off to signify completion | ||
M84 ; disable motors | M84 ; disable motors | ||
- | M0 S2 ; wait 2 seconds | + | |
- | ; | + | |
</file> | </file> | ||