Replies: 2 comments 3 replies
-
There is no way to set post processor parameters yet. Everything is pretty much hard coded here: I have been thinking of how to introduce settings for laser cutters but haven't gotten around to it yet. I don't have any experience with a plasma cutters but I expect it to behave similar to a laser cutter? You probably would want to turn on the plasma torch just before any G1-command:
|
Beta Was this translation helpful? Give feedback.
-
I forgot earlier, but here's a bit of sample Gcode generated with the "MartyBuilt Plasma Post" postprocessor, I figured that might be useful as well. It's just a square with rounded corners, and a "drilling" operation to mark a hole location in the center. I'd be happy to provide any more information you may find useful. |
Beta Was this translation helpful? Give feedback.
-
``I was wondering if it's possible to add gcode snippets to the gcode generated by the designer module? Like to add a probe sequence or something before the cut starts or to move the M3 command to the start of the cut instead of the start of the file since for a CNC plasma/laser etc. having the tool switch on before it's in position.
I watched the youtube video introducing the designer module by Breiler, but it didnt cover the post processor.
Below is a sample gcode generated with the designer plugin (the elipses are in place of the bulk of the gcode to save scrolling through it all, it was just a rectangle), I've added two comments at the points I'd like to modify. Does anyone know where the files/text/parameters that the plugin draws on to add those comments/gcode is stored so I can modify it?
`; This file was generated with "Universal Gcode Sender 2.0-SNAPSHOT / 2023-07-01"
;
; Tool: 3.0mm
; Depth per pass: 5.0mm
; Feed speed: 1000mm/min
; Plunge speed: 400mm/min
; Safe height: 5.0mm
; Tool step over: 0.3mm
; Spindle speed: 1000rpm
G21 ; millimeters
G90 ; absolute coordinate
G17 ; XY plane
G94 ; units per minute feed rate mode
M3 S1000 ; Turning on spindle <<HERE
; Rectangle - Outside path (1/1) <<HERE
G0 Z5
G0 X8.5Y38.5
G0 Z0
G1 F400 X8.5Y38.5Z-0
.......
G1 X8.5Y38.5Z-5
G0 Z5
; Turning off spindle
M5
Thanks
Beta Was this translation helpful? Give feedback.
All reactions