SET ADD GCODE PROC TEXT

From Macros Wiki
Revision as of 13:40, 7 March 2024 by BruceKing (talk | contribs) (Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Up

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$