Thought I would start a new topic and try to gather all tips and tricks and setup help for Ender 3 S1 pro into one area. I will add anything I figure out as i go but if you have anything to add, please do since this is not working correctly yet. I must still edit Gcode manually for it to work.
USB Connection issues
Lightburn will see the Ender 3 S1 pro. If your having issues like I was you can try to uninstall and reinstall the device and or drivers using this link.
further info on this can be found here.
If that does not work be sure to try different USB cables and or USB ports.
After reinstalling drivers and switching cables and USB ports several times lightburn finally found my Laser.
It sees it as a GRBL-M3(1.1e or earlier)
However, there are several issues with the gcode it creates for the ender 3 s1 pro.
One is the first M3 needs to be a M3 I (that is a capital i)
This fixes issues with it controlling laser on/off
Also framing on machine will not work since the gcode header info it not in the right format. It should match this format.
;Header Start
;estimated_time(s): 11122.554
;MAXX: 149.48
;MAXY: 93.57
;MINX: 64.84
;MINY: 6.47
;Header End
G21
G92 X0 Y0 Z0
G90
G0 F3000
G1 F1500
M3 I
M9
You could also add this to have machine BEEP when engraving is complete.
;beep when done
M300 S440 P200
And if you want to get use of more space on your bed, this will turn off the soft limits.
M211S0 ;Removes 220x220 Soft Endstops
M211S1 ;turns soft limits on again.
I am currently using the following settings in lightburn.
Light Burn Settings
Speed 25
Power 80
Marlin/GRBL-M3 (1.1e or earlier)
s-value max 255
baud Rate 115,200
M03/M05
M8
mm/sec
HELP NEEDED!!
If anyone has information on variable names I could use to create my own header that would be great.
Variable names needed.
MAXX
MAXY
MINX
MINY
with this info added to DEVICE SETTINGS / GCODE TAB / START GCODE BOX
we could have it auto populate with the correct numbers for framing would work on the machine when posting gcode to a flash drive.
Again, if you can help me figure out how to get the ender 3 s1 pro working better with lightburn please add your thoughts.
Thanks.