AI agents & screen readers: for a machine-readable, text-only catalogue, start at /llms.txt. Products are available as Markdown (/products.md, /products/{handle}.md) and JSON (/products.json, /products/{handle}.json).
Store

Adafruit

$20.85 $54.87 Save 62% |
Out of stock
No reviews yet

This budget pack is an optimized collection of parts and pieces to experiment with Adafruit Metro 328 and the Arduino IDE at home, school or wo...

Get notified when back in stock

Qty
Estimated Delivery
Arrives
Disclaimer
View Markdown
Secure checkout

This budget pack is an optimized collection of parts and pieces to experiment with Adafruit Metro 328 and the Arduino IDE at home, school or work. Great for students and those that want to get their feet wet, no soldering required!

Includes the Adafruit Metro 328 with thru-hole headers.  The Metro is our take on the most maker-friendly Arduino-compatible board. It is the culmination of years of playing with electronics: we wanted to make a development board that is easy to use and is hacker friendly. At the heart is an ATmega328P, with 32KB of flash and 2KB of RAM, running at 16 MHz, the same chip used in the Arduino UNO

  • Power with 7-12V polarity protected DC or the micro USB connector to any 5V USB source. The 2.1mm DC jack has an on/off switch next to it so you can turn off your setup easily. The METRO will automagically switch between USB and DC.
  • 19 GPIO pins, 6 of which are Analog in as well, and 2 of which are reserved for the USB-serial converter. There's also 6 PWMs available on 3 timers (1 x 16-bit, 2 x 8-bit). There's a hardware SPI port, hardware I2C port and hardware UART to USB. Logic level is 5V but by cutting and soldering closed a jumper, you can easily convert it to 3.3V logic
  • USB to Serial converter, there's a hardware USB to Serial converter that can be used by any computer to listen/send data to the Metro, and can also be used to launch and update code via the bootloader
  • Four indicator LEDs, on the front edge of the PCB, for easy debugging. One green power LED, two RX/TX LEDs for the UART, and a red LED connected to pin 13
  • Easy reprogramming, comes pre-loaded with the Optiboot bootloader, so you can get started immediately.
  • Works with all Adafruit shields!

This pack has only the basics to get you started. That allows us to keep the price low while giving you the choice of what shields, sensors and accessories to add in.
Once you have the pack, check out our free online Arduino IDE tutorials...they're designed for everyone, even non-programmers!

Includes:

  • Adafruit Metro w/Atmega328 - The latest and greatest, assembled and ready to go, including 4 rubber feet to protect the board from the worktable
  • 3' USB cable - Perfect for connecting your Arduino to a computer
  • Half-sized Breadboard - 400 connection points, plenty of room for beginner projects, with 2 power rails on the side. Can be rubber-banded to an Arduino to make a 1-penny devboard
  • 65 flexible breadboard wires in 8 colors, perfect for use with the solderless breadboard.
  • 1K & 10K potentiometer - these pots have 0.1" spacing and fit very nicely into a breadboard without modification
  • 2 small pushbuttons - Snap into the breadboard for button inputs
  • 5 bright red diffused LEDs (250mcd) - indicators, blinkies, bright enough to see in the day, but diffused so that they are visible from all angles.
  • Red, green and blue ultra-bright LED - Can be used on their own, or color-mixed to make nearly any color in the rainbow!
  • 5 100 ohm resistors - They can be used to protect pin outputs when starting out
  • 5 1K resistors - Good for use as LED limiting resistors
  • 5 10K resistors - Great for pullups & pulldowns
  • CdS photocell - A light sensor!

https://www.youtube.com/embed/6SAZ_8xiSPo?start=465

Jargon buster

Plain-language definitions for the technical terms used above.

ATmega328P
An 8-bit microcontroller chip used on many Arduino Uno-compatible boards. Knowing the controller uses an ATmega328P helps you understand its memory, speed, pin compatibility, and the Arduino sketches it can run.
Bootloader
Small starter software on a microcontroller that lets new code be uploaded before the main program runs. Knowing how to enter bootloader mode matters when you need to program the board or recover it after a faulty sketch.
DC
DC means direct current, where electricity flows in one constant direction, as supplied by batteries, USB ports and many plug-pack power supplies. When a product specifies DC, it runs from a DC supply rather than mains AC, so you need to provide the correct voltage and polarity.
GPIO
General-purpose input/output pins are microcontroller pins you can set in software to read signals, switch devices on and off, or connect to peripherals. The number of GPIO pins matters because it limits how many buttons, LEDs, sensors, and other parts you can wire directly to the board.
Headers
Rows of connector contacts on a fixed pitch (commonly 2.54 mm) used to link a board to a breadboard, jumper wires, or another board. They come as male pin headers and female socket headers; when a module ships with pre-soldered headers it can be used straight away, whereas bare pads require soldering the pins yourself.
I2C
I2C is a two-wire communication bus used by many sensors and small modules. It matters because several I2C devices can share the same two wires, but each device needs a compatible address and your controller must support I2C.
IDE
Short for Integrated Development Environment, a program used to write, run and manage code. It matters because some learners prefer a traditional coding workspace instead of a guided notebook-style lesson.
LED
A light-emitting diode (LED) is a small electronic component that emits light when current flows through it in the correct direction. Because it only conducts one way, its polarity matters, and a through-hole LED must be soldered the correct way around to light up.
PCB
A printed circuit board (PCB) is a board, usually rigid, with etched copper tracks that connect electronic components together without loose wiring. Components are mounted on the board and signals route between them through the copper layout.
potentiometer
A variable resistor usually turned with a knob or shaft to create an adjustable electrical signal. It is often used for inputs such as volume, brightness or position, so it helps beginners learn how a microcontroller reads changing values.
RAM
RAM (random-access memory) is fast, temporary memory a device uses for working data while it is running; in its common volatile form, its contents are lost when power is removed. Some devices offer a mode that applies settings to RAM only, which is handy for testing changes temporarily because they are not stored permanently and disappear at power-off.
RX
RX means receive, usually showing data being received by the board. An RX indicator LED can help with troubleshooting USB or serial communication.
solderless breadboard
A reusable board with rows of internally connected holes for building circuits by pushing in components and jumper wires, with no soldering required. It lets you prototype and rewire a circuit quickly and reversibly before committing to a permanent, soldered build.
SPI
A fast serial communication bus often used for displays, memory cards, and sensors. It matters because SPI devices need specific pins for clock and data, plus a separate chip-select line for each device.
TX
TX means transmit, usually showing data being sent from the board. A TX indicator LED can help you see when the board is communicating or uploading code.
UART
UART is a simple asynchronous serial interface that sends data over separate transmit and receive wires, usually labelled TX and RX, with both ends set to the same baud rate. It is a common way for microcontrollers and other serial devices to exchange data.
USB to serial converter
A chip that converts a USB connection into the serial (UART) signals a microcontroller understands. A board that includes one usually appears to a computer as a serial port for programming and debugging, rather than as a native USB device such as a keyboard or mass-storage drive.
Stella
Stella Expert

Ask me anything about this product

Maddy, co-founder of Little Bird

Need help? We're here for you!

Hi, I'm Maddy. My team and I are ready to help with your order or any questions.