One and Two are a given, I will start with task 3
Task 3: Blink Program:
/*
Created 1 June 2005
By David Cuartielles http://arduino.cc/en/Tutorial/Blink based on an orginal by H. Barragan for the Wiring i/o board */
int ledPin = 13; // LED connected to digital pin 13
// The setup() method runs once, when the sketch starts
void setup() {
// initialize the digital pin as an output:
pinMode(ledPin, OUTPUT);
}
// the loop() method runs over and over again,
// as long as the Arduino has power
void loop()
{
digitalWrite(ledPin, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(ledPin, LOW); // set the LED off
delay(1000); // wait for a second
}
Task 4:
The Arduino Uno is based on the ATmega328 microprocessor:
ATmega328 Datasheet
Datasheet first page:
Chip Pinout:
Task 5:
Arduino forum:
http://arduino.cc/forum/
The idea of controlling 230v equipment using the arduino interests me.
Task 6:
Arduino Uno main parts:
Task 8
- The Arduino environment version 1.0.:
- The Processing environment.
- The Fritzing files.
- Link to Blogger.
- GNU gcc
- AVR Studio download. Latest version.
- PDF of ATMega 328
- PDF of specs of USB-to_serial chip.
- Good pic of our arduino clone
- The MindKits site.
- One cool video on Youtube.
Other interesting arduino videos:
Led jar:
http://www.youtube.com/watch?v=yR5qHcVtjCk
RGB Rope:
http://www.youtube.com/watch?v=PrBnERpcLjA
Ping pong ball table:
http://www.youtube.com/watch?v=MoUHPGW9Ms4








No comments:
Post a Comment