FW0.92 to FW 1.0.4

Hello everyone.
I changed the design of the printer and had to go from fw version 0.92 to 1.0.4. It was a double Z axis and two Z limit switches that are not in the older version. (at least I didn't find them)

Now I'm working on version 1.0.4 but I have a problem.
I have shifted the zero point X.

The printer doesn't want to go to negative values..I need it to go to
X-30

This is necessary because (in version 0.92) before printing the machine goes to G28, then X -30, Z-1 where the extruder extrudes 10 mm of filament and the nozzle is wiped. followed by the print itself.

Does anyone have an idea how to force fw to enable X -30. ?

Comments

  • Question number two.
    How to disable the display that I don't want.
    In my case I don't want the secondary displays when printing but I only want the home screen. Just like it was in the old FW version.
  • The official position you can move to is defined by x_min, z_min. So setting them to -30 and -1 allows the move. If the position should not be officially allowed mit is possible because you moved 30mm right from endstop you can use P1 in G1/G0 moves to disable boundary check and it will try on own risk. Afterwards send
    G1 P0 to disable it for the real print.

    Regarding display switching check UI_DISABLE_AUTO_PAGESWITCH it can disable automatic rotating if that is what you meant.
  • I solved the negative values. In the old version, it was enough to enter a value to shift the zero point in ENDSTOP_X_BACK_ON_HOME. The new version does not accept this and will not go into negative numbers. I solved it with X_MIN -30.
  • Thank you for the quick response.

  • I have one more question. Even though the Z-axis speed is set to 15 mm/s, it is terribly slow when starting to print. How do I adjust the speed?
  • edited August 16
    Repetier said:
    The official position you can move to is defined by x_min, z_min. So setting them to -30 and -1 allows the move. If the position should not be officially allowed mit is possible because you moved 30mm right from endstop you can use P1 in G1/G0 moves to disable boundary check and it will try on own risk. Afterwards send
    G1 P0 to disable it for the real print.

    Regarding display switching check UI_DISABLE_AUTO_PAGESWITCH it can disable automatic rotating if that is what you meant.


    Specifically, I wanted the home screen to be displayed during printing, which is completely deactivated when printing.
  • edited August 16
    The problem with the Z-axis speed when starting to print was that the axis goes down together with the extruder. It had a low speed set for printing 10 mm filament and therefore it also went slowly.
Sign In or Register to comment.