Anet A8 Stepper motor question
-
@wilriker Ah, OK. Mine are probably the old ones. I tried to use 500mA, ad the printer was not moving. So that means they must be 1,68A version. And they get to ~50°C with 23°C ambient temperature.
-
@obeliks It is quite easy to tell: the new ones are marked as
42SHDC3025-24B
on the back (probably easiest to spot on the extruder motor). The old one have either another or no model number on them. -
Yup. Exactly.
-
@wilriker Thanks for posting your config.g ! Made setting up my A8 a lot faster Just one question: how did you come up with the M569 C values?
I just tried to do some investigating in the trinamic driver docs, but without an electronics degree its quite cryptic to me
-
@mortn said in Anet A8 Stepper motor question:
@wilriker Thanks for posting your config.g ! Made setting up my A8 a lot faster Just one question: how did you come up with the M569 C values?
I just tried to do some investigating in the trinamic driver docs, but without an electronics degree its quite cryptic to me
It all came together here https://forum.duet3d.com/topic/5392/does-m906-set-rms-or-peak-current/19
Basically this is a bitmap of flags where the
TOFF
part has the highest influence on noise at standstill. At the end of the linked thread there is also a list of values for all 16TOFF
variants. Not sure if the link is also in that thread but I wrote a little tool to create these numbers:
https://github.com/wilriker/chopconf-generator (under releases are pre-compiled versions)In one of the next RRF versions @dc42 will implement a dedicated parameter to set
TOFF
without having to use these cryptic bitmap-integer in decimal notation (hex notation does no longer work).P.S.: the value for
TOFF
is motor specific - and note that I did not write model but motor, i.e. even if you have the same model your motor is different and may need differentTOFF
value to be most silent. So please test various values. -
@wilriker Cheers man. Like I told you I'm really beginer in this, I did not even created the files on the website you mentioned because I thought I just needed the config.g file, It's working now, I feel that I can make it work better because It doesn't look 100% good, but I will eventually get it to the point. Just another question by the way, Imagine that I want to now use the board in another printer I go to the website and just put the details of the printer, but I got a bit confused in the motors settings, how should I know what is the, max speed and the Steps per mm and every other information? in the data sheet of the motor? (if it has one how about if it doesn't?)
-
@black-canary said in Anet A8 Stepper motor question:
[...] how should I know what is the, max speed and the Steps per mm and every other information? in the data sheet of the motor? (if it has one how about if it doesn't?)
This is a tough one. If this is e.g. a totally new printer build from scratch you'd have to start at reasonable defaults and try from there.
Here is how I did it: before switching my A8 to Duet I was using Marlin on the stock board. So I looked at Marlin's values for these settings and just took them exactly over to the configurator for RRF. Except that I forgotM204 P400 T1000 ; Lower accelerations when printing though
which led to... say... a surprisingly rough first print. From there I adjusted the values partly by trial-and-error and partly by using the EMF calculator at https://reprapfirmware.org/. Take the value of "speed at which torque starts to drop (low slip angle)" as the new maximum speed.
-
@wilriker Thanks again, at this moment it's not to build one from scratch it's actually to upgrade one printer. So in this case this printer uses marlin, could I just literally drag and drop the config files? Or my only option is to copy the values to the https://configurator.reprapfirmware.org and then use those files? (Sorry if i'm bothering you but I really like 3D printing and my only regretting is knowing just a little)
-
@black-canary No worries, we all started some point in time. And this forum was also a great help to me in gaining knowledge (besides hours of videos at YouTube ).
You cannot use the files used with Marlin. RRF would not understand them. It is actually your second idea how it is done: get the values from the appropriate
Configuration.h
orConfiguration_adv.h
in Marlin and enter them in RRF Configurator. This will then create all the necessary files in the appropriate format.The biggest difference of RRF compared to Marlin is that you will (probably) never compile RRF yourself. Everything in RRF is configured via GCode - and it can be done at literally any point in time. So if e.g. you decide in the middle of a print that your acceleration is to high you can just reduce it live with the appropriate GCode command (btw. something I already did more than once).
-
Good man @wilriker, Thanks a lot!