I’m using a Creality engraver which I’ve modified as a Pen Plotter. In order to allow time for the pen to go down, I’ve added a StartPause delay with Cut Through enabled.
The problem I’m facing is that as soon as the delay starts, the “laser” is fired so the pen goes down. But when the StartPause delay ends, the laser goes off and then immediately goes on to start the cut. I need to avoid that laser power going to zero:
This is the generated G-Code. you can see a G1 S0 that turns the laser off/pen up.
; LightBurn Core 2.0.05
; GRBL device profile, user origin
; Bounds: X100.91 Y339.61 to X110.08 Y350.89
G00 G17 G40 G21 G54
G90
G0 X48 Y273
G91
M4
; Cut @ 4000 mm/min, 10% power
M8
G0 X4.692Y-7.446 ; Rapid move to start position (pen up)
M3 ; Laser ON (constant power mode)
G1 F100 S100 ; Feed slow, power 100% — this is the "start delay"
G4 P1 ; Dwell 1 second (pen stays down)
G1 S0 ; Power to 0 (pen up signal! - HOW TO AVOID THIS?)
G0 ; Rapid mode (pen up)
M4 ; Laser ON (dynamic power mode)
; Layer C06
G1 X0.011Y0.313S100F4000 ; Start drawing (pen down, power 100%)
G1 X0.043Y0.297
G1 X0.075Y0.282
G1 X0.108Y0.267
G1 X0.14Y0.251
