3

Where can I find a hardware manual (documentation or a book) for Arduino board?

As far as I know, all hardware details are dispersed (or scatter) in different tutorials.

Dave X
  • 2,350
  • 15
  • 29
Victor He
  • 133
  • 2
  • 6

2 Answers2

6

The Arduino Uno is little more than an ATmega328P microcontroller. In most cases you will be interested by the documentation of the microcontroller itself. Anyway, here are both:

Alberto (aka PighiXXX) has published nicer versions of the Arduino Uno pinout:

enter image description here

Dave X
  • 2,350
  • 15
  • 29
Edgar Bonet
  • 45,094
  • 4
  • 42
  • 81
3

For the hardware part, you can refer to the schematic. It shows all the components so you can find their datasheets for detailed study.

UNO schematic

But to me, if you're just using the board but not designing your own board or writing libraries for the board, I don't think this is necessary. Stick to application level or IO-level and only really dig into the hardware when you're blocked when doing things like using all timers, low-power mode, interrupt with Serial...

intelliarm
  • 81
  • 1
  • 5