Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pub
mods
Commits
e264a430
Commit
e264a430
authored
Jan 09, 2022
by
Neil Gershenfeld
Browse files
wip
parent
a356f3ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/path/formats/g-code
View file @
e264a430
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment