Skip to content

In PEmbroider_lines_1.pde example, the bobbin thread gets tangled #111

@nkymut

Description

@nkymut

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

IMG_2325
IMG_2327

Thank you in advance!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions