Results 1 to 9 of 9

Thread: Arduino Cheet Sheet

  1. #1
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Arduino Cheet Sheet

    Source


    Click Image for super size.
    Click Image for super size.
    Last edited by Oneslowz28; 06-20-2010 at 06:51 PM.

  2. #2
    Custom Title Honors BuzzKillington's Avatar
    Join Date
    Dec 2008
    Posts
    2,492

    Default Re: Arduino Cheet Sheet

    I have no idea what I'm looking at. I apparently have a long ways to go before playing with these things. lol
    PS3: CaptBuzzCooler

  3. #3
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: Arduino Cheet Sheet

    Do you have an arduino? The easiest way to learn is to buy one and start with some LED effects. Then Pick up a cheap 16x2 Parallel LCD from ebay and teach yourself to make it display custom messages.

    We are here to help you with any problems or questions you may have.

  4. #4
    Case Wizard blaze15301's Avatar
    Join Date
    May 2010
    Location
    usa
    Posts
    905

    Default Re: Arduino Cheet Sheet

    hmm what kind of code does the ardrino use? is it c, or just anything.
    Quote Originally Posted by AmEv View Post
    Or are you talking about vending machine choice C-4?

    mmmmm... skittles....
    bench mark software.

    video bios flashing guide

  5. #5
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: Arduino Cheet Sheet

    Its a derivative of C##. Head over to http://arduino.cc and download the Arduino 18 IDE, and take a look at some of the example sketches to see how things work.

    To make a LED blink the code would look something like this:

    Code:
    /*
      Blink
     
     Turns on an LED on for one second, then off for one second, repeatedly.
     
     The circuit:
     * LED connected from digital pin 13 to ground.
     
     * Note: On most Arduino boards, there is already an LED on the board
     connected to pin 13, so you don't need any extra components for this example.
     
     
     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
    }

  6. #6
    Resident 100HP water-cannon operator SXRguyinMA's Avatar
    Join Date
    Jun 2008
    Location
    MA
    Posts
    5,865

    Default Re: Arduino Cheet Sheet

    +rep thanks!!

  7. #7
    Fox Furry crenn's Avatar
    Join Date
    Apr 2005
    Location
    In the shadows behind you
    Posts
    4,067

    Default Re: Arduino Cheet Sheet

    It's not a derivative of C#, it's C/C++.
    Antec Sonata II | Pioneer DVR-212
    Good news! You can follow my website or follow me on twitter!

  8. #8
    If you can't hack it, you don't own it! Oneslowz28's Avatar
    Join Date
    Mar 2007
    Location
    Aiken, Sc
    Posts
    5,084

    Default Re: Arduino Cheet Sheet

    Wiki says c##

  9. #9
    Fox Furry crenn's Avatar
    Join Date
    Apr 2005
    Location
    In the shadows behind you
    Posts
    4,067

    Default Re: Arduino Cheet Sheet

    Quote Originally Posted by Oneslowz28 View Post
    Wiki says c##
    http://arduino.cc/en/Main/FAQ
    Quote Originally Posted by Arduino Site FAQ
    Can I program the Arduino board in C?
    In fact, you already are; the Arduino language is merely a set of C/C++ functions that can be called from your code. Your sketch undergoes minor changes (e.g. automatic generation of function prototypes) and then is passed directly to a C/C++ compiler (avr-g++). All standard C and C++ constructs supported by avr-g++ should work in Arduino. For more details, see the page on the Arduino build process.
    Antec Sonata II | Pioneer DVR-212
    Good news! You can follow my website or follow me on twitter!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •