Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. GizmotronX5000
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 21
    • Posts 94
    • Best 7
    • Controversial 0
    • Groups 0

    Topics created by GizmotronX5000

    • GizmotronX5000undefined

      3D printing on a rotating axis

      General Discussion
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      355
      Views

      GizmotronX5000undefined

      Thanks for the tips! I was thinking I might do something like that. For the cylinder it would make sense to unwrap it and design a rectangular STL part and wrap it back onto the cylinder. Getting rid of the seam seems difficult though.

    • GizmotronX5000undefined

      Update on delta motion in custom kinematics class

      Firmware wishlist
      • • • GizmotronX5000
      11
      0
      Votes
      11
      Posts
      948
      Views

      GizmotronX5000undefined

      or should I being doing something similar to rotary delta with segmented motion? Is that a valid work around? I could change all axes to be linear axes, but use segmented motion instead in the constructor. Would I need to change anything else if I tried that?

      I just tried this to see what might happen. I changed my kinematics class to:
      MyKinematics::MyKinematics() : Kinematics(KinematicsType::myKinematics, DefaultSegmentsPerSecond, DefaultMinSegmentSize, false), numTowers(UsualNumTowers)
      {
      Init();
      }

      I took the definitions of the defaults from rotary delta kinematics, 100, and 0.2 respectively

      I also changed GetMotionType to:
      MotionType LinearDelta7DKinematics::GetMotionType(size_t axis) const
      {
      return MotionType::linear;
      }

      Things mostly work now, but the motion is not entirely smooth. It is definitely trying to approximate a straight line, but not quite right. As far as I can tell all of the moves do at least arrive in the correct spot.

    • GizmotronX5000undefined

      Segment free delta motion in custom kinematics class

      Firmware wishlist
      • • • GizmotronX5000
      5
      0
      Votes
      5
      Posts
      623
      Views

      GizmotronX5000undefined

      @dc42 Awesome. I'll try that out and report back.

    • GizmotronX5000undefined

      I2C errors in 2.02, using DWC 2.0.0 RC3

      General Discussion
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      396
      Views

      Martin1454undefined

      We are discussing it also over here:
      https://forum.duet3d.com/topic/7269/duet-sometimes-really-slow-i2c-error-or/33
      A suggestion is to put some resistors on the duex5 header, but I haven't tried it yet.

    • GizmotronX5000undefined

      Binary isn't being created

      Firmware developers
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      964
      Views

      GizmotronX5000undefined

      Yep, that was the problem. I knew it was going to be something simple I was forgetting. I added single quotes around the file names in the post-build step and it worked. Thanks for the help.

    • GizmotronX5000undefined

      Implementing GetMotionType vs GetKinematicsType

      Firmware wishlist
      • • • GizmotronX5000
      2
      1
      Votes
      2
      Posts
      397
      Views

      dc42undefined

      You are right, the code needs to be refactored to use the GetMotionType function.

    • GizmotronX5000undefined

      "A" endstop being stuck on.

      My Duet controlled machine
      • • • GizmotronX5000
      7
      1
      Votes
      7
      Posts
      940
      Views

      GizmotronX5000undefined

      @dc42 Thanks for looking into it! I'm happy to help test.

    • GizmotronX5000undefined

      Printer slowly responds to G-code

      My Duet controlled machine
      • • • GizmotronX5000
      7
      0
      Votes
      7
      Posts
      825
      Views

      GizmotronX5000undefined

      Unplugging wires and reseating them seems to have fixed it. Thanks!

    • GizmotronX5000undefined

      Restarts vs on/off while modifying firmware

      Firmware developers
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      545
      Views

      dc42undefined

      Probably caused by an uninitialised variable.

    • GizmotronX5000undefined

      Smooth interpolated motion for delta with extra axes.

      Firmware wishlist
      • • • GizmotronX5000
      16
      0
      Votes
      16
      Posts
      1.6k
      Views

      dc42undefined

      Yes, it will be in the next 2.02beta release.

    • GizmotronX5000undefined

      Segment free delta vs Segmented delta

      Firmware developers
      • • • GizmotronX5000
      2
      0
      Votes
      2
      Posts
      604
      Views

      dc42undefined

      The difference is that if useSegmentation is true then moves will be chopped into short segments as they are passed between the GCodes class and the Move class.

    • GizmotronX5000undefined

      LinearDeltaKinematics.cpp

      Firmware developers
      • • • GizmotronX5000
      2
      0
      Votes
      2
      Posts
      438
      Views

      dc42undefined

      I worked out the maths of the Inverse Transform function by solving the simultaneous equations, having at the time failed to find a solution on the Internet. That was before I found that the magic search term was "trilateration". There are lots of ways of doing it, and I expect man of them are more resistant to rounding error than the method I devised.

    • GizmotronX5000undefined

      Strange homing behavior on a delta w/ extra linear V axis

      Tuning and tweaking
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      461
      Views

      GizmotronX5000undefined

      @dc42 Awesome! Thank you. So I am doing it correctly for now until a bugfix is implemented. That's good to know.

    • GizmotronX5000undefined

      LinearDeltaKinematics::ComputeDerivative

      My Duet controlled machine
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      524
      Views

      GizmotronX5000undefined

      @dc42 Thanks! I commented it out for the time being, and nothing crashed, so I figured it was fine. I had already removed the auto calibration, so that makes sense why I couldn't find it.

    • GizmotronX5000undefined

      Servos as Axes

      Firmware wishlist
      • • • GizmotronX5000
      10
      0
      Votes
      10
      Posts
      1.4k
      Views

      GizmotronX5000undefined

      @t3p3tony Sounds good! Thanks.

    • GizmotronX5000undefined

      U, V axes not working

      General Discussion
      • • • GizmotronX5000
      3
      0
      Votes
      3
      Posts
      423
      Views

      GizmotronX5000undefined

      Yep that totally fixed it. I didn't realize those were needed. Fantastic! Thanks.

    • GizmotronX5000undefined

      New DuetEthernet connection problems

      Firmware installation
      • • • GizmotronX5000
      19
      0
      Votes
      19
      Posts
      2.8k
      Views

      Catalin_ROundefined

      As I do a lot of radio monitoring stuff (hardware, software) even my keyboard and mouse are wired. And UTP cables tend to be quite noisy so everything in here is FTP or STP. Unfortunately that comes with a lot more rigidity if keeping the costs within reasonable limits! 😞

    • GizmotronX5000undefined

      Error: Short-to-ground on drivers 0 1 2 3 4 5 6 7 8 9

      Duet Hardware and wiring
      • • • GizmotronX5000
      10
      0
      Votes
      10
      Posts
      1.8k
      Views

      GizmotronX5000undefined

      Thanks for the contact. I'll try that.

    • GizmotronX5000undefined

      UV Axes on a Delta printer homing errors

      Firmware wishlist
      • • • GizmotronX5000
      16
      0
      Votes
      16
      Posts
      1.8k
      Views

      dc42undefined

      The 1.20beta version that I released a couple of days ago should fix your U and V homing issues.

    • GizmotronX5000undefined

      UVW Cartesian axes available for delta setups

      Firmware wishlist
      • • • GizmotronX5000
      1
      0
      Votes
      1
      Posts
      410
      Views

      No one has replied