Skip to content

Added ATmega328 to the chips #1539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/hacking/01.software/PortManipulation/content.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: "Arduino - PortManipulation"
source: "https://arduino.cc/en/Reference/PortManipulation"
description: Learn how to control pins on an Arduino through three different registers (DDR, PORT, PIN).
description: Learn how to control pins on an Arduino Uno R3 through three different registers (DDR, PORT, PIN).
---

## Port Registers

Port registers allow for lower-level and faster manipulation of the i/o pins of the microcontroller on an Arduino board. The chips used on the Arduino board (the ATmega8 and ATmega168) have three ports:
Port registers allow for lower-level and faster manipulation of the i/o pins of the microcontroller on an Arduino Uno R3 board(Or similar ). The chips used on the Arduino board (the ATmega8, ATmega168, and ATmega328) have three ports:

* B (digital pin 8 to 13)
* C (analog input pins)
Expand Down