Really in a fix here February 02, 2019 05:31PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 02, 2019 08:47PM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 02, 2019 09:54PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 02, 2019 11:26PM |
Admin Registered: 13 years ago Posts: 7,118 |
// Specify here all the endstop connectors that are connected to any endstop or probe. // Almost all printers will be using one per axis. Probes will use one or more of the // extra connectors. Leave undefined any used for non-endstop and non-probe purposes. #define USE_XMIN_PLUG #define USE_YMIN_PLUG #define USE_ZMIN_PLUG //#define USE_XMAX_PLUG //#define USE_YMAX_PLUG //#define USE_ZMAX_PLUG
// coarse Endstop Settings #define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
#ifndef ENDSTOPPULLUPS // fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined //#define ENDSTOPPULLUP_XMAX //#define ENDSTOPPULLUP_YMAX // #define ENDSTOPPULLUP_ZMAX // #define ENDSTOPPULLUP_XMIN // #define ENDSTOPPULLUP_YMIN //#define ENDSTOPPULLUP_ZMIN #endif
#ifdef ENDSTOPPULLUPS #define ENDSTOPPULLUP_XMAX <--- why enabled when you are using XMIN endstops? #define ENDSTOPPULLUP_YMAX <--- why enabled when you are using YMIN endstops? //#define ENDSTOPPULLUP_ZMAX //#define ENDSTOPPULLUP_XMIN <--- why disabled when you are using X-MIN endstops? //#define ENDSTOPPULLUP_YMIN <--- why disabled when you are using Y-MIN endstops? #define ENDSTOPPULLUP_ZMIN #endif
#ifdef ENDSTOPPULLUPS //#define ENDSTOPPULLUP_XMAX //#define ENDSTOPPULLUP_YMAX //#define ENDSTOPPULLUP_ZMAX #define ENDSTOPPULLUP_XMIN #define ENDSTOPPULLUP_YMIN #define ENDSTOPPULLUP_ZMIN #endif
// ENDSTOP SETTINGS: // Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR 1 <--- why when your using min endstops? #define Y_HOME_DIR 1 <--- why when your using min endstops? #define Z_HOME_DIR -1
// ENDSTOP SETTINGS: // Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1
Re: Really in a fix here February 03, 2019 12:15AM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 12:31AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 12:44AM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 01:12AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 02:54AM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 03:19AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 03:46AM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 04:05AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 05:20AM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 04:11PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 05:46PM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 06:33PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 07:45PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 08:43PM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 08:50PM |
Admin Registered: 13 years ago Posts: 7,118 |
Re: Really in a fix here February 03, 2019 09:39PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 03, 2019 10:52PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 04, 2019 08:25AM |
Registered: 8 years ago Posts: 759 |
Re: Really in a fix here February 04, 2019 02:08PM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 05, 2019 02:06AM |
Registered: 8 years ago Posts: 165 |
Re: Really in a fix here February 08, 2019 05:18PM |
Registered: 9 years ago Posts: 752 |
Re: Really in a fix here February 09, 2019 04:32PM |
Registered: 8 years ago Posts: 165 |