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

wip

parent a356f3ac
Branches
No related tags found
No related merge requests found
......@@ -37,8 +37,8 @@ var name = 'path to G-code'
// initialization
//
var init = function() {
mod.cutspeed.value = '2.5'
mod.plungespeed.value = '2.5'
mod.cutspeed.value = '1'
mod.plungespeed.value = '1'
mod.jogheight.value = '2'
mod.spindlespeed.value = '10000'
mod.tool.value = '1'
......@@ -224,7 +224,7 @@ function make_path() {
str += "G80\n" // cancel canned cycles
str += "G90\n" // absolute coordinates
str += "G94\n" // feed/minute units
str += "T"+tool+"M06\n" // tool selection, tool change
//str += "T"+tool+"M06\n" // tool selection, tool change // some interpreters have trouble with this
str += "F"+cut_speed.toFixed(4)+"\n" // feed rate
str += "S"+spindle_speed+"\n" // spindle speed
if (mod.coolanton.checked)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment