Duet3D Logo

    Duet3D

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Documentation
    • Order
    1. Home
    2. oribotic
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by oribotic

    • RE: Mapping Z to U or another axis

      @droftarts ok it works amazingly!

      just got homing working nicely, I home U, home V and then home Z
      U & Z share the same probe and V has an additional probe.

      One thing though, I don't understand the reason behind hiding the U and V axes.

      Because during a tool change for tool 0

      ; tool 0 pre change script
      G1 H2 U0 F6000 ; put u in zero position
      G1 H2 V5 F6000 ; lift V out of the way
      

      and then tool change for tool 1

      ; tool 1 pre change script
      G1 H2 V0 F6000 ; put V in zero position
      G1 H2 U5 F6000 ; lift U out of the way
      

      As long as the U & V are homed correctly, when either of the U or V axes are at 0, they are at on the current z value.

      anyway, about to to test some prints

      thanks so much for your quick assistance.

      Is the ZIDEX printer your project? A great project, lots of work and very handy source of information on independent Z axes!

      posted in General Discussion
      oribotic
      oribotic
    • RE: Mapping Z to U or another axis

      @droftarts thanks for clarifiying. It's as I suspected, no handling for Z parameter. But wow! nice simple solution, that sure beats spending the months I'd sink into hacking the firmware.

      As far as I understand, it's like this:

      Define XYZUV in config.g
      Z as dual, and U and V using the same drive numbers as Z

      M584 X0 Y1 Z2:3 U2 V3 E4:5                  ; set drive mapping
      

      During printing: both Z axes move at the same time. U/V are hidden with the P parameter of M584 command:

      M584 P3 ; show 3 axes > XYZ, hide UV
      

      At Tool Change: U/V are revealed and can move independently, with command:

      M584 P5 ; show 5 axes > XYZUV, reveal UV
      

      While revealed, position U/V up from, or down onto, the printing plane, then hide UV again for printing.

      Homing: I'm thinking I'll need to home with U & V visible, then the first tool change will lift the other. I'll try it out and see what works best.

      So glad there's some other two z axes trailblazers out there!

      Thanks for the advice. I'll give it a go in the morning...

      posted in General Discussion
      oribotic
      oribotic
    • Mapping Z to U or another axis

      Greetings!

      I've built a custom machine with two Z axes, not the type that is used for bed leveling, my machine is setup as a cartesian XYZ machine, with an extra Z axis, mounted on the X axis.

      X normal x axis
      Y normal y axis
      Z left Z axis with it's own extruder
      U right Z axis with it's own extruder

      M563 has a mapping parameter, from X or Y to UVWABC for multiple XY machines, but it doesn't seem to work for mapping Z to anything else.

      I found this post: https://forum.duet3d.com/topic/30186/map-z-axis-to-v-axis
      The post clarifies the numbering of axes, it does not give feedback as to whether or not you can map Z to V

      I just tried with this line:

      M563 P1 D1.2 H1 Z3 F1 S"RIGHT XYU"
      

      I'm assuming it is ignoring the Z parameter, it's not throwing an error or warning, but appears to be ignoring it. Because the Z axis moves during a print with Tool 1 selected, not the U axis.

      Is there a way to map Z movements to U or another axis, when Tool 1 is selected?

      thanks for any tips!

      posted in General Discussion
      oribotic
      oribotic
    • Motor disconnect warning, stepper moves random direction

      Hello, I'm setting up a CNC machine, it's a Sherline 5800, nice machine. I get warning on motor 1 (which is my Y axis) about a possible disconnect on phase A.

      Checked the cables and connectors with a multimeter, and they seem sound. Tried another motor port, same problem.

      The odd thing is that the motor moves in a random direction with each command. Pressing +10 might make it move one way or the other.

      I'm thinking possibly the error may be at the crip connection to the board. I might crimp them again, and report back.

      posted in CNC
      oribotic
      oribotic