Show Posts
|
|
Pages: 1 2 [3] 4 5 ... 77
|
|
36
|
Using Arduino / Motors, Mechanics, and Power / Re: 28BYJ-48 5-Volt Stepper
|
on: March 19, 2013, 10:20:31 am
|
|
That makes sense to me. You can only go 7RPM when you change directions without a delay. You can go 14RPM in one direction. The solution is simple. Go 14RPM, then stop for a short delay before changing directions. It's easy to calculate the delay using 7RPM. It's just twice the delay between steps at 14RPM.
Why not use 12V as in my code? You can change the duty cycle while moving so it never gets warm. Increase it back to 100% for 1 step before and after you change directions. This will give you 30RPM without any delay, even when changing directions. That's 4x faster.
|
|
|
|
|
37
|
Using Arduino / Project Guidance / Re: Detect approaching car/detect distance from home
|
on: March 18, 2013, 11:18:11 am
|
|
You can use a transmitter and cheap receiver. If it receives turn it off. If not on. It will be on more often when it is further away. It will not be a circle and it will go on and off even in the same spot. You will need to experiment. The good news is that you can experiment while you are holding the unit. By adjusting the power or transmit antenna you may find you get decent results. Give it a shot!
|
|
|
|
|
39
|
Using Arduino / Motors, Mechanics, and Power / Re: Geared Stepper Motor
|
on: March 14, 2013, 12:52:30 pm
|
|
I can fix my code to work with 4075+. All I'd need is a motor to test it. Already the code is able to rotate by 0.36 x 1000 to make a full revolution. Notice the step size is not even close to a multiple of 0.36 degrees. The only disadvantage is the need for floats the way it is written. Who wants it?
|
|
|
|
|
45
|
Using Arduino / Motors, Mechanics, and Power / Re: 28BYJ-48 5-Volt Stepper
|
on: March 13, 2013, 10:39:44 am
|
|
What he said. Seriously. My code does support acceleration in many of the functions so you can achieve the results in AccelStepper library without any effort. Even using 5v. 12v is capable of going much faster with the only difficulty that celem mentioned.
|
|
|
|
|