-
Notifications
You must be signed in to change notification settings - Fork 31
Description
First of all, thank you for creating such an amazing library that allows creative coders to explore the world of embroidery!
I'm not sure if this is the right place to ask, as I'm uncertain if it's a sewing machine setup problem or a software problem.
But when embroidering the output from Example/PEmbroider_lines1.pde, I always encounter issues where the bobbin thread gets tangled and the upper thread breaks, or worst-case scenario, the needle breaks at the exact point.
I have no issue with other examples such as Hello_PEmbroider.pde.
Here is the part where the issue occurs.
E.strokeSpacing(2.0);
E.setStitch(5, 15, 0.0);
E.PARALLEL_RESAMPLING_OFFSET_FACTOR = 0.33;
E.strokeCap(SQUARE); // NOTE: currently not working for PERPENDICULAR
E.strokeMode(PEmbroiderGraphics.PERPENDICULAR);
//repeats a stitch at the end of each line drawn
E.beginRepeatEnd(2);
int lineX = 50;
for (int i=0; i<nLines; i++) { // Break Thread when nLines == 3
float x0 = lineX;
float x1 = x0+lineLength;
float y0 = map(i, 0, nLines-1, 50, height-50);
E.strokeWeight(i+1);
E.line (x0, y0, x1, y0);
}Has anyone else encountered a similar situation?
Processing 4.0b1
ExportFile Format: .dst
Machine: BERNINA B590
Needle: BERNINA 130/705 H-E 75/11
upper thread:Mettle Polyester No.40
bobbin thread: SERACOR, Polyester No.120
Thank you in advance!

