Raspberry Pi Pico H - Pico with Headers Soldered (2024)

Description

The Raspberry Pi foundation changed single-board computingwhen they released the Raspberry Pi computer, now they're ready to do the same for microcontrollers with the release of the brand newRaspberry Pi Pico H with Soldered Headers. This low-cost microcontroller board features theirpowerful new chip, theRP2040, and all the fixin's to get started with IoT embedded electronics projects at a stress-free price.

Raspberry Pi Pico Hisjust like the classic Picobut adds pre-soldered headers anda new 3-pin debug connector.

There's 20 pads on each side, with groups of general purpose input-and-output (GPIO) pins interleaved with plenty of ground pins. All of the GPIO pins are 3.3V logic, and are not 5V-safe so stick to 3V! You get a total of25 GPIOpins,3 of those can be analog inputs(the chip has 4 ADC but one is not broken out). There are no true analog output (DAC) pins.

On the slim green board is minimal circuitry to get you going: A 5V to 3.3V power supply converter, single green LED on GP25, boot select button, RP2040 chip with dual-core Cortex M0, Wireless chipset with antenna, 2 MegaBytes of QSPI flash storage, and crystal.

Inside the RP2040 is a 'permanent ROM' USB UF2 bootloader. What that means is when you want to program new firmware, you can hold down the BOOTSEL button while plugging it into USB (or pulling down the RUN/Reset pin to ground) and it will appear as a USB disk drive you can drag the firmware onto. Folks who have been using Adafruit products will find this very familiar - we use the technique all our native-USB boards. Just note you don't double-click reset, instead hold down BOOTSEL during boot to enter the bootloader!

The RP2040 is a powerful chip, which has the clock speed of our M4 (SAMD51), and two cores that are equivalent to our M0 (SAMD21). Since it is an M0 chip, it does not have a floating point unit, or DSP hardware support - so if you're doing something with heavy floating point math, it will be done in software and thus not as fast as an M4. For many other computational tasks, you'll get close-to-M4 speeds!

For peripherals, there are two I2C controllers, two SPI controllers, and two UARTs that are multiplexed across the GPIO - check the pinout for what pins can be set to which. There are 16 PWM channels, each pin has a channel it can be set to (ditto on the pinout).

You'll note there's no I2S peripheral, or SDIO, or camera, what's up with that? Well instead of having specific hardware support for serial-data-like peripherals like these, the RP2040 comes with the PIO state machine system which is a unique and powerful way to createcustom hardware logic and data processing blocksthat run on their own without taking up a CPU. For example, NeoPixels - often we bitbang the timing-specific protocol for these LEDs. For the RP2040, we instead use a PIO object that reads in the data buffer and clocks out the right bitstream with perfect accuracy.Same with I2S audio in or out, LED matrix displays, 8-bit or SPI based TFTs, even VGA! In MicroPython and CircuitPython you can create PIO control commands to script the peripheral and load it in at runtime. There are 2 PIO peripherals with 4 state machines each.

There is greatC/C++ support, an officialMicroPython port, and aCircuitPython port!We of courserecommend CircuitPython because we think it's the easiest way to get startedand it has support with most of our drivers, displays, sensors, and more, supported out of the box so you can follow along with our CircuitPython projects and tutorials.

For Arduino usage we recommend the Philhower Arduino core, which does not use mbed, has lots of peripherals supported, and many makers/companies have submitted board definitions.

RP2040 Chip features:

  • Dual ARM Cortex-M0+ @ 133MHz
  • 264kB on-chip SRAM in six independent banks
  • Support for up to 16MB of off-chip Flash memory via dedicated QSPI bus
  • DMA controller
  • Fully-connected AHB crossbar
  • Interpolator and integer divider peripherals
  • On-chip programmable LDO to generate core voltage
  • 2 on-chip PLLs to generate USB and core clocks
  • 30 GPIO pins, 4 of which can be used as analog inputs
  • Peripherals
    • 2 UARTs
    • 2 SPI controllers
    • 2 I2C controllers
    • 16 PWM channels
    • USB 1.1 controller and PHY, with host and device support
    • 8 PIO state machines

Click here to get started with your Pico!

Technical Details

Resources and more!

Raspberry Pi Pico and RP2040 FAQ

  • Should I buy a Raspberry Pi Pico or a Raspberry Pi Zero?
    These are two very different devices, a microcontroller and a microcomputer, intended for different purposes. Pico is a great device for dedicating to a very specific task, whereas Zero is a multipurpose device. Raspberry Pi Zero has HDMI out, a camera interface, etc; Raspberry Pi Pico does not. However, Pico has an on-board ADC as well as other peripherals not present on Raspberry Pi Zero, and consumes considerably less power; it is therefore much more suited to embedded applications than Raspberry Pi Zero.
  • What OS does it run?
    Like other microcontrollers, it doesn't run an OS by default, but we supply a SDK which provides a rich library of functions for using the hardware/features of the chip, along with higher-level functionality often found in an OS. You can use this to write “bare metal” C/C++ applications easily, or you can use MicroPython, which is even simpler for beginners.
  • Can I buy the RP2040 chip?
    Yes it is available here
  • Is it open-source?
    The Raspberry Pi Pico board design files are open-source, along with all the provided software, examples, and documentation. The internal design of the RP2040 microcontroller itself is not open-source.
  • Does it support Arduino/Blockly/other programming environments?
    Yes!For Arduino usage we recommend the Philhower Arduino core, which does not use mbed, has lots of peripherals supported, and many makers/companies have submitted board definitions.
  • Is RP2040 5V tolerant?
    No. RP2040 microcontrollers use 3.3V for GPIO.
  • I've accidentally connected +5V to my Raspberry Pi Pico or other RP2040-based microcontroller. Is the pin dead?
    It depends; often RP2040 will survive, but it is not recommended, and can reduce the life of the microcontroller.
  • What is the maximum flash size for the RP2040 chip?
    16 MiB of flash (2^24 bytes).
  • Can I overclock it?
    The maximum clk_sys clock speed is 133MHz at normal core voltage (1.1V ±10%), but it can be overclocked. However, this requires more power and a higher core voltage, and may affect the life expectancy of your device. No warranties are given when running outside of the limits specified in the datasheet.
  • What low-power modes are there?
    There is no specific low-power mode, but you can do various things to reduce power consumption: slow the system clock, power down some of the memories, gate the clock to peripherals, reduce the core supply voltage, etc.
    There are two specific modes for turning off parts of the device when not being used:
    SLEEP mode is when processors are in wfi/wfe and DMA is inactive, so you can shut off most system clocks, including things like bus fabric.
    DORMANT mode is when you shut down all oscillators, and so is lower power still, but then you have fewer options for waking.
  • I’m using VSCode. How do I set a breakpoint on the second core?
    At the moment you need to use the command window in VSCode to set a gdb breakpoint.
  • GCC 10.2 is available. Why aren’t you using it by default?
    Our development work has been using the more common versions of GCC as supplied with various distributions. We have checked builds using major gcc versions from 6.3.1 to 10.2, so all of those should work.
  • What is the maximum source impedance required for the ADC inputs to achieve the 9-bit resolution?
    We are currently working on characterising this, and will update the datasheet.

    Learn

    Raspberry Pi Pico H - Pico with Headers Soldered (3)

    Adafruit PiCowbell Proto for Pico

    Pico: Now with STEMMA QT, proto space, and a reset button!

    Raspberry Pi Pico H - Pico with Headers Soldered (4)

    NES Emulator for RP2040 DVI Boards

    Three ways to play!

    Raspberry Pi Pico H - Pico with Headers Soldered (5)

    Pokémon Macro Ball for Nintendo Switch

    Build a Pokéball that's a programmable macro controller!

    Raspberry Pi Pico H - Pico with Headers Soldered (6)

    Adafruit Proto Under Plate PiCowBell

    Simplify programming and sensor connectivity for your Raspberry Pi Pico

    See All Guides

    Raspberry Pi Pico H - Pico with Headers Soldered (7)

    Raspberry Pi Pico W

    Raspberry Pi Pico H - Pico with Headers Soldered (8)

    Raspberry Pi Pico WH - Pico Wireless with Headers Soldered

    Raspberry Pi Pico H - Pico with Headers Soldered (9)

    Raspberry Pi Pico RP2040

    Raspberry Pi Pico H - Pico with Headers Soldered (10)

    Raspberry Pi Pico RP2040 with Loose Unsoldered Headers

    Raspberry Pi Pico H - Pico with Headers Soldered (11)

    Adafruit Feather RP2040
    Adafruit ItsyBitsy RP2040
    Adafruit QT Py RP2040

    Raspberry Pi Pico H - Pico with Headers Soldered (14)

    Raspberry Pi RP2040 Microcontroller - Single Surface Mount Chip
    Adafruit Trinkey QT2040 - RP2040 USB Key with Stemma QT

    Raspberry Pi Pico H - Pico with Headers Soldered (16)

    Adafruit MacroPad RP2040 Enclosure + Hardware Add-on Pack

    Raspberry Pi Pico H - Pico with Headers Soldered (17)

    Adafruit KB2040 - RP2040 Kee Boar Driver
    Pimoroni PicoSystem - RP2040 Handheld Gaming System - PIM559
    Raspberry Pi Pico H - Pico with Headers Soldered (2024)
    Top Articles
    Pfingsten 2024: Welche Bedeutung hat das christliche Fest?
    Sparta Culver's Flavor Of The Day
    2016 Hyundai Sonata Refrigerant Capacity
    Palmbeachschools Jobs
    T800 Kenworth Fuse Box Diagram
    Does Shell Gas Station Sell Pregnancy Tests
    Petco Clinic Hours
    Uta Kinesiology Advising
    Autozone Memorial Day Hours
    Academic Calendar Biola
    Santa Maria Cars Craigslist
    Homepoint Financial Wholesale Login
    Ceretto Aziende Vitivinicole
    Zenuwbeknelling in de voorvoet (Mortons neuroom)
    Ropro Cloud Play
    Jordanbush Only Fans
    Sundance Printing New Braunfels
    Craigslist Hoosick Falls
    Rancho Medanos Schedule
    Ksat Doppler Radar
    Spaghetti Models | Cyclocane
    Equity Livestock Monroe Market Report
    Missing 2023 Showtimes Near Lucas Cinemas Albertville
    Craigslist Richmond Ky Cars
    Hose Woe Crossword Clue
    Marisa Jacques Bio
    Cambria County Most Wanted 2022
    Skyward Login Waxahachie
    Age Gabriela Moura's Evolution from Childhood Dreams to TikTok Fame - Essential Tribune
    Helloid Worthington Login
    Directions To 401 East Chestnut Street Louisville Kentucky
    Low Tide In Twilight Mangabuddy
    Samsung Galaxy Z Flip6 | Galaxy AI | Samsung South Africa
    Adventhealth Employee Handbook 2022
    Jetnet Retirees Aa
    How to Get Rid of Phlegm, Effective Tips and Home Remedies
    Scholastic to kids: Choose your gender
    Malibu Horror Story Showtimes Near Regal Atlantic Station
    Probation中文
    Commuter Rail Gloucester
    Stark Cjis Court Docket
    Mario Party Superstars Rom
    No Hard Feelings Showtimes Near Silvermoon Drive-In
    eCare: Nutzung am PC | BARMER
    Green Press Gazette Obits
    4Myhr Mhub
    Blog:Vyond-styled rants -- List of nicknames (blog edition) (TouhouWonder version)
    Broadcastify Thurston County
    Gelöst – Externe Festplatte kann nicht formatiert werden
    Six Broadway Wiki
    CareLink™ Personal Software | Medtronic
    H'aanit's Third Chapter | Gamer Guides: Your ultimate sou...
    Latest Posts
    Article information

    Author: Catherine Tremblay

    Last Updated:

    Views: 6030

    Rating: 4.7 / 5 (47 voted)

    Reviews: 86% of readers found this page helpful

    Author information

    Name: Catherine Tremblay

    Birthday: 1999-09-23

    Address: Suite 461 73643 Sherril Loaf, Dickinsonland, AZ 47941-2379

    Phone: +2678139151039

    Job: International Administration Supervisor

    Hobby: Dowsing, Snowboarding, Rowing, Beekeeping, Calligraphy, Shooting, Air sports

    Introduction: My name is Catherine Tremblay, I am a precious, perfect, tasty, enthusiastic, inexpensive, vast, kind person who loves writing and wants to share my knowledge and understanding with you.