EN/Styroplotter

(Weitergeleitet von Styroplotter en)
Crystal Clear action run.png
Styroplotter (en)

Status: stable

Projekt img styroplotter.jpg
Beschreibung Stryopor cutter built with an old scanner
Autor: ptflea
Version 0.8
PayPal Spenden für EN/Styroplotter


If you have any further questions about this project, feel free to contact me: ptflea [at] hackerspace-bamberg [dot] de

Styrocutting machine aka Styroplotter

Things you need

Hardware

Styroporplotter

The lightscanner has some advantages: It consists of 2 stepper motors and rails which are synchronized. That means that the steps per axis are equal, so we don't have to compensate in order to plot some correct circles.

The internal electronics of the scanner were removed and the light unit was sawed to an appropiate size and was fixed across the slide of the scanner with two screws. Using Plaast, an angle bracket was attached to the slide to keep the styrofoam in place.

After reverse engineering the steppers by "trial and error" and measuring the resistors, they could be easily attached to the motorshield.

Software

Arduino (with Motor Shield)

The arduino receives bit-encoded data from processing via the serial interface. Bit 1/2 controls the x-Axis and bit 3/4 the y-Axis So if you want to move the plotting position to x+1 and y-1, processing sends a decimal 9 to the arduino

0001: y0, x+ (1)
0010: y0, x- (2)
0100: y+, x0 (4)
1000: y-, x0 (8)
0101: y+, x+ (5)
0110: y+, x- (6)
1010: y-, x- (10)
1001: y-, x+ (9)

Here is the arduino code:

 1#include <AFMotor.h>    // http://www.ladyada.net/make/mshield/download.html
 2                        // https://github.com/adafruit/AccelStepper
 3
 4AF_Stepper motor1(200, 2);
 5AF_Stepper motor2(200, 1);
 6
 7int byte_in;
 8char nextMsg;
 9
10void setup() {
11
12    /* in RPM */
13    motor1.setSpeed(50);
14    motor2.setSpeed(50);
15
16    Serial.begin(9600);
17    digitalWrite(13, HIGH); // turn on LED to indicate program has started
18}
19
20void loop() {
21
22    if (Serial.available() > 0) {
23        byte_in = Serial.read();
24        Serial.flush();
25        if (byte_in != -1) { // if anything was received...
26            decodeMessage(byte_in);
27        }
28    }
29}
30
31void decodeMessage(int msg) {
32
33    int faktor = 5;
34    // check command type and command value
35    // read bits and move appropriate stepper
36    if (bitRead(msg, 0) == 1) {
37        // Bit 1 = High   DOWN (1)
38        motor1.step(faktor, FORWARD, INTERLEAVE);
39    }
40    if (bitRead(msg, 1) == 1) {
41        // Bit 2 = High   UP (2)
42        motor1.step(faktor, BACKWARD, INTERLEAVE);
43    }
44    if (bitRead(msg, 2) == 1) {
45        // Bit 3 = High   LEFT (4)
46        motor2.step(faktor, FORWARD, INTERLEAVE);
47    }
48    if (bitRead(msg, 3) == 1) {
49        // Bit 4 = High   RIGHT (8)
50        motor2.step(faktor, BACKWARD, INTERLEAVE);
51    }
52    sendConfirm();
53}
54
55void sendConfirm() {
56
57    if (Serial.available() > 0) {
58        Serial.flush();
59    }
60    Serial.print(9999);
61}

Processing

The processing of the svg files is done by Geomerative-Libary. The library writes the data of the line into an array which is processed point by point in the following step.

As the arduino only understands relative movements which are expressed as points in each direction the lines are interpolated with the Bresenham-Algorithm.

You can download the sourcecode from github here: https://github.com/ptflea/Styroplotter -> StyroPlotter_proc.pde

Plot-Data

SpiralFlower.svg

Processing reads the SVG files which were created with Inkspcape. The Styroplotter needs svg paths which run into one direction. To show the directions of the paths in inkscape you have to set the following preferences:

   File -> Inkscape-Preferences -> Node

Check "Show path direction on outline" option. Now the paths should have small red arrows on them.

It's important that you pay attention to the direction of the paths -- otherwise, the path will look fine, but the styroplotter will interrupt and look for a place from which the direction is right. (The way it runs can be simulated in the processing code by commenting out the parts that send commands to the Arduino chip.)

You can find a cluttered directory of svg files on github in the data/ directory: https://github.com/ptflea/Styroplotter

Action

Styroplotter in Action VIDEO

Styroplotter cutting pacman VIDEO

Plotting spiral
Plotting spiral
Inverse spiral

Results

Mario Piranha Plant
StyroNyanCat
And that is how the NyanCat looks like in Aluminum:
AluNyanCat