Loading...
  Show Posts
Pages: 1 2 [3] 4 5 ... 77
31  Using Arduino / Project Guidance / Re: Timing Accuracy on: April 03, 2013, 06:44:12 pm
After calibrating in software...  I've been able to get 1sec/10 days drift with Arduino Uno.  Assuming the temp is constant.
32  Using Arduino / Project Guidance / Re: Simulators for the Arduino on: March 29, 2013, 02:42:37 pm
Love your Simulator!  Looking forward to the new version!
33  Community / Bar Sport / Re: Trickle or disconnect charger for laptop? on: March 27, 2013, 07:02:34 pm
If you can find an old 50w PS and your laptop needs 65w it will do exactly what we want it to in Windows 7: Not charge.  When you go traveling just bring the 65w.  Simple!
34  Community / Bar Sport / Re: How microprocessors work on: March 19, 2013, 06:36:18 pm
Wow!  Flashback.
35  Community / Gigs and Collaborations / Re: Need Help writing GSM datalogging code - PAID on: March 19, 2013, 03:08:59 pm
Sounds like you don't need the SD card if you're going to send it every 1/2 hour?
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!
38  Using Arduino / Motors, Mechanics, and Power / Re: Steppers 28BYJ-48 for webcam pan-tilt on: March 17, 2013, 09:36:57 pm
RWiens, Just try it and enjoy!  Any suggestions for improvements? 

When I'm finished making improvements I'll make it into a real Library.
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?
40  Using Arduino / Project Guidance / Re: Video capture project - rotating camera using stepper motor on: March 14, 2013, 11:08:56 am
I have posted a schematic in another thread where you asked.  It's as simple as calling this function in my code.  All you have to do is calculate the speed in RPH using y and x.  Need help?

void degrpmslowCool(boolean bcw, long deg100, int rph100)
41  Using Arduino / Motors, Mechanics, and Power / Re: Steppers 28BYJ-48 for webcam pan-tilt on: March 14, 2013, 11:02:14 am
Check out the beginning of this post.  You can test my code with only 1 line or by uncommenting a few lines in my Setup()/Loop().
http://arduino.cc/forum/index.php/topic,89159.0

Here's the newest code:
https://gist.github.com/sbright33/4178431

Start with this in loop():
degrpmslowCool(1,180*100,1000);  //180 degrees at 10 rph speed

which calls:
void degrpmslowCool(boolean bcw, long deg100, int rph100)
42  Using Arduino / Motors, Mechanics, and Power / Re: New 28BYJ-48 library on: March 14, 2013, 10:08:30 am
For those of you asking for help check out the beginning of this post.

Here's a schematic for you Sharon.
http://arduino.cc/en/Reference/StepperUnipolarCircuit
43  Using Arduino / Project Guidance / Re: Measure the force of a hug...ASAP on: March 14, 2013, 09:22:06 am
I'm nearby if I can help.
44  Using Arduino / Motors, Mechanics, and Power / Re: 28BYJ-48 5-Volt Stepper on: March 13, 2013, 04:35:04 pm
Here is the newest version for 28BYJ-48.

https://gist.github.com/sbright33/4178431

12v is reliable, you just have to mind the heat.  This means you cannot run at full speed for 20 minutes.  You can go slow forever using the "cool" functions.  Or go full speed then stop to let it cool down.
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.
Pages: 1 2 [3] 4 5 ... 77