Skip to content

Commit

Permalink
Altered User Param Arrangement
Browse files Browse the repository at this point in the history
  • Loading branch information
will1742 committed Oct 5, 2021
1 parent b73f61f commit 128e05c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Haas_Gantry_BIDC/Bechtel SR.cps
Original file line number Diff line number Diff line change
Expand Up @@ -263,31 +263,31 @@ properties = {/*
toolsToLoad: {
title: "Tools to load and probe",
description: "List or provide a range of tools to probe e.g. 1, 2, 3 or 1-5. Leaving this empty will probe all tools",
group: 4,
group: 0,
type: "string",
value: "",
scope: "post"
},
pencilWCSValidation: {
title: "WCS Validation",
description: "WCS validation. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
toolHeightValidation: {
title: "Tool Length Validation",
description: "Length validation. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
measureToolsAtStart: {
title: "Tool Probing",
description: "Tool Probing. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
Expand Down
5 changes: 3 additions & 2 deletions Haas_Lathes_BIDC/Bechtel ST-20.cps
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ properties = {
title: "Use SSV",
description: "Outputs M38/M39 to enable SSV for turning operations.",
type: "boolean",
group: 1,
value: false,
scope: "post"
},
Expand Down Expand Up @@ -354,15 +355,15 @@ properties = {
measureToolsAtStart: {
title: "Tool Probing",
description: "Tool loading and probing. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: false,
scope: "post"
},
loadToolsAtStart: {
title: "Tool loading",
description: "Tool loading only. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
Expand Down
5 changes: 3 additions & 2 deletions Haas_Lathes_BIDC/Bechtel ST-20Y.cps
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ properties = {
title: "Use SSV",
description: "Outputs M38/M39 to enable SSV for turning operations.",
type: "boolean",
group: 1,
value: false,
scope: "post"
},
Expand Down Expand Up @@ -354,15 +355,15 @@ properties = {
measureToolsAtStart: {
title: "Tool Probing",
description: "Tool loading and probing. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: false,
scope: "post"
},
loadToolsAtStart: {
title: "Tool loading",
description: "Tool loading only. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: false,
scope: "post"
Expand Down
15 changes: 7 additions & 8 deletions Haas_Mills_BIDC/Bechtel Milling.cps
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ properties = {/*
{title: "Cycles", id: "cycles"},
{title: "Patterns", id: "patterns"}
],
group: 3,
value: "none",
scope: "post"
},/*
Expand Down Expand Up @@ -410,47 +409,47 @@ properties = {/*
toolsToLoad: {
title: "Tools to load and probe",
description: "List or provide a range of tools to probe e.g. 1, 2, 3 or 1-5. Leaving this empty will probe all tools",
group: 4,
group: 0,
type: "string",
value: "",
scope: "post"
},
toolLengthValidation: {
title: "Tool Length Validation",
description: "Length validation. By setting this to optional, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
pencilWCSValidation: {
title: "WCS Validation",
description: "WCS validation. By setting this to optional, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
measureToolsAtStart: {
title: "Tool Probing",
description: "Tool Probing. By setting this to optional, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
loadToolsAtStart: {
title: "Tool Loading",
description: "Tool Loading. By setting this to optional, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
displayMediaCalls: {
title: "Display Media",
description: "Enable to include M130 part images with the NC file, disable to see the information in comments.",
group: 4,
group: 0,
value: false,
scope: "post"
}
Expand Down Expand Up @@ -4549,8 +4548,8 @@ function onClose() {
}

function gotoWithMessage(xLoc, yLoc, fileName, comment) {
writeBlock(gFormat.format(53), xOutput.format(xLoc), yOutput.format(yLoc));
displayMedia(fileName, false, comment);
writeBlock(gFormat.format(53), xOutput.format(xLoc), yOutput.format(yLoc));
}

writeln("");
Expand Down

0 comments on commit 128e05c

Please sign in to comment.