Using the Arduino Pro Mini
- In order to use the Arduino Pro Mini you will first need to connect the FTDI Basic Breakout board so that you can connect the Arduino to your computer through a USB port. I physically soldered my FTDI board to the Arduino by cutting off the socket that came with it and soldering the remaining pins into the Arduino.
- Plug your Arduino into the computer using a USB TYPE A to USB MINI B cable. You may see windows installing drivers if you have not used this board before. You will also need to download the Arduino software from their website (www.arduino.cc).
- Run the software and choose the correct board type by going to Tools --> Board and select Arduino Nano w/ ATmega 328
- Now you can connect an LED between the ground (GND) and pin 13 on the board. Run this test program to make sure it works. The LED should flash on and off repeatedly. If that does not happen disconnect the Arduino from the computer immediately and examine your solder connections.
- Under the tools menu select the correct board (Arduino Duemilanovo w/ ATmega328).
// TEST PROGRAM:
int ledPin = 13; // LED connected to digital pin 13
void setup() {
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}
void loop() {
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
delay(1000); // waits for a second
}
http://salviusrobot.blogspot.com/2012/09/arduino-pro-328-mini-review.html.
You actually make it seem so easy with your presentation but
ReplyDeleteI find this matter to be really something that I think I would never understand.
It seems too complicated and very broad for me. I am looking forward for your next post, I will try to get the hang of it!
Also visit my website :: online bdsm
Thank you foг еvery other еxcellent poѕt.
ReplyDeleteWheгe else may juѕt аnуbodу get that kinԁ of іnfo in such a pеrfect way of ωгitіng?
I have a pгeѕentation subsequent week, and ӏ am on the seаrch for ѕuch infoгmatіon.
My website :: interpretation of dreams
Ηі іt's me, I am also visiting this web site regularly, this web site is genuinely fastidious and the viewers are truly sharing pleasant thoughts.
ReplyDeleteAlso visit my web blog ; buy google plus
Supеrb ωеbsite you hаve here but Ӏ was wondering if you κneω of any соmmunity fοrumѕ that
ReplyDeletecover the same tοpіcs talkeԁ аbout іn this
article? I'd really love to be a part of community where I can get opinions from other knowledgeable individuals that share the same interest. If you have any recommendations, please let me know. Kudos!
Have a look at my web site - word puzzles games
Ηi, just wаnted to tell you, I loved this blog poѕt.
ReplyDeleteIt was рractiсаl. Keep on posting!
My homepage ; tractor birthday party
This is unrelated, but here is a cool project:
ReplyDeletehttp://www.billporter.info/2010/08/18/ready-set-oscillate-the-fastest-way-to-change-arduino-pins/
It shows research testing the fastest way of changing pins on Arduino.