Getting Start with Arduino Duemilanove
|
1.Getting Start Arduino Duemilanove (Windows XP)
2.Check your USB Serial Port
3.Check & select your type of Board.
4.Upload yourfirst program.
Getting Start Arduino Duemilanove (Windows XP)
Before you start you need the FTDI Driver and you can download the latest version
at http://www.ftdichip.com/FTDrivers.htm
or donwload here
|
Devices Supported
|
version
|
| FT2232H, FT4232H, FT232R, FT245R, FT2232, FT232B, FT245B, FT8U232AM, FT8U245AM |
2.04.16 |
1. Connect USB cable into USB port on PCs
2. The pop-up screen look link this below, then you must select "Click No, not this time "

4. Select "Install from a list or specific location (Advanced)

5.Change the directory parth that you have the Driver FTDI Folder or File as below

6 Wait for windows XP do configuring....

7. Now you almost finish (Not yet finish now) ,Click "Finish" and Wait...your windows XP

8. Repeat Step 2 and use same procedure again until the popup windows popup and show
message look like this below...

At finally if this message popup show "your new hardware is installed and ready to use."
You are Ready!...
2.Check your USB Serial Port
.
After you finished install FTDI Driver, you may need check, Are computer connectd with Arduino board ?
checking your COM Port.
a.right click at My computer.
b.select Device manager.
c. select COM port & LPT...
2.1 Open Arduino Program
2.2 Select Menu -->Tools--->Serial Port--->COM8

3.Check & select your type of Board.
After you known the specific COM port. Now you need to select what kind of your Arduino Board.
If you use Arduino Duemilanove board than you must select match with ...
Note: Don't care some red error message now.
4. Upload your first program.
You may need install the Proagram Arduino version 0016 before from http://www.arduino.cc
and the version 0016 supported with Arduino Duemilanove with also CPU ATMEGA328.
other CPU please check at http://www.arduino.cc
This easy example program for checking your board can work.
2.1 Open programe Arduino
2.1 Type or key C code into your Arduino Editor same as the picture ' below

2.3 Press Ctrl+S on your keyboard for Save its. ....
2.4 Press Ctrl+R on your keyboard for compile program if no have error it should be display
"Done compliling..."
"Binary sketch size .... bytes (of a ..... byte maximum )"
2.5 Press Ctrl+U on your keyboard for Upload your machine code. if no have error it shold be display
" Done
uploading..."
"Binary sketch size .... bytes (of a ..... byte maximum )"
2.6 Note: Two LED (TX/RX) on board will blink and dark when successed.
/*
Program: test.pde
*/
int ledPin=13;
void setup() {
pinMode (ledPin,OUTPUT);
}
void loop()
{
digitalWrite(ledPin,HIGH);
delay(1000);
digitalWrite(ledPin,LOW);
delay(1000);
}
|
2.7 See your result and look at LED on pin 13 on Arduino board if you can see the LED blink that mean
you are done.
|