8000 Merge pull request #391 from arduino/karlsoderby/uno-smd-page · AdmiralPuni/arduino-docs-content@147fef4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 147fef4

Browse files
authored
Merge pull request arduino#391 from arduino/karlsoderby/uno-smd-page
Add uno R3 SMD docs
2 parents 100a2e7 + 72a31ef commit 147fef4

File tree

18 files changed

+702
-0
lines changed

18 files changed

+702
-0
lines changed
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
software:
2+
- arduino-ide
3+
- arduino-cli
4+
- web-editor
5+
hardware:
6+
boards: ~
7+
carriers: ~
8+
shields:
9+
- 4-relays-shield
10+
- motor-shield-rev3
Binary file not shown.
Loading
Binary file not shown.
Binary file not shown.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<EssentialsColumn title="First Steps">
2+
3+
<EssentialElement title="Quickstart Guide" type="getting-started" link="https://www.arduino.cc/en/Guide/ArduinoUno">
4+
All you need to know to get started with your new Arduino board.
5+
</EssentialElement>
6+
7+
</EssentialsColumn>
8+
9+
<EssentialsColumn title="Suggested Libraries">
10+
11+
<EssentialElement title="Wire" type="library" link="https://www.arduino.cc/en/reference/wire">
12+
This library allows you to communicate with I2C / TWI devices.
13+
</EssentialElement>
14+
15+
<EssentialElement title="SPI" type="library" link="https://www.arduino.cc/en/reference/SPI">
16+
The SPI library allows you to communicate with SPI devices, with the Arduino as the controller device.
17+
</EssentialElement>
18+
19+
<EssentialElement title="Servo" type="library" link="https://www.arduino.cc/reference/en/libraries/servo/">
20+
The Servo library allows an Arduino board to control RC (hobby) servo motors.
21+
</EssentialElement>
22+
23+
</EssentialsColumn>
24+
25+
<EssentialsColumn title="Arduino Basics">
26+
<EssentialElement title="Built-in Examples" type="tutorial" link="/built-in-examples/">
27+
Built-in Examples are sketches included in the Arduino IDE and demonstrate all basic Arduino commands.
28+
</EssentialElement>
29+
<EssentialElement title="Learn" type="resource" link="/learn/">
30+
Discover interesting articles, principles and techniques related to the Arduino ecosystem.
31+
</EssentialElement>
32+
<EssentialElement title="Language References" type="resource" link="https://www.arduino.cc/reference/en/">
33+
Arduino programming language can be divided in three main parts: functions, values (variables and constants), and structure.
34+
</EssentialElement>
35+
</EssentialsColumn>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<FeatureDescription>
2+
3+
Arduino UNO SMD is a microcontroller board based on the **ATmega328P**. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started.
4+
5+
The "SMD" stands for surface-mount device, and the microcontroller (ATmega328p) is soldered directly to the board.
6+
7+
</FeatureDescription>
8+
9+
<FeatureList>
10+
11+
<Feature title="ATmega328P" image="core">
12+
13+
The classic high-performance, low-power AVR® microcontroller.
14+
15+
<FeatureLink title="Datasheet" url="https://content.arduino.cc/assets/Atmel-7810-Automotive-Microcontrollers-ATmega328P_Datasheet.pdf" download blank/>
16+
17+
</Feature>
18+
19+
<Feature title="EEPROM" image="mcu">
20+
21+
The ATmega328P also features 1kb of EEPROM, a memory which is not erased when powered off.
22+
23+
</Feature>
24+
25+
<Feature title="Battery Connector" image="power">
26+
27+
The Arduino UNO features a barrel plug connector, that works great with a standard 9V battery.
28+
29+
</Feature>
30+
31+
</FeatureList>

content/hardware/02.hero/boards/uno-rev3-smd/image.svg

Lines changed: 561 additions & 0 deletions
Loading
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: UNO R3 SMD
3+
url_shop: https://store.arduino.cc/products/arduino-uno-rev3-smd
4+
url_guide: https://docs.arduino.cc/software/ide-v1/tutorials/getting-started/cores/arduino-avr
5+
core: arduino:avr
6+
certifications: [CE]
7+
---
8+
9+
The Arduino UNO is the best board to get started with electronics and coding. If this is your first experience tinkering with the platform, the UNO is the most robust board you can start playing with. The UNO is the most used and documented board of the whole Arduino family.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<EssentialsColumn title="Tutorials for Arduino UNO R3 SMD">
2+
<EssentialElement title="Analog Read Serial" type="tutorial" link="/built-in-examples/basics/AnalogReadSerial">
3+
Learn how to display analog values in the Serial monitor.
4+
</EssentialElement>
5+
6+
<EssentialElement title="Button" type="tutorial" link="/built-in-examples/digital/Button">
7+
How to control an LED with a button or switch.
8+
</EssentialElement>
9+
</EssentialsColumn>
10+
11+
<EssentialsColumn title="Arduino Basics">
12+
<EssentialElement title="Built-in Examples" type="tutorial" link="/built-in-examples/">
13+
Built-in Examples are sketches included in the Arduino IDE and demonstrate all basic Arduino commands.
14+
</EssentialElement>
15+
<EssentialElement title="Learn" type="resource" link="/learn">
16+
Discover interesting articles, principles and techniques related to the Arduino ecosystem.
17+
</EssentialElement>
18+
<EssentialElement title="Language References" type="resource" link="https://www.arduino.cc/reference/en/">
19+
Arduino programming language can be divided in three main parts: functions, values (variables and constants), and structure.
20+
</EssentialElement>
21+
</EssentialsColumn>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Here you will find the technical specifications for the Arduino UNO R3 SMD.
2+
3+
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Board:
2+
Name: Arduino UNO R3 SMD
3+
SKU: A000073
4+
Microcontroller: ATmega328P
5+
USB connector: USB-B
6+
Pins:
7+
Built-in LED Pin: 13
8+
Digital I/O Pins: 14
9+
Analog input pins: 6
10+
PWM pins: 6
11+
Communication:
12+
UART: Yes
13+
I2C: Yes
14+
SPI: Yes
15+
Power:
16+
I/O Voltage: 5V
17+
Input voltage (nominal): 7-12V
18+
DC Current per I/O Pin: 20 mA
19+
Power Supply Connector: Barrel Plug
20+
Clock speed:
21+
Main Processor: ATmega328P 16 MHz
22+
USB-Serial Processor: ATmega16U2 16 MHz
23+
Memory:
24+
ATmega328P: 2KB SRAM, 32KB FLASH, 1KB EEPROM
25+
Dimensions:
26+
Weight: 25 g
27+
Width: 53.4 mm
28+
Length: 68.6 mm
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../../built-in-examples/03.analog/AnalogInput
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../../built-in-examples/01.basics/AnalogReadSerial
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../../built-in-examples/01.basics/Blink
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../../built-in-examples/01.basics/DigitalReadSerial

0 commit comments

Comments
 (0)
0