Close



Results 1 to 10 of 12

Hybrid View

  1. #1
    Engineer-in-Training gmay3's Avatar
    Join Date
    Mar 2014
    Location
    USA
    Posts
    388
    Add gmay3 on Thingiverse
    kd7eir, thanks again my ABL is working now and it is awesome!

    I've noticed that my probe servo will chatter back and forth a little while travelling in the Z direction down to the bed. Is this normal? I don't think it's bad enough to upset the ABL plane but could the chattering cause any damage to the servo from and electrical or mechanical perspective?

  2. #2
    Technologist
    Join Date
    Oct 2014
    Posts
    134
    In the configuration.h file, you will find:

    //#define PROBE_SERVO_DEACTIVATION_DELAY 300


    I highly suggest you uncomment this line so that it detaches the servo after movement. You have probably noticed the servo jitters while printing if you do not have this line uncommented. This constant jittering will cause servo failure. Note that if you are using a slow servo, you may need to increase the delay.


    If you look in marlin_main.cpp you will find two functions:


    static void engage_z_probe()
    and
    static void retract_z_probe()


    These are where the calls are made to extend and retract the Z-probe. You will notice they have if statements that look for a value of PROBE_SERVO_DEACTIVATION_DELAY. If that value is >0, the servo is attached and detached. The Arduino will only send a drive signal to an attached servo. This prevents the jittering.

  3. #3
    Engineer-in-Training gmay3's Avatar
    Join Date
    Mar 2014
    Location
    USA
    Posts
    388
    Add gmay3 on Thingiverse
    Finally got around to making this firmware change and it works perfectly! No more jitter, thanks so much kd7eir!

  4. #4
    Technologist
    Join Date
    Oct 2014
    Posts
    134
    Quote Originally Posted by gmay3 View Post
    Finally got around to making this firmware change and it works perfectly! No more jitter, thanks so much kd7eir!
    Glad that I could help.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •