Hypercube Fusion movement help
-
Figured out what was happening the G1 X150 after the G90 was causing it to slip but not sure why it was running off to the right after.
I have to undock the Y axis from the endstop before any X moves.
only thing I can't work out now is why the middle of the bed is off for Z probing. When it homes and does the last part for the first bed probe it is not in the middle as it was before.
-
The assumed positions when the homing switches trigger are the same as the axis limits set by M208. So M208 indirectly determines the coordinates of the centre of the bed. See https://duet3d.dozuki.com/Wiki/Centering_the_bed_or_setting_the_bed_origin.
-
@dc42 when I home the X & Y Individually it is showing me in the DWC that X 0.0 but Y 320.0
I measured the center of the bed when I 1st got it all moving so I knew exactly where the center was when I moved the print head to the center and it was showing X 146.0 Y 130.0 and if I was to home all it would move to the center.
now if I home all it ends up almost to the front of the bed in the middle and the DWC shows that it thinks it is at X146 Y130 ??
This is what it says in my config.g
; Axis Limits
M208 X0 Y0 Z0 S1 ; set axis minima
M208 X310 Y320 Z480 S0 ; set axis maxima; Endstops
M574 X1 Y2 S1 ; set active high endstops
M574 Z1 S2 ; set endstops controlled by probe -
@dc42 said in Hypercube Fusion movement help:
which will end @Phaedrux's confusion.
It'll take a lot more than that.
I think the G91 was in one of the first tests but I should have made it explicit.
Thanks for the sanity check.
-
@RAM said in Hypercube Fusion movement help:
I have to undock the Y axis from the endstop before any X moves.
What does this mean?
You can add another -Y move to the homing file after the second endstop pass to get it out of the way.
G1 H1 Y325 F1800 ; home Y axis G1 Y-15 F6000 ; go back a few mm G1 H1 Y315 F360 ; move slowly to X axis endstop once more (second pass) G1 Y-15 F6000 ; go back a few mm for clearance G90 ; absolute positioning
@RAM said in Hypercube Fusion movement help:
when I home the X & Y Individually it is showing me in the DWC that X 0.0 but Y 320.0
That's correct because you X endstop is at the low end of travel and the Y endstop is at the high end of travel. You mentioned earlier that you could relocate the Y endstop to the front of the printer. If that's easy to do you can go ahead and do that. You'd have to change the M574 Y2 to be M574 Y1 to tell it that the endstop is now at the low end. Then you would have to change the homing files to reverse the directions of the Y moves because now it would have to move to the front instead of the back.
@RAM said in Hypercube Fusion movement help:
now if I home all it ends up almost to the front of the bed in the middle and the DWC shows that it thinks it is at X146 Y130 ??
It almost sounds as if the steps per mm are incorrect so that it's moving more than expected. Take a ruler and measure how far the head actually moves when you tell it to move 10mm in X and then in Y.
-
@Phaedrux
G1 Y-15 F6000 ; go back a few mm for clearance
this is there because if I don't have it then it clips the Y endstop as it moves out to do the Z probe in the centre of the bed.I don't know why the steps would be out as I haven't changed them at all. I will see if I can find the original config.g file and compare them to the latest config.g
-
@Phaedrux I have measured the X & Y and they are both at 10mm when asked to do 10mm movements (I checked a couple of times) if the steps are correct then whatelse could it possibly be ?
in my homeall.g file it tells it to home and then probe the bed at X 146.0, Y130.0 which is what it was before. I got the center of the bed again and now it is X 146.0, Y 190.0 which I changed in the homeall.g file and it seems to be working as it should again when using the home all.
I have no idea as to why it has changed but something is still not right.
It will home to the center of the bed but as soon as you try and do a print it is way off on the Y axis as it starts to do the print like it was before I did the new settings in the homeall.g I have a printable area of Y270mm, X280mm even though the bed is 310 x 320.What I can't understand is that before when it was printing the dimensions right just mirrored. now that it is moving in the right directions it seems to have thrown all the dimensions out ?
I set off a test print to almost the full dimensions of the bed and you can see how far off the Y axis is when it tries to print, it is about 40mm out
EDIT**
I have moved the Y endstop to the front and switched back to my old homeall.g & homey.g files and they seem to be homing in the right places. I am going to try and do a test cube to see what happens.EDIT
still printing to far forwards on the bed for some reason. would I be better off just redoing the whole of the RRF configuration tool again from the start ?as you can see from my Z axis leadscrews the cube is printing about 20-30 mm to far forwards and when it starts the print and does the nozzel wipe the nozzel is off the bed to start with
-
@RAM said in Hypercube Fusion movement help:
Y270mm, X280mm even though the bed is 310 x 320.
We can account for that difference in the M208 commands to define the size of the bed. Here's how.
Jog the nozzle so that it's at the front left corner of the printable area.
Send
G92 X0 Y0
to tell the firmware that this is what we can to consider the origin point of the printable area.Now jog the head to the left until the endstop just triggers. The X position will be a somewhat negative value because it's to the left of our 0,0 origin. Use that negative value for the M208 X minima.
Now do the same for the X+ side and jog the nozzle all the way to the right so that it's just on the edge of the printable area, or as far as the travel will allow it to go. Now use that X position as the M208 X maxima.
Then do the same for Y min and max.
Then in your slicer you may have to update the maximum bed size.
-
@Phaedrux said in Hypercube Fusion movement help:
G92 X0 Y0
I did that part but for some reason I can't go into negative moves now am I meant to send a command so that it will allow movement past - ?
I did try sending
M564 H0
but it didn't work.Thanks for all the help with this I wouldn't have gotten this to work, it would have ended up as scrap metal and a hammer through the duet.
-
@RAM Ah yes. M564 S0 will allow you to move past the boundary
-
@Phaedrux said in Hypercube Fusion movement help:
M564 S0
thanks i knew there would be something I just didn't know what on earth to search for
-
@Phaedrux said in Hypercube Fusion movement help:
Then in your slicer you may have to update the maximum bed size.
I use simplify3D I have put the bed size in so that it matches but would I need to change the values for the Global G-code offsets & Toolhead offsets too do you think ?
-
@RAM I'm not a simplify3d user, so I'm not sure what those offsets are doing.
-
This post is deleted! -
Thanks guys for all the help with the issues, once I have finished totally building I I will post it in the built area.
-
Did the upload issue get resolved?
-
@Phaedrux said in Hypercube Fusion movement help:
Did the upload issue get resolved?
Nope I have given up with that side of it I will just keep pulling the SD Card for now so I can get the thing dialed in I am having teething problems with this bowden setup and I am used to direct drive so a whole new ball game for me.