Skip to content
Snippets Groups Projects
Commit a356f3ac authored by Neil Gershenfeld's avatar Neil Gershenfeld
Browse files

debugging G-code for 3018-PROVer

parent e43e5c5f
Branches
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ var init = function() { ...@@ -40,7 +40,7 @@ var init = function() {
mod.cutspeed.value = '2.5' mod.cutspeed.value = '2.5'
mod.plungespeed.value = '2.5' mod.plungespeed.value = '2.5'
mod.jogheight.value = '2' mod.jogheight.value = '2'
mod.spindlespeed.value = '11000' mod.spindlespeed.value = '10000'
mod.tool.value = '1' mod.tool.value = '1'
mod.coolantoff.checked = true mod.coolantoff.checked = true
mod.formatMm.checked = true mod.formatMm.checked = true
...@@ -231,7 +231,7 @@ function make_path() { ...@@ -231,7 +231,7 @@ function make_path() {
str += "M08\n" // coolant on str += "M08\n" // coolant on
str += "G00Z"+jog_height.toFixed(4)+"\n" // move up before starting spindle str += "G00Z"+jog_height.toFixed(4)+"\n" // move up before starting spindle
str += "M03\n" // spindle on clockwise str += "M03\n" // spindle on clockwise
str += "G04 P1\n" // give spindle 1 second to spin up //str += "G04 P1000\n" // give spindle 1 second to spin up // some interpreters have trouble with this
// //
// follow segments // follow segments
// //
...@@ -262,7 +262,8 @@ function make_path() { ...@@ -262,7 +262,8 @@ function make_path() {
// //
// finish // finish
// //
str += "G00Z"+jog_height.toFixed(4)+"\n" // move up before stopping spindle str += "G00Z"+jog_height.toFixed(4)+"\n" // move up
str += "G00X0.0000Y0.0000"+"Z"+jog_height.toFixed(4)+"\n" // finish at origin
str += "M05\n" // spindle stop str += "M05\n" // spindle stop
if (mod.coolanton.checked) if (mod.coolanton.checked)
str += "M09\n" // coolant off str += "M09\n" // coolant off
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment