# Adafruit Feather 328P

## Overview

![](https://cdn-learn.adafruit.com/assets/assets/000/050/499/medium800/arduino_compatibles_3458_kit_ORIG_2018_01.jpg?1516828112)

With this Feather we're getting a little nostalgic for the ATmega328P - the classic 'Arduino' chip - with this Adafruit Feather 328P running a 3.3V and 8 MHz. Feather is the new development board from Adafruit, and like it's namesake it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores.&nbsp;[We have other boards in the Feather family, check'em out here.](https://www.adafruit.com/feather)

![](https://cdn-learn.adafruit.com/assets/assets/000/050/500/medium800/arduino_compatibles_3458_side_01_ORIG_2018_01.jpg?1516828127)

At the Feather 328P's heart is at ATmega328P clocked at 8 MHz and at 3.3V logic, a chip setup we've had tons of experience with as [it's the same as the Pro Mini](https://www.adafruit.com/product/2377) and similar to the [Adafruit Metro 328](https://www.adafruit.com/product/2488). This chip has 32K of flash and 2K of RAM, and we paired it with a SiLabs CP2104 to give it USB-to-Serial program & debug capability built in. Works great when you want to keep your classic Arduino code compatibility, but [want to use one of our dozens of FeatherWings](https://www.adafruit.com/category/945)

![](https://cdn-learn.adafruit.com/assets/assets/000/050/501/medium800/arduino_compatibles_3458_iso_ORIG_2018_01.jpg?1516828136)

To make it easy to use for portable projects, we added a connector for any of our 3.7V Lithium polymer batteries and built in battery charging. You don't need a battery, it will run just fine straight from the micro USB connector. But, if you do have a battery, you can take it on the go, then plug in the USB to recharge. The Feather will automatically switch over to USB power when its available. We also tied the battery thru a divider to an analog pin, so you can measure and monitor the battery voltage to detect when you need a recharge.

Here's some handy specs!

- Measures 2.0" x 0.9" x 0.28" (51mm x 23mm x 8mm) without headers soldered in
- Light as a (large?) feather - 4.8 grams
- ATmega328p @ 8MHz with 3.3V logic/power
- 3.3V regulator with 500mA peak current output
- USB serial converter (CP2104) for USB bootloading and serial port debugging
- You also get tons of pins - 19 GPIO pins + 2 analog-in-only pins
- Hardware I2C, hardware SPI support. For UART devices, should use SoftwareSerial
- 6 x PWM pins
- 8 x analog inputs (two are shared with I2C)
- Built in 100mA lipoly charger with charging status indicator LED
- Pin #13 red LED for general purpose blinking
- Power/enable pin
- 4 mounting holes
- Reset button

The **Feather 328P** has some extra space left over, so we give you a tiny little prototyping area. If you just need to attach a button or sensor, you may be able to skip out on a breadboard and wire it directly on there.&nbsp;

![](https://cdn-learn.adafruit.com/assets/assets/000/050/502/medium800/arduino_compatibles_3458_quarter_ORIG_2018_01.jpg?1516828166)

Comes fully assembled and tested, with a USB bootloader that lets you quickly use it with the Arduino IDE. We also toss in some header so you can solder it in and plug into a solderless breadboard. **Lipoly battery and USB cable not included** (but we do have lots of options in the shop if you'd like!)

# Adafruit Feather 328P

## Pinouts

The Feather 328P is chock-full of microcontroller goodness. There's also a lot of pins and ports. We'll take you a tour of them now!

![](https://cdn-learn.adafruit.com/assets/assets/000/050/481/medium800/arduino_compatibles_pinouts.jpg?1516821545)

![](https://cdn-learn.adafruit.com/assets/assets/000/050/482/medium800/arduino_compatibles_bottom.jpg?1516821578)

![](https://cdn-learn.adafruit.com/assets/assets/000/110/540/medium800/arduino_compatibles_Adafruit_Feather_328P_Pinout.png?1649181191)

PDF of above pinout image available&nbsp;[here](https://github.com/adafruit/Adafruit-Feather-328P-PCB/blob/master/Adafruit%20Feather%20328P%20Pinout.pdf).

# Power Pins
![](https://cdn-learn.adafruit.com/assets/assets/000/050/483/medium800/arduino_compatibles_power.jpg?1516821660)

- **GND** - this is the common ground for all power and logic
- **BAT** - this is the positive voltage to/from the JST jack for the optional Lipoly battery
- **USB** - this is the positive voltage to/from the micro USB jack if connected
- **EN** - this is the 3.3V regulator's enable pin. It's pulled up, so connect to ground to disable the 3.3V regulator
- **3V** - this is the output from the 3.3V regulator, it can supply 500mA peak

# Logic pins
![](https://cdn-learn.adafruit.com/assets/assets/000/050/484/medium800/arduino_compatibles_datapins.jpg?1516822240)

This is the general purpose I/O pin set for the microcontroller. All logic is 3.3V

## Serial Pins

These pins are the only hardware Serial pins, you shouldn't connect to them unless you absolutely have to - they're shared with the onboard USB-Serial chip!

- **RX** / **#0** - GPIO #0, also receive (input) pin for **Serial**  **- Used for debug and bootloading, do not use these unless you're positive you mean to!**
- **TX** / **#1** - GPIO #1, also transmit (output) pin for **Serial - Used for debug and bootloading, do not use these unless you're positive you mean to!**  

## I2C Pins

- **SDA** /&nbsp; **A4** - Analog #4, also the I2C (Wire) data pin. There's no pull up on this pin by default so when using with I2C, you may need a 2.2K-10K pullup.
- **SCL** /&nbsp; **A5** - Analog #5, also the I2C (Wire) clock pin. There's no pull up on this pin by default so when using with I2C, you may need a 2.2K-10K pullup.

## SPI Pins

These are the hardware SPI pins, you can use them as everyday GPIO pins but recommend keeping them free as they are best used for hardware SPI connections for high speed. Also used to reprogram the chip with an AVR programmer if you need.

- **SCK** / **#13** - SPI Clock and GPIO #13, can do PWM output and is connected to the **red LED** next to the USB jack
- **MOSI** / **#11** - SPI Microcontroller Out Serial In and GPIO #11, can also do PWM output
- **MISO** / **#12** - SPI Microcontroller In Serial Out and GPIO #12

## General Purpose I/O Pins

- **#2** - GPIO #2, also Interrupt #0
- **#3** - GPIO #3, can also do PWM output and act as Interrupt #1
- **#4** - GPIO #4
- **#5** - GPIO #5, can also do PWM output
- **#6** - GPIO #6, can also do PWM output
- **#7** - GPIO #7
- **#9** - GPIO #9, can do PWM output
- **#10** - GPIO #10, can do PWM output

## Analog Inputs

- **A0 thru A3** - These are each analog input as well as digital I/O pins.
- **A6** - This is a special **analog input**  **only** pin! You cannot use it for digital in/out! This analog input is connected to a voltage divider for the lipoly battery so be aware that this pin naturally 'sits' at around 2VDC due to the resistor divider
- **A7** - This is a special **analog input**  **only** pin! You cannot use it for digital in/out!

# Other Pins!

- **RST** - this is the Reset pin, tie to ground to manually reset the AVR, as well as launch the bootloader manually
- **ARef** - the analog reference pin. Normally the reference voltage is the same as the chip logic voltage (3.3V) but if you need an alternative analog reference, connect it to this pin and select the external AREF in your firmware. Can't go higher than 3.3V!

# Adafruit Feather 328P

## Assembly

We ship Feathers fully tested but without headers attached - this gives you the most flexibility on choosing how to use and configure your Feather

# Header Options!

Before you go gung-ho on soldering, there's a few options to consider!

The first option is soldering in plain male headers, this lets you plug in the Feather into a solderless breadboard

![feather_3010-05.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/192/medium640/feather_3010-05.jpg?1454100293)

![feather_3010-01.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/201/medium640/feather_3010-01.jpg?1454100690)

Another option is to go with socket female headers. This won't let you plug the Feather into a breadboard but it will let you attach featherwings very easily

A few Feather boards require access to top-side components like buttons or connectors, making stacking impractical. Sometimes you can stack in the opposite order—FeatherWing underneath—or, if _both_ Feather and Wing require top-side access,&nbsp;place the boards side-by-side with a [FeatherWing Doubler](https://www.adafruit.com/product/2890) or [Tripler](https://www.adafruit.com/product/3417).

![feather_2886-01.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/195/medium640/feather_2886-01.jpg?1454100431)

![feather_2886-02.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/196/medium640/feather_2886-02.jpg?1454100477)

![adafruit_products_2890-02.jpg](https://cdn-learn.adafruit.com/assets/assets/000/117/300/medium640/adafruit_products_2890-02.jpg?1672855047)

We also&nbsp; have 'slim' versions of the female headers, that are a little shorter and give a more compact shape

![feather_2940-01.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/197/medium640/feather_2940-01.jpg?1454100533)

![feather_2940-04.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/198/medium640/feather_2940-04.jpg?1454100544)

Finally, there's the "Stacking Header" option. This one is sort of the best-of-both-worlds. You get the ability to plug into a solderless breadboard _and_ plug a featherwing on top. But its a little bulky

![feather_2830-01.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/199/medium640/feather_2830-01.jpg?1454100588)

![feather_2830-00.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/200/medium640/feather_2830-00.jpg?1454100660)

# Soldering in Plain Headers
## Prepare the header strip:

Cut the strip to length if necessary. It will be easier to solder if you insert it into a breadboard - **long pins down**

![feather_headers.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/183/medium640/feather_headers.jpg?1454099573)

## Add the breakout board:

Place the breakout board over the pins so that the short pins poke through the breakout pads

## And Solder!

Be sure to solder all pins for reliable electrical contact.  
  
_(For tips on soldering, be sure to check out our_ [_Guide to Excellent Soldering_](http://learn.adafruit.com/adafruit-guide-excellent-soldering)_)._

![feather_solder1.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/184/medium640/feather_solder1.jpg?1454099592)

![feather_solder2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/185/medium640/feather_solder2.jpg?1454099649)

![feather_solder3.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/186/medium640/feather_solder3.jpg?1454099655)

Solder the other strip as well.

![feather_solder4.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/187/medium640/feather_solder4.jpg?1454099662)

![feather_solder5.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/188/medium640/feather_solder5.jpg?1454099665)

![feather_solder6.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/189/medium640/feather_solder6.jpg?1454099667)

You're done! Check your solder joints visually and continue onto the next steps

![feather_done.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/190/medium640/feather_done.jpg?1454099807)

# Soldering on Female Header
## Tape In Place

For sockets you'll want to tape them in place so when you flip over the board they don't fall out

![feather_taped.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/203/medium640/feather_taped.jpg?1454101091)

## Flip & Tack Solder

After flipping over, solder one or two points on each strip, to 'tack' the header in place

![feather_tack1.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/204/medium640/feather_tack1.jpg?1454101126)

![feather_tack2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/205/medium640/feather_tack2.jpg?1454101143)

![feather_tack3.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/206/medium640/feather_tack3.jpg?1454101147)

## And Solder!

Be sure to solder all pins for reliable electrical contact.  
  
_(For tips on soldering, be sure to check out our_ [_Guide to Excellent Soldering_](http://learn.adafruit.com/adafruit-guide-excellent-soldering)_)._

![feather_soldre1.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/207/medium640/feather_soldre1.jpg?1454101162)

![feather_solder2.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/208/medium640/feather_solder2.jpg?1454101165)

![feather_solder3.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/209/medium640/feather_solder3.jpg?1454101168)

You're done! Check your solder joints visually and continue onto the next steps

![feather_soldered.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/210/medium640/feather_soldered.jpg?1454101174)

![feather_done.jpg](https://cdn-learn.adafruit.com/assets/assets/000/030/211/medium640/feather_done.jpg?1454101177)

# Adafruit Feather 328P

## Power Management

![](https://cdn-learn.adafruit.com/assets/assets/000/113/657/medium800/arduino_compatibles_3458_top_breadboard_demo_ORIG_2018_01.jpg?1658948389)

# Battery + USB Power

We wanted to make our Feather boards easy to power both when connected to a computer as well as via battery.

There's **two ways to power** a Feather:

1. You can connect with a USB cable (just plug into the jack) and the Feather will regulate the 5V USB down to 3.3V.
2. You can also connect a 4.2/3.7V Lithium Polymer (LiPo/LiPoly) or Lithium Ion (LiIon) battery to the JST jack. This will let the Feather run on a rechargeable battery.

**When the USB power is powered, it will automatically switch over to USB for power, as well as start charging the battery (if attached).** This happens 'hot-swap' style so you can always keep the LiPoly connected as a 'backup' power that will only get used when USB power is lost.

Danger: 

![](https://cdn-learn.adafruit.com/assets/assets/000/113/658/medium800/arduino_compatibles_batt.jpg?1658948400)

The above shows the Micro USB jack (left), LiPoly JST jack (top left), as well as the 3.3V regulator (to the right of the JST) and changeover diode + FET (just below the JST jack) and the LiPoly charging circuitry (below the regulator).

There's also a **CHG** LED next to the USB jack, which will light up while the battery is charging. This LED might also flicker if the battery is not connected, it's normal.

Info: 

# Power Supplies

You have a lot of power supply options here! We bring out the **BAT** pin, which is tied to the LiPoly JST connector, as well as **USB** which is the +5V from USB if connected. We also have the **3V** pin which has the output from the 3.3V regulator. We use a 500mA peak regulator. While you can get 500mA from it, you can't do it continuously from 5V as it will overheat the regulator.

It's fine for, say, powering an ESP8266 WiFi chip or XBee radio though, since the current draw is 'spiky' & sporadic.

![](https://cdn-learn.adafruit.com/assets/assets/000/113/661/medium800/arduino_compatibles_pinouts.jpg?1658948623)

# Measuring Battery

If you're running off of a battery, chances are you wanna know what the voltage is at! That way you can tell when the battery needs recharging. LiPoly batteries are 'maxed out' at 4.2V and stick around 3.7V for much of the battery life, then slowly sink down to 3.2V or so before the protection circuitry cuts it off. By measuring the voltage you can quickly tell when you're heading below 3.7V.

To make this easy we stuck a double-100K resistor divider on the&nbsp; **BAT** &nbsp;pin, and connected it to&nbsp; **A6**. You can read this pin's voltage, then double it, to get the battery voltage.

```cpp
#define VBATPIN A6
   
float measuredvbat = analogRead(VBATPIN);
measuredvbat *= 2;    // we divided by 2, so multiply back
measuredvbat *= 3.3;  // Multiply by 3.3V, our reference voltage
measuredvbat /= 1024; // convert to voltage
Serial.print("VBat: " ); Serial.println(measuredvbat);
```

This voltage will 'float' at 4.2V when no battery is plugged in, due to the lipoly charger output, so its not a good way to detect if a battery is plugged in or not (there is no simple way to detect if a battery is plugged in).

![](https://cdn-learn.adafruit.com/assets/assets/000/113/662/medium800/arduino_compatibles_batdiv.jpg?1658948677)

# ENable pin

If you'd like to turn off the 3.3V regulator, you can do that with the **EN** (able) pin. Simply tie this pin to **Ground** and it will disable the 3V regulator. The **BAT** and **USB** pins will still be powered.

![](https://cdn-learn.adafruit.com/assets/assets/000/113/664/medium800/arduino_compatibles_pinouts.jpg?1658948715)

# Alternative Power Options

The two primary ways for powering a feather are a 3.7/4.2V LiPo battery plugged into the JST port _or_ a USB power cable.

If you need other ways to power the Feather, here's what we recommend:

- For permanent installations, a [5V 1A USB wall adapter](https://www.adafruit.com/product/501) will let you plug in a USB cable for reliable power
- For mobile use, where you don't want a LiPoly, [use a USB battery pack!](https://www.adafruit.com/product/1959)
- If you have a higher voltage power supply, [use a 5V buck converter](https://www.adafruit.com/?q=5V%20buck) and wire it to a [USB cable's 5V and GND input](https://www.adafruit.com/product/3972)

Here's what you cannot do:

- **Do not use alkaline or NiMH batteries** and connect to the battery port - this will destroy the LiPoly charger
- **Do not use 7.4V RC batteries on the battery port** - this will destroy the board

The Feather _is not designed for external power supplies_ - this is a design decision to make the board compact and low cost. It is not recommended, but technically possible:

- **Connect an external 3.3V power supply to the 3V and GND pins.** Not recommended, this may cause unexpected behavior and the **EN** pin will no longer work. Also this doesn't provide power on **BAT** or **USB** and some Feathers/Wings use those pins for high current usages. You may end up damaging your Feather.
- **Connect an external 5V power supply to the USB and GND pins.** Not recommended, this may cause unexpected behavior when plugging in the USB port because you will be back-powering the USB port, which _could_ confuse or damage your computer.

# Adafruit Feather 328P

## Arduino IDE Setup

# Installing USB Serial Drivers

The USB plug is how you will need to program and debug your code. We use it to both power your project and also provide the USB serial interface. On the Feather 328P we use the SiLabs CP2104 chip, and you'll need to install drivers if you are using Mac or Windows. Linux comes with both drivers already.

**Windows users** can try plugging the board in, Windows update will probably install drivers for you. If the device is not recognized, simply download and install the Adafruit Windows Driver package below. When you run it, make sure to click that you want to install the **SiLabs CP210x** chip drivers too!

[Download Windows Drivers for all Adafruit Products](https://github.com/adafruit/Adafruit_Windows_Drivers/releases/latest/adafruit_drivers*.exe)
If you are running [**Mac OS X , please use the SiLabs drivers**](https://www.silabs.com/products/development-tools/software/usb-to-uart-bridge-vcp-drivers) here

Once drivers are installed and you've rebooted, you will have a Serial COM port.

- [How to find your COM Port on Windows](../../../../ladyadas-learn-arduino-lesson-number-0/install-software-windows#find-your-serial-com-port)
- [How to find your Serial device on Mac OS X](../../../../ladyadas-learn-arduino-lesson-number-0/install-software-mac-os-x#find-your-serial-port-device)
- [How to find your Serial device on Linux](../../../../ladyadas-learn-arduino-lesson-number-0/install-software-linux#verify-your-serial-port)

# Using the Arduino IDE

The Adafruit Feather 328P is an 'Arduino Compatible' - that means that when using the Arduino IDE or other Arduino-friendly development environments, you can simply treat the Feather like an `Arduino Pro Mini 3.3V, 8MHz` device.

There's _two_ ways you can get your Feather 328P going within Arduino IDE.

**The Easy way requires no extra steps** , and will work with any version of Arduino IDE - but the menu doesn't say Feather 328P and maybe you're picky and like the Menu to appear right

**The Advanced way requires more steps** , but the menu will say Feather 328P when you upload code

# The Easy Way

Lets start with the Easy Way.

If you have not yet installed Arduino IDE - [visit arduino.cc and&nbsp; **Download the Latest Version of the Desktop IDE**](https://www.arduino.cc/en/Main/Software)

Open up the Arduino IDE

![arduino_compatibles_idea.png](https://cdn-learn.adafruit.com/assets/assets/000/050/488/medium640/arduino_compatibles_idea.png?1516823433)

Open up **Examples -\> Basics -\> Blink**

![arduino_compatibles_blink.png](https://cdn-learn.adafruit.com/assets/assets/000/050/490/medium640/arduino_compatibles_blink.png?1516823611)

From the **Tools** menu, select **Tools -\> Boards -\> Arduino Pro or Pro Mini**

![arduino_compatibles_promini.png](https://cdn-learn.adafruit.com/assets/assets/000/050/491/medium640/arduino_compatibles_promini.png?1516823687)

From the **Tools** menu, select **Tools -\> Processor -\> ATmega328P (3.3V, 8MHz)**

![arduino_compatibles_3v.png](https://cdn-learn.adafruit.com/assets/assets/000/050/492/medium640/arduino_compatibles_3v.png?1516823763)

Then from **Tools** select the **Port** to be the serial port of the Feather. See above for how to find your COM/Serial port!

![arduino_compatibles_com.png](https://cdn-learn.adafruit.com/assets/assets/000/050/493/medium640/arduino_compatibles_com.png?1516824426)

[Check out Ladyada's Learn Arduino Lesson #1 to get your Feather Blinkin'](https://learn.adafruit.com/ladyadas-learn-arduino-lesson-number-1)
[Simon Monk also has a great set of guides on Arduino!](https://learn.adafruit.com/series/learn-arduino)
# Advanced Arduino IDE Setup

If you don't want to have to remember to select Pro Mini you can add the Adafruit AVR package to your IDE, which will make a **Feather 328P** menu item appear.

1. [Add the Adafruit Board Support Package (BSP) to Arduino by following these steps here](../../../../add-boards-arduino-v164/setup)
2. [Install the Adafruit BSP for AVRs by following these steps here](../../../../add-boards-arduino-v164/installing-boards)
3. You can now select **Adafruit Feather 328P**

![](https://cdn-learn.adafruit.com/assets/assets/000/050/498/medium800/arduino_compatibles_feather328p.png?1516827470)

# Adafruit Feather 328P

## Downloads

# Files

- Derivative of ["Arduino UNO R3 Reference design"](http://www.arduino.cc/en/Main/ArduinoBoardUno)&nbsp;
- [Open source hardware files on github!](https://github.com/adafruit/Adafruit-Feather-328P-PCB)
- [Fritzing object in the Adafruit Fritzing Library](https://github.com/adafruit/Fritzing-Library)
- [ATmega328P product page](http://www.atmel.com/devices/atmega328p.aspx)
- [PDF for Feather 328P PrettyPins Diagram](https://github.com/adafruit/Adafruit-Feather-328P-PCB/blob/master/Adafruit%20Feather%20328P%20Pinout.pdf)

[SVG For Feather 328P PrettyPins Diagram](https://cdn-learn.adafruit.com/assets/assets/000/110/541/original/Adafruit_Feather_328P_Pinout.svg?1649182317)
# Schematic

Click to embiggen

![](https://cdn-learn.adafruit.com/assets/assets/000/050/503/medium800/arduino_compatibles_schem.png?1516828625)

![](https://cdn-learn.adafruit.com/assets/assets/000/050/504/medium800/arduino_compatibles_fab.png?1516828777)


## Primary Products

### Adafruit Feather 328P - Atmega328P 3.3V @ 8 MHz

[Adafruit Feather 328P - Atmega328P 3.3V @ 8 MHz](https://www.adafruit.com/product/3458)
With this Feather we're getting a little nostalgic for the ATmega328P - the classic 'Arduino' chip - with this Adafruit Feather 328P running a 3.3V and 8 MHz. Feather is the new development board from Adafruit, and like it's namesake it is thin, light, and lets you fly! We...

In Stock
[Buy Now](https://www.adafruit.com/product/3458)
[Related Guides to the Product](https://learn.adafruit.com/products/3458/guides)

## Featured Products

### Lithium Ion Polymer Battery - 3.7v 2500mAh

[Lithium Ion Polymer Battery - 3.7v 2500mAh](https://www.adafruit.com/product/328)
Lithium-ion polymer (also known as 'lipo' or 'lipoly') batteries are thin, light, and powerful. The output ranges from 4.2V when completely charged to 3.7V. This battery has a capacity of **2500mAh** for a total of about 10 Wh. If you need a smaller battery, <a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/328)
[Related Guides to the Product](https://learn.adafruit.com/products/328/guides)
### Lithium Ion Polymer Battery - 3.7v 150mAh

[Lithium Ion Polymer Battery - 3.7v 150mAh](https://www.adafruit.com/product/1317)
Lithium-ion polymer (also known as 'lipo' or 'lipoly') batteries are thin, light, and powerful. The output ranges from 4.2V when completely charged to 3.7V. This battery has a capacity of 150mAh for a total of about 0.6 Wh. If you need a larger battery, <a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/1317)
[Related Guides to the Product](https://learn.adafruit.com/products/1317/guides)
### Lithium Ion Polymer Battery - 3.7V 350mAh

[Lithium Ion Polymer Battery - 3.7V 350mAh](https://www.adafruit.com/product/2750)
Lithium-ion polymer (also known as 'lipo' or 'lipoly') batteries are thin, light, and powerful. The output ranges from 4.2V when completely charged to 3.7V. This battery has a capacity of 350mAh for a total of about 1.3 Wh. If you need a larger (or smaller!) battery, <a...></a...>

Out of Stock
[Buy Now](https://www.adafruit.com/product/2750)
[Related Guides to the Product](https://learn.adafruit.com/products/2750/guides)

## Related Guides

- [How to Choose a Microcontroller](https://learn.adafruit.com/how-to-choose-a-microcontroller.md)
- [Introducing Adafruit Feather](https://learn.adafruit.com/adafruit-feather.md)
- [Digital Circuits 7: MCUs... how do they work?](https://learn.adafruit.com/mcus-how-do-they-work.md)
- [How to Add a New Board to WipperSnapper](https://learn.adafruit.com/how-to-add-a-new-board-to-wippersnapper.md)
- [Adafruit ADG728 1-to-8 Analog Matrix Switch](https://learn.adafruit.com/adafruit-adg728-1-to-8-analog-matrix-switch.md)
- [Adafruit MOSFET Driver](https://learn.adafruit.com/adafruit-mosfet-driver.md)
- [Programming an M0 using an Arduino](https://learn.adafruit.com/programming-an-m0-using-an-arduino.md)
- [Adafruit PCF8575 I2C 16 GPIO Expander Breakout](https://learn.adafruit.com/adafruit-pcf8575.md)
- [Adafruit ESP32-S2 Reverse TFT Feather](https://learn.adafruit.com/esp32-s2-reverse-tft-feather.md)
- [ESPHole Ad Blocker](https://learn.adafruit.com/esphole-ad-blocker.md)
- [Adafruit Sparkle Motion Stick](https://learn.adafruit.com/adafruit-sparkle-motion-stick.md)
- [Adafruit 5x5 NeoPixel Grid BFF](https://learn.adafruit.com/adafruit-5x5-neopixel-grid-bff.md)
- [How to Add a New Board to CircuitPython](https://learn.adafruit.com/how-to-add-a-new-board-to-circuitpython.md)
- [HID Reporter](https://learn.adafruit.com/hid-reporter.md)
- [MakeCode Arcade Platformer Level Design](https://learn.adafruit.com/makecode-arcade-platform-level.md)
