this post was submitted on 16 Jul 2023
6 points (100.0% liked)

3DPrinting

15282 readers
121 users here now

3DPrinting is a place where makers of all skill levels and walks of life can learn about and discuss 3D printing and development of 3D printed parts and devices.

The r/functionalprint community is now located at: [email protected] or [email protected]

There are CAD communities available at: [email protected] or [email protected]

Rules

If you need an easy way to host pictures, https://catbox.moe may be an option. Be ethical about what you post and donate if you are able or use this a lot. It is just an individual hosting content, not a company. The image embedding syntax for Lemmy is ![](URL)

Moderation policy: Light, mostly invisible

founded 1 year ago
MODERATORS
 

Do you guys know a stepper motor that is compatible with Neptune 3 pro ?

Mine looks like it’s locked, it makes a short click but doesn’t move.

I try to open it but don’t find anything wrong.

So two questions, what motor can I buy to replace it ?

And there is a way to fix this motor ? Like, rewind it will make it works again ?

Thank you guys

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago (1 children)

Ye I couldn't find any datasheet of that one. Maybe e-mail them and ask?

Well, I'd say any Nema17 bipolar (4 wires) 25 mm in length (similar current) and probably 1.8°/step or 200 steps/revolution (like most of them) should work. If you get wrong resolution (steps/revolution) your extruder will move wrong distance (like double), but you can change that in FW. And you should fine tune Vref (small screw on your stepper driver or in FW) to find sweet spot between heating and torque

[–] [email protected] 2 points 1 year ago

You can do some math to identify resolution. Check your FW, quick search got me:

* Default Axis Steps Per Unit (linear=steps/mm, rotational=steps/°)
 * Override with M92
 *                                      X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]]
 */
#if NEPTUNE_3_PRO
  #define DEFAULT_AXIS_STEPS_PER_UNIT   {80.00, 80.00, 400.00, 380.00}
#elif NEPTUNE_3_PLUS
  #define DEFAULT_AXIS_STEPS_PER_UNIT   {80.00, 80.00, 400.00, 390.00}
#elif NEPTUNE_3_MAX
  #define DEFAULT_AXIS_STEPS_PER_UNIT   {80.20, 80.20, 400.00, 390.00}
#endif

I guess its 380 steps/mm, but I should go deeper in that and do some math (gear teeth numbers, grub screw diameter) to confirm what resolution is original. Shouldnt be hard if you get all information needed, but still easier to ask them what stepper is that. Since its kinda standard 200 steps/rev would be my bet