Quote Originally Posted by Roxy View Post
It sounds like you have one of the (X,Y) pair flipped. You can unplug a motor cable and flip it. That should take care of the movement. But assuming the connectors are plugged in correctly, it might be best to keep things standard. You can make the changes in Configuration.h. You are looking for lines that look like this:

Code:
#define INVERT_X_DIR false    // for Mendel set to false, for Orca set to true
#define INVERT_Y_DIR false    // for Mendel set to true, for Orca set to false
#define INVERT_Z_DIR true     // for Mendel set to false, for Orca set to true


It will move towards the limit switches defined by these lines in the Configuration.h file:

Code:
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR 1
If it doesn't move and it isn't at the end of travel, you have a problem with the limit switches thinking they are being pressed when they are not. You can check this with the M114 command. With the nozzle in the center of the bed, give it a M114 and see what it says. With the motors turned off, slide the extruder to one end (where you see a limit switch). Give it another M114 and see if the state of the switches change.
Okay so printer moves in the correct axis now (+/- X,Y,Z) when operated manually in the program.

Using PronterFace, when i press the Home axis Button on X and Y they move towards the Limit Switches, however Z moves up (+Z) and doesnt stop, meaning i have to knock power off, this even happens when I push the limit switch myself. The way i have my limit switches layed out is at positions Maximum +Y, Maximum +X and Min -Z.

They are wired in the Normaly Closed function, and sometimes when i turn the printer on it wont move in a specific direction -Z because the limit switch is made (According to PronterFace).