1. Got a question or need help troubleshooting? Post to the troubleshooting forum or Search the forums!

Answered Ive got a major z axis problem

Discussion in 'Troubleshooting' started by Sergio8849, Dec 3, 2020.

  1. Sergio8849

    Sergio8849 New Member

    Joined:
    Nov 30, 2020
    Messages:
    15
    Likes Received:
    1
    Sorry for the bad quality you guys. But heres what I think you wanted to see.



    Sent from my SM-G960U using Tapatalk
     
  2. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    OK, so the Z home is not being attempted. This could be because the switch is being read as HOME all the time.
    When the switch is closed it is home, open should not be. If you have a GCode terminal (from a host program like MatterControl) attached go to the terminal and enter a

    G28;

    and watch what it does (should be the same as you selecting HOME from the LCD) and then enter this and copy/paste the results back here:

    M119;

    That should result in something like the following:

    Reporting endstop status
    x_min: open
    y_min: open
    z_min: TRIGGERED

    except for any Axis that is HOME you should see triggered. I suspect you have at least one axis reporting HOME when it is not and that is a problem with the switch or wiring or the RAMPS board. We can trace that back once we know.
     
  3. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    PS the grinding on the X home is likely also switch related, but it can also be something getting in the way of the carriage movement -- let's fix the Z first :)
     
    Sergio8849 likes this.
  4. Sergio8849

    Sergio8849 New Member

    Joined:
    Nov 30, 2020
    Messages:
    15
    Likes Received:
    1
    Hey guys! Sorry for the late response, this weeks been kinda hectic. Ive got the video update right here


    Sent from my SM-G960U using Tapatalk
     
  5. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    OK, the video shows that after the G28 the X is homed, the Z is homed* and the Y is not (because for some reason it went to center of bed rather than home).

    I would start by reloading the beta firmware. The G28 should home in the front left corner, not the center of the bed.
    The beta firmware is over here: https://help.robo3d.com/hc/en-us/articles/115000723672-Robo-R1-original-firmware
    Look at the link labeled "R1 Beta ( No Autolevel )".

    Then go to the link that describes how to load the firmware : https://help.robo3d.com/hc/en-us/articles/115000717071-Updating-firmware-with-Arduino

    or read the section of the FAQ that covers it: http://community.robo3d.com/index.php?threads/faq-r1-r1-series-printers.19735/#post-119335

    and then reload the firmware and try this again with the G28 and M119



    *but it is not really home since it is not going down. That is probably an issue with the firmware or the switch (or the wires). We can sort that next. Home is the extruder parked on/near the bed in that front-left corner.
     
  6. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338
    It is important to use the correct firmware because some models of the R1 have the switches wired normally open and other models have them wired normally closed. If you load the wrong firmware you will not be able to get very far :)
     
    Sergio8849 likes this.
  7. Sergio8849

    Sergio8849 New Member

    Joined:
    Nov 30, 2020
    Messages:
    15
    Likes Received:
    1
    Okay awesome, ill give it a shot later today

    Sent from my SM-G960U using Tapatalk
     
  8. Henradrie

    Henradrie New Member

    Joined:
    Dec 15, 2019
    Messages:
    27
    Likes Received:
    7
    I used this code instead.

    G28 ;
    G29 ;
    G92 E0 ;
    G01 Z0.10 ; Adjust this to deal with first layer nozzle height
    G92 Z0 ;
     
  9. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,912
    Likes Received:
    7,338

    This works if all you need is a global Z offset. It will generically (across the entire bed) apply the offset to the Z.
    Most people using autoleveling are better off with the M565 approach since it gets calculated into the leveling offset by the firmware.
     

Share This Page