Quantcast
Channel: Reprap Forum - Controllers
Viewing all articles
Browse latest Browse all 10211

Re: Marlin Endstop wiring

$
0
0
The second link is correct. You connect the normally closed contacts between the input and ground. There needs to be a pull up but often just the internal pull ups in the chip are used. They need to be enabled in the firmware.

marlin configuration looks like this:
// Endstop Settings
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors

// The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins.
const bool X_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops.
const bool Y_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops.
const bool Z_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops.

Viewing all articles
Browse latest Browse all 10211

Trending Articles