This project is based on waste reuse and recycling of an obsolete laser cutter commercialized dy www.proeltsi.com in the 90s The rebuild of the electronic is based on Arduino Uno running GRBL 1.1 extended with a custom shield connected on an raspberry-pi ruinng LaserWeb4. This industrial laser cutter is now fully operational.
### GRBL
#### Building the firmware
##### Clone GRBL source repository
````shell
git clone https://github.com/gnea/grbl.git
cd grbl
git checkout -b etextile-laser v1.1h.20190825
git apply ../grbl-config.patch
make
avr-gcc
is needed for building the firmware
make flash PROGRAMMER="-c arduinon -p m328 -P /dev/ttyACM0"
avrdude
is needed for flashing the firmware
These settings commands should be sent to the GRBL firmware only once after (re)flashing, they are saved in EEPROM.
$3=3
$21=1
$22=1
$23=3
$25=2000
$32=1
$100=64
$101=154
$110=2500
$111=2500
$121=15
$122=15
$131=1000
$132=500
https://github.com/gnea/grbl/wiki/Grbl-v1.1-Configuration
https://github.com/gnea/grbl/wiki/Grbl-v1.1-Laser-Mode
https://github.com/gnea/grbl/wiki/Two-Axis-System-Considerations