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 725 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
Parents
  • 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
Reply
  • 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
Children
No Data
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