element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Open Source Hardware
  • Technologies
  • More
Open Source Hardware
Forum What does it take to begin using the Arduino?
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Open Source Hardware to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 5 replies
  • Answers 2 answers
  • Subscribers 317 subscribers
  • Views 724 views
  • Users 0 members are here
  • hackerspace
  • tinkering
  • osh
  • makerfaire
  • hardware
  • pumpingstationone
  • oshw
  • make
  • diy
  • tinker
  • open
  • hobbyist
  • hacker
  • Technology
  • arduino
  • opensource
Related

What does it take to begin using the Arduino?

DAB
DAB over 14 years ago

Hi all,

 

I have become interested in using the Arduino, but I have not been able to estimate the level of investment, mostly time, in getting started.  If some of you could give me an idea of the tools you use, software, languages, best tutorials, hardware, etc, that you have found useful, I think a lot of people could use that information before deciding if they want to begin using the family of devices.

 

Thanks,

DAB

  • Sign in to reply
  • Cancel
  • Former Member
    0 Former Member over 14 years ago

    Hi DAB,

     

    The answer depends on how much programming experience you have. If have have at least a decent grasp of C/C++/Java or something along those lines, you won't need much time at all to learn how the Arduino platform works, at least at a high level. One of the great things that makes it really easy to get going is that the Arduino IDE has a bunch of libraries which deal with a lot of the detial for you, like PWM, serial communication, USB protocol, etc.

     

    Really all you need to get started is (the quickest way):

         Arudino board (Uno, Mini, Mega, Pro, whatever version of the board fits your needs)

         USB cable

         Computer

         Arudino IDE/Development environment

     

    With the Arduino IDE come a variety of sample programs, which show you the various libraries that come standard such as making and LED blink and using a button. I would also suggest getting a kit that comes with some extra resistors, LEDs, potentiometers, light sensor, wires, etc. It is really a great platform for hobbiests because it it easy to get going quickly. The arduino website has a lot of great samples a tutorials on almost all libraries that come standard with the IDE. When using the arduino, I find myself going to the arduino playground and tutorial websites often (see below).

     

    Another great part about the Arduino is that there is a large amount of user generated code/libraries (when they work it's cool) and extra hardware. This extra hardware usually comes in the form of shields which enable the arduino to have and LCD screen, or turn a motor, to have access to the internet, or play MP3s of SD card, and on and on...

     

    Some issues I have with the platform is that some user-generated libraries are weak. They have bad documentation, don't always work and cause more problems than they are worth. I also, as a student, think that the IDE and the libraries make it too abstract. If you just use the provided functions, you have no idea about the consquences: timing, pin use, what other functions are being called, etc. But that might just be me.

     

    However, you don't have to use the Arduino Development Environment. You could use something like AVR Studio, but that would take quite a bit more time to set up, understand and get going, but it is possible. I haven't done it, so I cannot say much else.

     

    Basic Tutorials: http://arduino.cc/en/Tutorial/HomePage

    Tiwtter Library for Arduino: http://www.arduino.cc/playground/Code/TwitterLibrary

    Starter Kit: http://www.sparkfun.com/products/10174

    Some shields: http://www.sparkfun.com/search/results?term=Arduino+shield&what=products

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • cookieglitch
    0 cookieglitch over 14 years ago

    Starting to use the Arduino is fairly easy. Takes maybe 5 minutes to get the IDE setup and the drivers running (If you even need to install them). In terms of cost, it can be as cheap as $30-40 (Bad estimate completely ignoring the exchange rate, but its something!). In terms of time, not long. You can pick up the basics and an afternoon, or less if you have previous experience with programming. For tools, you really do not need much. Aside from the Arduino itself and a selection of components, all you really need is some wire cutters/strippers, maybe a screwdriver, a multimeter and of course your computer. A good working space can help, but I've been known to get away with sitting on the floor and working with it!

    The Arduino language itself is a subset of C. You can pick it up fairly quickly without much effort. The nature of the system means that you do not need to be concerned with the likes of pointers, references etc until much later.

     

    When it comes to learning about it, there are hundreds if not thousands of places to start. There is of course www.arduino.cc and the associated forum. Another good place to start is any one of the Arduino books, such as those from O'Reilly. There really are thousands of good sources for information and a variety of kits (Such as the one from Oomlout.co.uk) which come with their own tutorials. Last of all, there is of course E-14 and the Arduino group! Always a friendly place to get help.

     

    Good luck with getting started. Any questions, you know where to ask image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • WestfW
    0 WestfW over 14 years ago
    If some of you could give me an idea of the tools you use, software,  languages, best tutorials, hardware, etc, that you have found useful

    The normal "getting started" process is along the lines of:

    1. Buy the current "standard" Arduino board.  Arduino "Uno", at the moment.
    2. Download the current version of the Arduino IDE for your computer, and copy/install to the appropriate program directory.
    3. Install usb/serial drivers or driver info if necessary (on windows, currently.)
    4. (there might be additional requirements, like installing or upgrading Java, or finding an appropriate standard USB cable, if you have a particularly old or isolated computer.)
    5. Run the Arduino IDE, open the File/Examples/Basic/Blink example, select the appropriate board and serial port in the Tools menu, hit the "upload" button and see if your on-board LED starts blinking.

    That's about it.  It should take maybe 1/4 the time of the simplest manufacturer-provided development system to get going.

     

    The IDE install includes a pretty complete set of tools that  are invisible to the average arduino user, but quite comforting to more advanced users.  A full gcc toolset for AVR, plus cygwin/etc "development commands", for example.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
  • gbulmeruk
    0 gbulmeruk over 14 years ago in reply to WestfW

    To add a tiny bit to WestfW's complete, and thorough answer ...

     

    The Arduino UNO is available in the USA for $29.95 or less. Just google "Arduino UNO buy" and you'll find a bunch of suppliers.

    I feel I should add, that there are good clones of a previous generation Arduino, called Freeduino. I have a 'classroom set' of them, and they have never let me down. Some were designed by a person called WestfW. Freeduino are even less expensive than an Arduino.

     

    I run Arduino workshops using my Freeduinos and the Arduino IDE for people who have never done any electronics beyond 'battery and bulb' school science, and no programming. I've done this for people from 13 to over 80.

     

    Using the example programs included in the Arduino environment, and some handouts that I've created, we cover enough electronics and programming to make a very simple robot, like a photovore, plus a few fun side paths, like cheesy musical birthday cards, and maybe simulating the blinking lights at rail crossings. We do this in a single school day, 9am to 3pm, including a morning break, and lunch.

     

    Adults with a grasp of programming, usually also cover multiplexing LEDs, and maybe one more small project in a similar amount of time.

    We have had a group of teenagers get a line following robot working in even less time.

     

    HTH

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 14 years ago

    hi DAB

    i am just a beginer in this field... i had a codingphobia... untili used Arduino..in my summer internship i got Arduino( Actually Induino) and worked on it..

    for a beginer, Arduinoisbest.. its very much user friendly and the maximum commands are just from our simple english language..

     

    you can download the

    #  ArduinoIDE - programming Software.. its free open Source..

    the ide itself have a  reference manual...which covers all tha commands and syntax,of  how to use that...

     

    If you want to buy original Arduino Uno board..you have to spend around $30..

    otherwise you can buy a copy of that from others like simple labs at much cheaper rates..

    for more knowledge:

    refer www.Arduino.cc

    And www.planetarduino.com sites.. there are hundredsof tutorial of interfacing and using the IDE and board

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube