Showing posts with label build. Show all posts
Showing posts with label build. Show all posts

Sunday, March 9, 2014

Arduino Project For Beginners


What is Arduino?
        Arduino is a programmable circuit board that is used in many electronics and DIY projects worldwide. The company that sells Arduino says this is what Arduino is: "An open-source electronics prototyping platform based on flexible easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments."

The Project
        This projects is sometimes called "blink." The object of the project is to make the built in LED of the Arduino to rapidly turn on and off. All you need for your project is your Arduino, a cord to connect the Arduino to the computer, and the Arduino software installed onto your PC.
Here Are the steps:
  1. Connect your Arduino to your computer and open the Arduino Software.
  2. Go to "Tools" and then "Serial Port." Select the port your Arduino is plugged into.
  3. Type this code into the Arduino Software.
void setup()
{
  pinMode(13, OUTPUT);
  
}

void loop ()
{
  digitalWrite(13, HIGH);
  delay(1000);
  digitalWrite(13, LOW);
  delay(1000);
  
}

   4.   Select "Save" and call the project "blink."
   5.   Select "Verify." If it comes up all clear, skip to step 6. If it does not work, check the code for any                  mistakes.
   6.   Once you get it verified, select "Upload." A light on the Arduino should start blinking every second.

What The Code Means
        The "void setup()" is telling the arduino that whatever is between the two curly brackets ( {} ), only   preform the task once. The "pinMode(13, OUTPUT);" tells the Arduino to give an electric signal to pin 13 on the Arduino board. Pin 13 is the pin on your Arduino with the built in LED. The "void loop ()" tells the Arduino to preform the task between the two curly brackets over and over again. The "digitalWrite(13, HIGH);" tells the Arduino to turn on pin 13. The "delay(1000);" tells The Arduino to wait for one second. The "digitalWrite(13, LOW);" tells the Arduino to turn off pin 13. Then the "delay(1000);" tells the Arduino to wait for another second.
             
        Have fun with this project!

        ~Alex

Monday, March 3, 2014

How To Make A Paper Helicopter

        Hey Guys!
        Today I made a really cool video about how to make a paper helicopter. The paper helicopters are really fun to build and play with. All you need to make one is 1 standard piece of copy paper, 1 paper clip, and scissors. Watch how to make it here:

        Make sure to subscribe to my youtube channel! All you have to do is click on the "My Youtube Channel" button on the top right corner of my blog. Then all you need to do is click the "subscribe" button. After that, if I make a new video, it will automatically be sent to your youtube homepage.

~Thanks For Watching~

Sunday, February 2, 2014

How to make a Table Top Football

Hey guys! To get in with the football spirit today, I made a video on how to make a table top football.
Tabletop football is a really fun game that I think you should try out.


Thanks for reading!

~Alex~

Friday, January 31, 2014

How To Make a Recycle Robot

Hey Guys!
I recently make a video on how to make a Recycle Bot. The first time I made one was at my school, it was for home E.C.class. My home E.C. teacher had a couple boxes of things that we could use to decorate our robots. In one of the boxes was a bunch of electric parts. Being the geeky kids that we are, my friend and I put TONS of electronics on our robots. Most of the other students just decorated their robots with felt and markers. I have a feeling that me and my friend's robots will stand out from the other robots when we display them at the school open house. :)
Here is the video:


Thanks for reading!

~Alex