From 3a1ddac8536958f2a61095738fef41261e26653a Mon Sep 17 00:00:00 2001 From: V205 Date: Mon, 27 Nov 2023 10:44:40 -0800 Subject: [PATCH] Added ATmega328 to the chips I added Atmega328 to the list. Perhaps this should be updated for Uno R4? Would be nice to reference the Arduino board as the Uno r3? --- content/hacking/01.software/PortManipulation/content.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/hacking/01.software/PortManipulation/content.md b/content/hacking/01.software/PortManipulation/content.md index c55b931ca9..d7578f3288 100644 --- a/content/hacking/01.software/PortManipulation/content.md +++ b/content/hacking/01.software/PortManipulation/content.md @@ -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)