Edge co2 Laser engraving Issue in M4 laser mode #1044
Replies: 6 comments
-
I would set $30 to 255. Although most people I've seen using Lightburn set it to 1000. |
Beta Was this translation helpful? Give feedback.
-
Also it sholud be set the same in 2 places in lightburn. |
Beta Was this translation helpful? Give feedback.
-
Dear friend. I checked my GRBL config and I have $30 to 255. And S-Max value in LightBurn to 255. It doesn't fix... |
Beta Was this translation helpful? Give feedback.
-
Hello @AxelGUILLAUMET I believe you need to uncomment and set pwm min value higher in config.h The problem is CO2 lasers do not fire when they go under a certain pwm value. |
Beta Was this translation helpful? Give feedback.
-
Tried to move the $31 GRBL parameter and it doesn't work... What the difference between #define SPINDLE_PWM_MIN_VALUE 20 y $31? Regards. |
Beta Was this translation helpful? Give feedback.
-
$31 and SPINDLE_PWM_MIN_VALUE work very differently $31 sets a min RPM, if you set your rpm (S Value) below this it will turn off the spindle/laser SPINDLE_PWM_MIN_VALUE adds the value to the PWM output. Looking at the code I believe neither of these will work as you expect, they don't work as I would expect them to work. I would look at changing this line - spindle_control.c line 213 then set $31 to 1 and SPINDLE_PWM_MIN_VALUE to around 30-40 depending on when the laser fires. This equation converts the 0-255 power levels to laser firing power to max laser power eg. 30-255 Please note this is untested but should do what you are after. |
Beta Was this translation helpful? Give feedback.
-
Dear friends.
I'm trying to convert an old RF co2 laser cutter to a GRBL laser cutter, I solved everything but the problem I face now is the following:
When I slow down the machine this default is less.
What I think is happening is during the acceleration time, GRBL automatically adjust the PWM value while it's accelerating?
I looked into the source code at config.h
It should exist a parameter to parameter this acceleration/pwm factor that no?
I use LightBurn.
Here is my GRBL configuration:
Beta Was this translation helpful? Give feedback.
All reactions