2

I recently got a KP3S Kingroon 3D printer and have been trying to set it up.

After a couple of test prints, the Y-axis seems to only move in one direction. At first, I thought it was a motor issue, but when I go into the manual move directions for the Y-axis it seems that both inputs lead to the motor spinning in the same direction.

We have ruled out endstops as a possible issue. I think it might be a hardware issue but lack the skills to confirm the exact issue.

Send:17:40:57.724: @moveRel Y10.00  
Send:17:40:57.724: N31 G1 Y10.00 F6000  
Send:17:40:57.728: @updatePrinterState  
Send:17:41:00.824: @moveRel Y-10.00  
Send:17:41:00.824: N35 G1 Y0.00 F6000  
Send:17:41:00.828: @updatePrinterState  
Send:17:41:07.445: @moveRel Y10.00  
Send:17:41:07.445: N43 G1 Y10.00 F6000  
Send:17:41:07.449: @updatePrinterState  
Send:17:41:09.482: @moveRel Y-10.00  
Send:17:41:09.482: N46 G1 Y0.00 F6000  
Send:17:41:09.486: @updatePrinterState   

Even though it states that it is increasing and decreasing by 10 it only decreases by 10.

I have updated the firmware to Marlin. I tested switching X and Y inputs and believe the breakdown occurs at the Y input signal.

attached is a picture of the mother board.

picture of mother board

I am unsure of how to best fix this?

2 Answers2

2

The answer might just be replace the mother board.

If I understood everything correctly there are 5 things to check to break down the problem:

  • the motor,
  • the cable,
  • the stepper connection,
  • the software input, and
  • the firmware.

Using Repetier I disproved that the software was broken. By switching the X stepper and Y stepper cables, the motor and connection cable were proven to work. By flashing new firmware it was shown that it was without question that the firmware was the issue.

The backup extractor (E1) is not operational on this board. So it is either the stepper of the mother board.

0scar
  • 37,446
  • 12
  • 68
  • 156
0

The question body has changed to rule out broken endstops. As a generic answer for steppers only going into a single direction, if an axis of a 3D printer only moves in one direction it usually implies that the end stop of that axis is triggered. If triggered, the firmware doesn’t allow the stepper to move to the direction of the end stop.

Check the end stop lever and cables. Optionally connect a USB cable and send the G-code M119 over a terminal.

If the endstops are functioning correctly (reporting “open” or “triggered” corresponding to the state of the endstop), a Google search on the World Wide Web shows that people that had these exact problems had issues with the controller board, replacing the board helped their issue. If this is a recent purchase it is advised to contact the seller for support rather than fiddling with the board or the firmware.

In case the board has a spare unused stepper driver (not very unlikely if you have this controller board), the firmware could be altered to use the spare for Y movement. E.g. E1 could be used for Y.

0scar
  • 37,446
  • 12
  • 68
  • 156