Show Posts
|
|
Pages: 1 2 [3] 4 5 ... 118
|
|
31
|
General Category / General Discussion / Re: Arduino Outdoor Sensor system
|
on: May 15, 2013, 12:18:50 am
|
|
Hm... interesting question.
The ceiling test could give a "false indoors" if the robot went under a tree or something, and the light / dark test won't work since both indoors and outdoors can be light or dark from time to time.
Tricky AI problem this: we as humans "know" what it means to be indoors or out, but to define that (which is what you have to do before you can test for it) is amazingly tricky. One of those things that separate us from machines?
|
|
|
|
|
33
|
Using Arduino / Motors, Mechanics, and Power / Re: Bluebird BMS 630MG
|
on: May 14, 2013, 12:00:01 pm
|
|
HK's website calls that a "super strong" servo, so maybe it requires more current than your power source can supply?- especially since you say it works with a different servo.
(PS: the 9v is not a good idea, since that's a 4.8-6v servo.....)
|
|
|
|
|
38
|
Using Arduino / General Electronics / Re: PC fans switch
|
on: May 14, 2013, 08:16:13 am
|
|
Although my idea does use a micro: just not doing the fan speed thing which is getting a bit complex. A micro-less solution is even better of course, unless the micro is in play for some other part of the project and is "free" in that sense.
|
|
|
|
|
40
|
Using Arduino / General Electronics / Re: Calculating input voltage beforehand [Newbie question]
|
on: May 14, 2013, 05:19:08 am
|
|
I'm not 100% sure what you're getting at, but this might answer your question.
The Arduino does use two pins to read an input: there's a ground as well as the pin you're using. So if you had 3xAA cells giving out about 4.5v, and you poked the +ve with a wire from an Arduino pin, you would get no reading. But if you connected the Arduino ground to the -ve of the battery, then you would get a reading: a digital pin would read a high, and an analog would give you about 0.9 of the 1023 max reading, ie about 920.
|
|
|
|
|
41
|
Using Arduino / General Electronics / Re: PC fans switch
|
on: May 14, 2013, 02:28:45 am
|
Well that might be a bit of a complex solution sonnyyu, where the OP really just wants off and on. First you need to look for a temperature sensor: there are lots of threads about them, and have a look on Sparkfun or adafruit to see what they sell. Second you simply hook the motors up in parallel using an NPN transistor, something like this. (Assuming they all work at once... ) Then third, write a sketch to read the sensor and switch the fan on and off. You'd need to think of something to prevent it switching off and on too quickly if the temp is hovering near the threshold, some kind of "band" idea maybe. Maybe consider the fans working separately (sounds like you want them working together?) and have the second and third switch in at higher temps, ie if one or two fans is not controlling the temp adequately.
|
|
|
|
|
45
|
Using Arduino / Project Guidance / Re: Monitor Battery Level Using Arduino
|
on: May 13, 2013, 01:57:06 am
|
Presumably the purpose of the indication is to let you know when the robot's going to die? I Googled Li-Po discharge curves and from what I see, the voltage is fairly flat until it drops of a cliff, so looking at the voltage doesn't give a good indication of how long it's going to last. Other threads on this board have indicated that you really need to monitor the power usage which, when you incorporate time, tells you the energy used and that can be subtracted from the full-charge energy capacity. But I think that's probably a whole project on its own.... 
|
|
|
|
|