Re: 8bit engraving with a CO2 laser April 13, 2017 05:18PM |
Admin Registered: 17 years ago Posts: 14,005 |
Re: 8bit engraving with a CO2 laser April 14, 2017 02:46PM |
Registered: 7 years ago Posts: 4 |
Re: 8bit engraving with a CO2 laser April 14, 2017 06:56PM |
Admin Registered: 17 years ago Posts: 14,005 |
Re: 8bit engraving with a CO2 laser April 14, 2017 08:37PM |
Registered: 7 years ago Posts: 4 |
Re: 8bit engraving with a CO2 laser April 15, 2017 03:54AM |
Registered: 9 years ago Posts: 5,232 |
Re: 8bit engraving with a CO2 laser April 18, 2017 10:05AM |
Registered: 7 years ago Posts: 4 |
for (int i = 0; i < 3; i++) {to:
for (int i = 0; i < Z_AXIS; i++) {When I instead use:
for (int i = 0; i <= Z_AXIS; i++) {... everything works as expected. If you aren't using a z axis, everything else would work normally so it's understandable that he wouldn't have seen this.
float focus = LASER_FOCAL_HEIGHT - f_length;to read:
float focus = LASER_FOCAL_HEIGHT + f_length;and for these commands to enqueue properly, in the same function change:
enqueuecommands_P(cmd);to:
enqueuecommand(cmd);Again, without a Z, this stuff wouldn't get tested. Unfortunately it's going to be a week or two before I can circle back to testing the actual engraving workflow but I can't wait to give it a try!