This wiki has been archived and made read-only.
For up-to-date information about TkkrLab and it's projects please visit our main website at tkkrlab.nl.

Difference between revisions of "Mini A5 Laser"

From

Jump to: navigation, search
Line 19: Line 19:
 
=Building=
 
=Building=
 
They included a video where they show how to build the machine. Some details are not clearly sown so here some extra notes :
 
They included a video where they show how to build the machine. Some details are not clearly sown so here some extra notes :
* before you screw on the acry legs be sure you have the nuts installed for adjusting the belts.
+
* before you screw on the acry legs be sure you have the nuts installed in the upper slide for Y axes for adjusting the belts.
  
  

Revision as of 22:49, 22 April 2019

Project: Mini A5 Laser
Mini A5 Laser Picture.jpg
Name Mini A5 Laser
Initiator zeno4ever
Status {{{Status}}}
Skills Arduino, CNC
Summary Make a chinese A5 Laser more useable

__ On this page you find the problems (and solutions) of building a cheap chinese A5 17x20 2000mW mini laser. See this as hints that you can use for improving your own mini laser, but there are no guarantee, so use on your own risk!!

You working with lasers that might damage your eyes when used improperly. Be aware of your own (and other bystanders) safety.

This is a cheap chinese clone of Eleksmaker A5 you can buy on aliexpress

Specifications :

  • Engraving ares 17x20cm
  • 2000MW / 2W blue laser
  • Delivered with Arduino nano with GRBL 0.8 (and baudrate only 9600!)

Building

They included a video where they show how to build the machine. Some details are not clearly sown so here some extra notes :

  • before you screw on the acry legs be sure you have the nuts installed in the upper slide for Y axes for adjusting the belts.


GBRL

Default version 0.8 was installed, this is a old version and has no laser support. I updated to GRBL 1.1f but an extra challenge is that pin D11 and D12 are swapped (so you can use hardware PWM)

Three ways to update the PWM (swap D11&D12 pin) on Arduino nano GRBL 1.1

1) Modify harware pins

Arduino nano GRBL.JPG

I solved this by hardware, I don't user pin D12 any way (=Z home limit) and rerouted pin D11 to position of D12. I cut off the pin D11 and bend the leg of D12 to the position of D11. I used a extra long header pin, but I don't think it's really necessary.

Extra advantage is if you put back the old original arduino everything stills works.

2) recompile with ' VARIABLE_SPINDLE'

You could also fix this in software by disable the option '#define VARIABLE_SPINDLE' in config.h, but then you have only laser on/off control, wich is very limited.

3) modify PCB

Other way to fix this is by modify the pcb "You can cut the track connected to D12 on your board and connect it to D11 to install grbl v1.1."

Change the default GRBL 1.1f settings to:

  • $32=1 (laser mode enable)
  • $100 = 80 (steps per mm/ X)
  • $101 = 80 (steps per mm/ Y)
  • $110 = 1000 (max. rate mm/min in X)
  • $111 = 1000 (max. rate mm/min in Y)
  • $120 = 100 (acceleration mm/s^2 in X)
  • $121 = 100 (acceleration mm/s^2 in Y)

Other useful resources