Delta + RADDS + HALL-E Endstops configuration

Hello there,

i recently bought for my delta a radds with hall-e endstops. 
The hall-e Endstops are properly connected and when they are untriggerd Signal is 0V and when triggerd the signal goes to 3.3V so they are Normally Open. Or not?
Anyway. In the firmware-configurator i set the MAX-Endstops to "electronic, normally open". 
But when i ask the firmware with M119 all endstops are HIGH when they are untriggerd. 
Can someone explain me this. Is it a bug in the Firmware configurator?

Config says for all three axis:

#define ENDSTOP_PULLUP_X_MAX false
#define ENDSTOP_X_MAX_INVERTING true
#define MAX_HARDWARE_ENDSTOP_X true

thanks

Comments

  • hello
    delta radds + endstop max mechanical limit control with LED  and Z mini kit frs

    // ################ Endstop configuration #####################

    #define ENDSTOP_PULLUP_X_MIN true
    #define ENDSTOP_X_MIN_INVERTING false
    #define MIN_HARDWARE_ENDSTOP_X false
    #define ENDSTOP_PULLUP_Y_MIN true
    #define ENDSTOP_Y_MIN_INVERTING false
    #define MIN_HARDWARE_ENDSTOP_Y false
    #define ENDSTOP_PULLUP_Z_MIN false
    #define ENDSTOP_Z_MIN_INVERTING true
    #define MIN_HARDWARE_ENDSTOP_Z true
    #define ENDSTOP_PULLUP_X_MAX true
    #define ENDSTOP_X_MAX_INVERTING true
    #define MAX_HARDWARE_ENDSTOP_X true
    #define ENDSTOP_PULLUP_Y_MAX true
    #define ENDSTOP_Y_MAX_INVERTING true
    #define MAX_HARDWARE_ENDSTOP_Y true
    #define ENDSTOP_PULLUP_Z_MAX true
    #define ENDSTOP_Z_MAX_INVERTING true
    #define MAX_HARDWARE_ENDSTOP_Z true
    #define max_software_endstop_r true

    #define min_software_endstop_x true
    #define min_software_endstop_y true
    #define min_software_endstop_z false
    #define max_software_endstop_x false
    #define max_software_endstop_y false
    #define max_software_endstop_z false
    #define ENDSTOP_X_BACK_MOVE 10
    #define ENDSTOP_Y_BACK_MOVE 10
    #define ENDSTOP_Z_BACK_MOVE 10
    #define ENDSTOP_X_RETEST_REDUCTION_FACTOR 5
    #define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 5
    #define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 5
    #define ENDSTOP_X_BACK_ON_HOME 1
    #define ENDSTOP_Y_BACK_ON_HOME 1
    #define ENDSTOP_Z_BACK_ON_HOME 1
    #define ALWAYS_CHECK_ENDSTOPS 1
  • what i forgot: repetier-firmware configuration tool for version 0.92.9 version
  • can anyone answer my question?
    i tried now with electronic normally closed and now the endstops are functional. but why? seems totally unlogic for me. do i risk any damage with this?

    thanks
  • hal endstops are electronic. The chip determines the output. With mechanical firmware enables a pullup resistor to set voltage and that works against the endstop.
  • But this answered not my question why "electronical, normaly open" doesn't work as the hall-e endstop has signal 0v untriggert. I never had enabled pullups.
  • WIth elecronic endstops it depend on the electronic if it triggers open/closed. Naming is not good I guess as it should be electronc high/low.
  • Well ok. Confused :)
Sign In or Register to comment.