I added an Opt Laser to my CNC router. At this point I am working out the software side of this addition and using Lightburn to create my laser G code.
When I hit "Cycle Start" an error message window pops up that says something about there is G code that UCCNC does not recognize. Is it the ";" they are using for comments?
Here is a simple example of the G code generated by Lightburn.
;LightBurn 1.7.06
;Custom GCode device profile, user origin
;Bounds: X41.4302 Y50.0875 to X44.8302 Y52.2875
G00 G17 G40 G20;Restore imperial mode
G54
G90;Restore absolute mode
G0 X0Y0
G91;Restore relative mode
;Cut @ 236.1999 in/min, 50% power
M8
M5
G0 X3.4Y-2.2
;Layer C01
M10Q127.5
M4
G1 X-3.4F236.2
G1 Y2.2
G1 X3.4
G1 Y-2.2
M9
M5
G90;Restore absolute mode
M2
END OF CODE.
Another question.
When using the M10Q{power} command, is the M4 command needed? I have both in the code, but question if that is correct?
Thanks for any help sorting this out.