Installing Arduino software:
- Download the software from Arduino website
- The file will be in zip format
- Copy the Arduino application to the application folder on your computer
Blinking a single LED:
- To set up the program for your board go to tools-board-Arduino Uno and then tools-serial port-USB
- Make sure you have completed you circuit (however, the positive wire should be put in Pin 13)
- line one under "initialize digital pin 13 as an output" is pinMode (13, Output)
- line under "the loop function runs over and over again forever
- void loop () {
- digitalWrite (13, HIGH) // turn the LED on (HIGH is the voltage level)
- delay (# of milliseconds) //wait for a second
- digitalWrite (13, LOW) //turn the LED off by making the voltage LOW
- delay (#of milliseconds) //wait for a second
** you can also get the copy of this code from the Arduino website
https://www.arduino.cc/en/tutorial/blink