It turns out the the arduino only puts out 3.3v DC [smiley=lolk.gif]
I thought that the arduino would at least put out 5 v DC. :o
I have a Motor that is rated at 5vis there a way to get 5 volts out of the arduino without an additional supply?
I do have 12v wall warts but don't want to fry the motor?, I was even thinking about stripping the end of a USB Lead ad plugging it into the IO shield!
any suggestions?
this is the code in using:
/*
* A simple PWM example
*/
int pin = 6; // LED connected to PWM pin 11
int pulsewidth = 255; // Any value between 0 and 255
void setup() {
// None required for analogWrite!
}
void loop() {
analogWrite(pin, pulsewidth);
}
I have been testing it with a 3.3v motor and a Torch LED to look at the voltage output
Some Arduinos are 5V. Others, like the nano, are 3.3V.
A regulator, a couple of capacitors, and a diode can be had for under $1. Build a regulated power supply to take the 12V wall wart power down to 5V in under 10 minutes.
What IO shield do you have. I didn't think there were shields for the nano?