T
he Etch A Sketch has 2 knobs in the lower corners, one controls movement in the X axis and the other controls movement in the Y Axis. The laser cutter also has an X and a Y axis so each knob is mapped directly to the appropriate axis. The laser is only turned on while the axis are moving which prevents the laser from setting fire to the material it is cutting.The control is all done using the Arduino Mini Pro which shows that small can also be powerful. The lack of processing speed to produce stepper motor pulses is compensated for using the hardware PWM modules in exactly the same ways as described in my previous instructable.
We will be taking this whole project to the UK Maker Faire at the end of April as well as numerous other UK Maker Faires this year so if you’re lucky you can come and visit us and give it a try for yourself.
Step 1: Quadrature Inputs
Quadrature output is sent over two data lines, each line carries a square wave signal but the two lines are 90 degrees out of phase.
By counting the number of pulses on either square wave it is possible to determine how far the encoder has been turned. It is important to know the direction that the knob is turning to decide if the step should be added or taken away from the total count. This is where the second data line can be used.
If you check the state of the ‘B’ data line as the state of the ‘A’ line changes you can determine which direction the knob was turning. In the example images I have highlighted the falling edge of the ‘A’ signal. While the knob is being turned clockwise the ‘B’ line is high as the ‘A’ line falls. When the knob is turned anticlockwise the ‘B’ line is low.
For ultra fast detection of the quadrature input the first data line could easily be connected to an interrupt input and set to detect the signal edge. Each time the interrupt triggers the count can be changed and by checking the second line on a standard input you know to add or subtract from the count.
Step 2: The Etch A Sketch Controller
Wires were run from the encoders down to the controller before the frame was closed with additional layers of ply. The red coloured was created with mahogany wood dye. In total there are 6 layers of material in the frame giving it 18mm of thickness, the whole frame is 100mm x 135mm.
I’ve attached the cutting files in svg and pdf. The files were originally created in Inkscape and saved as svg but I find pdf is much more interchangeable.
Step 3: Arduino controller board
This project could be used on any laser cutter that uses the leetro lasercut controller. By using 3.81mm terminal blocks, the same as the existing controller, this board can be plugged in and out of the laser cutter. It can still be used as a functional laser cutter with a moments notice.
For more detail: Arduino based Etch A Sketch Laser Cutter