SET ADD GCODE PROC TEXT: Difference between revisions
From Macros Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 10: | Line 10: | ||
===Example=== | ===Example=== | ||
:SET_ADD_GCODE_PROC_TEXT 1, "M01" | :SET_ADD_GCODE_PROC_TEXT 1, "M01" | ||
Add G-Code Sample macro: | |||
DESELECT_ALL_OPS | |||
a$="Sample Add G-Code Process"+CHR$(13) | |||
a$=a$+"G0G49G53Z0"+CHR$(13) | |||
Load_Process "Add_Gcode.prc2" | |||
SET_ADD_GCODE_PROC_TEXT 1, a$ | |||
CALC_PROCESS | |||
Message "The following text was added to Add G-Code Op:"+CHR$(13)+a$ | |||
[[Category:Procs]] | [[Category:Procs]] |
Latest revision as of 13:40, 7 March 2024
Command
- SET_ADD_GCODE_PROC_TEXT <process number>, <text>
- Set Add GCode process text.
Parameters
- <process number>
- Process number.
- <text>
- Add GCode Text
Example
- SET_ADD_GCODE_PROC_TEXT 1, "M01"
Add G-Code Sample macro:
DESELECT_ALL_OPS a$="Sample Add G-Code Process"+CHR$(13) a$=a$+"G0G49G53Z0"+CHR$(13) Load_Process "Add_Gcode.prc2" SET_ADD_GCODE_PROC_TEXT 1, a$ CALC_PROCESS Message "The following text was added to Add G-Code Op:"+CHR$(13)+a$