Quote Originally Posted by Roxy View Post
First, you don't have max end stops, right? If not, we should turn those off. That is done in Configuration.h by changing to this:
Code:
#define DISABLE_MAX_ENDSTOPS
Okay I've Disabled Max End stops in configuration h, which has now left me with only the min end stops when running a M119 Command. I can confirm that when i press the end stops, the state changes, however they are triggered and when pressed, open.

Quote Originally Posted by Roxy View Post
Code:
const bool X_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
Because of this i have inverted the logic in configuration h, which now shows them triggered when pressed, which is what I required.

What would be my next step in getting towards my first print?

Thanks for your help so far, its been extremely helpful.