/// <summary>
 /// Initializes a Positiontracker, this shouldn't be done directly and is part of the Connection it needs anyway
 /// </summary>
 /// <param name="con">The Octoprint connection it connects to.</param>
 public OctoprintPosTracker(OctoprintConnection con):base(con)
 {
     BufferPos = new float[] { 0, 0, 0, 0 };
     MaxFeedRateBuffer = new float[] { 200, 200, 12 };
     MovesBuffer = new List<float[]>();
     //syncthread = new Thread(new ThreadStart(AutoSync));
     //syncthread.Start();
 }
Пример #2
0
 public OctoprintTracker(OctoprintConnection con)
 {
     Connection = con;
 }
 /// <summary>
 /// Initializes a Printertracker, this shouldn't be done directly and is part of the Connection it needs anyway
 /// </summary>
 /// <param name="con">The Octoprint connection it connects to.</param>
 public OctoprintPrinterTracker(OctoprintConnection con) : base(con)
 {
 }
 /// <summary>
 /// Initializes a Jobtracker, this shouldn't be done directly and is part of the Connection it needs anyway
 /// </summary>
 /// <param name="con">The Octoprint connection it connects to.</param>
 public OctoprintJobTracker(OctoprintConnection con) : base(con)
 {
 }
 public OctoprintBase(OctoprintConnection con)
 {
     Connection = con;
 }