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 Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • 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
Arduino
  • Products
  • More
Arduino
Documents Arduino Uno Rev 3 Pinout, ATMega168/328 Pin Mapping, Schematics, EAGLE Files, and More!
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Arduino requires membership for participation - click to join
Actions
  • Share
  • More
  • Cancel
Engagement
  • Author Author: tariq.ahmad
  • Date Created: 28 Jun 2017 9:31 PM Date Created
  • Last Updated Last Updated: 6 May 2019 5:01 PM
  • Views 19087 views
  • Likes 5 likes
  • Comments 1 comment
Related
Recommended

Arduino Uno Rev 3 Pinout, ATMega168/328 Pin Mapping, Schematics, EAGLE Files, and More!

image

Arduino Home

An Open-Source platform to create digital devices and interactive objects that sense and control physical devices.

Arduino Tutorials
Arduino Projects

 

Arduino Comparison Chart: Boards & Modules

 

Eagle Files

 

 

image

 

Download Schematics

 

The above schematic is provided to demonstrate what you would need to do to build your own board.  Coming up with the Arduino required taking an off the shelf microcontroller, using a lot of extra parts, and putting it together in a way that is simple to use.   The genius behind the Arduino is the hard work is done for you, and the microcontroller is designed to be easily programmable through the Arduino IDE.

 

image

To do anything useful with the Arduino you will need to know the various parts of the circuit board.

 

 

External Power Supply - allows the Arduino to run when its not connected plugged into a USB port for power.  It accepts between 7V- 12V of voltage.

 

USB Plug - This powers the Arduino without needing to use an external power supply and is what you use to upload sketches (program) to the microcontroller, and to communicate with your Arduino sketch (via Serial, println(), etc).

 

AtMega328 Microcontroller - The brains of the Arduino which you program through the USB plug.  It contains three types of memory.  It has 32KB of nonvolatile Flash memory. This is used to store applications and is stored on your board even after it is removed from it's power source. 2KB of volatile SRAM memory which is used to store variables used by applications while it's running. 1KB of EEPROM nonvolatile memory. This is used to store data that remains available even after the board is powered down and powered up again.

 

Pin Functions:

 

Power Pins (3.3 V, 5 V, GND) - Use these pins to connect to circuitry at 3.3 V, 5V, or GND.  Make sure that whatever you power doesn't draw more than a few miliamps.

 

Serial Out (TX) and Serial In (RX) - Pins (0-1) are RX and TX respectively and used for sending and receiving serial data.  This port can be used to send and receive data from a GPS module, bluetooth modules, WIFI modules, etc.

 

Digital I/O Pins (2-13) - Accept 0 to 5 V input or output.  Utilizing tristate logic Arduino makes it easy to change between inputs and outputs in software. You can use this pin as an output where it spits out 5V for a digital 1, or 0 V for a digital 0.  You can also configure it to expect a voltage on the pin and that voltage could be interpreted as a 1 or a 0. These pins are used with digitalRead(), digitalWrite (). analogWrite() works only on pins with PWM symbol.

 

External Interrupts - Pins 2 and 3 can be configured to trigger an interrupt on low value, a rising or falling edge, or a change in value.

 

PWM Pins - any pins with ~ in front of them can be used to generate pulse modulated square waves. Pins 3, 5, 6, 9, 10, and 11 provide 8-bit PWM output with the analogWrite() function.

 

Pin 13 - drives the built in LED, that is used by Arduino to receive power and useful for debugging.  When pin is HIGH value, the LED is on, when pin is LOW value, it's off.

 

Analog In Pins - Pins A0 through A5 provide 10 bits of resolution. Accepts 0 to 5 V inputs and is used to measure continuous voltages anywhere from 0 V to 5 V. It is possible to change the upper end of their range using the AREF pin and the analogReference() function.

 

Analog Reference Pin (AREF) - input pin used optionally if you want external voltage reference for ADC rather than internal Vref. You can configure using an internal register.

 

Reset Pin - bring this line low to reset the microcontroller.  Typically used to add a reset button to shields that block the one on the board.

 

 

ATMega168/328 Pin Mapping

image

 

image

  • arduino_techspecs
  • arduino_classic_techsheets
  • arduino pinout
  • Share
  • History
  • More
  • Cancel
  • Sign in to reply

Top Comments

  • balearicdynamics
    balearicdynamics over 7 years ago +1
    Efficient, short and complete Enrico
Parents
  • balearicdynamics
    balearicdynamics over 7 years ago

    Efficient, short and complete image

     

    Enrico

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
Comment
  • balearicdynamics
    balearicdynamics over 7 years ago

    Efficient, short and complete image

     

    Enrico

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • 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