|
526
|
Using Arduino / Motors, Mechanics, and Power / Re: stepper motor feedback
|
on: February 10, 2011, 09:48:58 am
|
|
What about a servo. (continuous rotation) It probably can't tell me if it's quit rotating, either. I'm thinking of going the servo route. If I give the command for my servo to make 2 revolutions and then detach the servo after a delay, and it only goes 1 1/2 revolutions, will this be a problem? ...I mean, it won't hurt the servo
|
|
|
|
|
527
|
Using Arduino / Displays / Re: does shiftreglcd work with a backlit lcd
|
on: February 09, 2011, 11:48:23 pm
|
The LCD displays using the original Hitachi HD44780 controller and all of its derivatives use the same 14-pin interface. I can't think of any reason why this, or any other hardware/software combination written for this Hitachi interface will not work with your display. You will have to deal with the backlight separately, and it may require more wires, but unless you want it to be under software control you won't need to use any additional Arduino pins.
Don
Thanks!
|
|
|
|
|
535
|
Using Arduino / General Electronics / Re: Tapping power off the DC jack of Uno
|
on: February 08, 2011, 10:51:25 pm
|
...Ok, I reread - you want the connectors to be accessible so you plug in direcytly. I would go with soldering to the bottom of the board at the jack itself then, the metal the jack pin will keep all that current from having to go thru the board traces as well.
Good idea, I think I'll do the careful soldering. ...about the anodized aluminum box-enclosure- it doesn't matter that it will touch the USB casing. ...and the DC jack is plastic, so it won't be touching...
|
|
|
|
|
536
|
Using Arduino / General Electronics / Re: Tapping power off the DC jack of Uno
|
on: February 08, 2011, 12:49:02 pm
|
Sure enough, here it is: VIN. The input voltage to the Arduino board when it's using an external power source (as opposed to 5 volts from the USB connection or other regulated power source). You can supply voltage through this pin, or, if supplying voltage via the power jack, access it through this pin.
|
|
|
|
|
537
|
Using Arduino / General Electronics / Re: Tapping power off the DC jack of Uno
|
on: February 08, 2011, 12:46:33 pm
|
I want to mount my Uno in a nice Aluminum enclosure, with the DC jack and USB port sticking through the rear panel. I will power it with a 12VDC wall wart. My question is, I'm needing 12VDC on some other circuitry inside my enclosure (to run a sollenoid), so is there any reason why I can't carefully solder a wire to to back of the DC Jack on the Uno, to tap off the 12V coming in? (There's no real place on the board to get this power, is there?)thanks
Yes there is a place. When the board is being powered by the external power connector, that voltage is then available on the Vin pin of the arduino power shield connector to be used for external components rated to use that voltage, +12vdc in your case. However the first thing you have to determine is what the current demand for your solenoid is? There is a series polarity protection diode between the external power connectors positive terminal and the Vin pin and it probably has a 1 amp maximum current rating. Your external power module also has to have a maximum current rating sufficient to power the arduino board and all other external components being powered. Lefty GREAT! I was wondering about that Vin Pin... My solenoid is 575 mA. So I'll be fine up to 1 AMP, then... I want to see if I can find something on this Vin Pin in the datasheet.
|
|
|
|
|
538
|
Using Arduino / General Electronics / Tapping power off the DC jack of Uno
|
on: February 08, 2011, 11:06:05 am
|
|
I want to mount my Uno in a nice Aluminum enclosure, with the DC jack and USB port sticking through the rear panel. I will power it with a 12VDC wall wart. My question is, I'm needing 12VDC on some other circuitry inside my enclosure (to run a sollenoid), so is there any reason why I can't carefully solder a wire to to back of the DC Jack on the Uno, to tap off the 12V coming in? (There's no real place on the board to get this power, is there?) thanks
|
|
|
|
|
540
|
Using Arduino / Programming Questions / Please explain this code: *((char*)
|
on: February 07, 2011, 07:03:39 pm
|
Trying to understand how to store 5 long numbers in the EEPROM, I'm looking at this page: http://arduino.cc/playground/Code/EEPROMLoadAndSaveSettings I think I follow it all until I get to this line in Void LoadConfig() *((char*)&storage + t) = EEPROM.read(CONFIG_START + t); Is storage an array? What's with the beginning * --can't find anything on it in the code reference.
|
|
|
|
|