Add missing boards up to CP 9.2.5

This commit is contained in:
Melissa LeBlanc-Williams 2025-03-20 16:01:48 -07:00
parent 715103e69d
commit bd29fedd1d
86 changed files with 681 additions and 19 deletions

View file

@ -0,0 +1,45 @@
---
layout: download
board_id: "adafruit_fruit_jam"
title: "Fruit Jam - Mini RP2350 Computer Download"
name: "Fruit Jam - Mini RP2350 Computer"
manufacturer: "Adafruit"
board_url:
- "https://www.adafruit.com/product/6200"
board_image: "adafruit_fruit_jam.jpg"
date_added: 2025-03-19
family: rp2350
features:
- STEMMA QT/QWIIC
- USB-C
- External Display
- USB Host
- Speaker
---
We were catching up on a recent [hackaday hackchat with eben upton](https://hackaday.io/event/202122-raspberry-pi-hack-chat-with-eben-upton) and learned some fun facts: such as the DVI hack for the RP2040 was inspired by [a device called the IchigoJam](https://www.hackster.io/news/ichigojam-combines-strawberry-and-raspberry-to-deliver-a-raspberry-pi-pico-powered-educational-micro-66aa5d2f6eec). we remember reading about this back when it was an LPC1114, now it uses an RP2040. well, we're wrapping up the [Metro RP2350](https://www.adafruit.com/product/6003) and lately we've been joking around that with DVI output and USB Host support via bit-banged PIO, you could sorta build a little stand-alone computer.
Well, one pear-green-tea-fueled-afternoon later we tried our hand at designing a 'credit card sized' computer - that's 3.375" x 2.125", [about the same size as a business card](https://hackaday.com/2024/05/07/the-2024-business-card-challenge-starts-now/) and turns out there's even a standard named for it: [ISO/IEC 7810 ID-1](https://www.iso.org/standard/70483.html).
Anyhow, with the extra pins of the QFN-80 RP2350B, we're able to jam a ridonkulous amount of hardware into this shape:
- RP2350B dual 150MHz Cortex M33
- PicoProbe debug port
- 16 MB Flash + 8 MB PSRAM - the PSRAM will help when we want do do things like run emulations that we need to store in fast RAM access, and also let us use the main SRAM as the DVI video buffer.
- USB type C for bootloading/USB client
- Micro SD card with SPI or SDIO
- DVI output on the HSTX port
- I2S stereo headphone + mono speaker via the [TLV320DAC3100](https://www.digikey.com/en/products/detail/texas-instruments/tlv320dac3100irhbt/2353656)
- 2-port USB type A hub for both keyboard and mouse or game controllers
- Chunky on-off switch
- Stemma QT I2C
- Stemma classic JST 3-pin
- EYESPI for TFT displays
- 5x NeoPixels
- 3x tactile switches
- 16-pin socket header with 10 A/D GPIO + 5V/3V/GND power pins.
## Purchase
* [Adafruit](https://www.adafruit.com/product/6200)

View file

@ -6,6 +6,7 @@ name: "Metro RP2350"
manufacturer: "Adafruit"
board_url:
- "https://www.adafruit.com/product/6003"
- "https://www.adafruit.com/product/6267"
board_image: "adafruit_metro_rp2350.jpg"
date_added: 2024-08-08
family: rp2350
@ -13,13 +14,16 @@ features:
- STEMMA QT/QWIIC
- USB-C
- Arduino Shield Compatible
- External Display
- USB Host
---
Choo! Choo! This is the RP2350 Metro Line, making all station stops at "Dual Cortex M33 mountain", "520K RAM round-about" and "16 Megabytes of Flash town". This train is piled high with hardware that complements the Raspberry Pi RP2350 chip to make it an excellent development board for projects that want Arduino-shape-compatibility or just need the extra space and debugging ports.
Choo! Choo! This is the RP2350 Metro Line, making all station stops at "Dual Cortex M33 mountain", "520K RAM round-about" and "16 Megabytes of Flash town" and available with a bonus stop at "8 Megabytes of PSRAM village". This train is piled high with hardware that complements the Raspberry Pi RP2350 chip to make it an excellent development board for projects that want Arduino-shape-compatibility or just need the extra space and debugging ports.
* RP2350 main chip, 150MHz clock, 3.3V logic
* 16 MB of QSPI flash for program storage
* Available with 8 MB of QSPI PSRAM for extra dynamic memory
* 24 GPIO, 8 of which are also analog inputs
* Micro SD card socket wired up for SPI interfacing, also has extra pins connected for advanced-user SDIO interfacing (note that there's no released usage code for SDIO in Arduino/Python, so this is a super-cutting-edge setup)
* Onboard RGB NeoPixel
@ -35,3 +39,37 @@ Choo! Choo! This is the RP2350 Metro Line, making all station stops at "Dual Cor
* RX / TX switch for swapping D0 and D1 locations
You may be wondering about the RX-TX switch: we added this because traditional Arduino board start counting the GPIO for the digital pins with 0-7 and then 8-13. However, the D0/D1 pins are also traditionally the hardware UART Serial1, where D0 is Rx and D1 is Tx. On the RP2350, however, the UART pins are the other around: D0 is Tx and D1 is Rx. Thus a DPDT switch: flip one way to have the GPIO go in order of 0-7, flip the other way to have the logical locations of the hardware UART correct but now the pin order is 1, 0, 2, 3..7. Of course, it's also handy if, like us, you often swap the pins - now you don't need to require or cut/solder traces!
**Inside the RP2350 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 on all our native-USB boards. Just note you don't double-click reset instead hold down BOOTSEL during boot to enter the bootloader!
**There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), [unofficial (but really good) Arduino support,](https://learn.adafruit.com/rp2040-arduino-with-the-earlephilhower-core) an official [MicroPython port](https://github.com/micropython/micropython), and a [CircuitPython port](https://circuitpython.org/downloads)!** We of course [recommend CircuitPython because we think it's the easiest way to get started](https://learn.adafruit.com/welcome-to-circuitpython) and 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.
While the RP2350 has lots of onboard RAM, it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. **On this board there is 16 MB**, which is shared between the program it's running and any file storage used by MicroPython or CircuitPython. When using C/C++ you get the whole flash memory, if using Python you will have about 14 MB remaining for code, files, images, fonts, etc.
**RP2350 Chip features:**
- Dual ARM Cortex-M33 with floating point unit *or* Dual RISC-V @ 150MHz
- 520 kB on-chip SRAM
- 8 kB of one-time-programmable (OTP) memory.
- Support for up to 16MB of off-chip Flash memory via dedicated QSPI bus
- Support for external QSPI PSRAM
- DMA controller, 16 channel, 4 IRQ
- Fully-connected AHB crossbar
- On-chip switched-mode power supply and programmable low-dropout regulator (LDO) to generate core voltage
- Two on-chip PLLs to generate 48 MHz USB and 150MHz core clocks
- Optional boot signing with protected OTP storage
- Hardware SHA-256 accelerator
- Hardware random number generator (TRNG)
- 48 GPIO pins, 8 of which can be used as analog inputs
- Peripherals
- 2 UARTs
- 2 SPI controllers
- 2 I2C controllers
- 24 PWM channels (compared to 16 on RP2040)
- USB 1.1 controller and PHY, with host and device support
- 12 PIO state machines
## Purchase
* [Adafruit (No PSRAM)](https://www.adafruit.com/product/6003)
* [Adafruit (8MB PSRAM)](https://www.adafruit.com/product/6267)

View file

@ -0,0 +1,33 @@
---
layout: download
board_id: "daisy_seed_with_sdram"
title: "Daisy Seed Download"
name: "Daisy Seed"
manufacturer: "Electrosmith"
board_url:
- "https://electro-smith.com/products/daisy-seed"
board_image: "daisy_seed_with_sdram.jpg"
date_added: 2025-03-19
family: stm
features:
- Breadboard-Friendly
- Raspberry Pi Pico Form Factor
---
Daisy is an embedded platform for music. It features everything you need for creating high fidelity audio hardware devices. Just plug in a USB cable and start making sound! Programming the Daisy is a breeze with support for a number of languages including C++, Arduino, and Max/MSP Gen~. To get started, simply upload an example program over USB, and start tweaking!
**Documentation, design files, and assets are hosted on our [Daisy Support Site](https://daisy.audio/hardware/Seed/).**
All firmware that we develop is released for free under a permissive open source license.
- Stereo audio IO - 96kHz / 24-bit audio hardware (AC-Coupled)
- Programmable in: C++, Arduino, Max/MSP gen~, Pure Data
- x31 GPIO, x12 ADC inputs (16-bit), x2 DAC outputs (12-bit, DC-Coupled)
- ARM Cortex-M7 MCU, running at 480MHz
- 64MB of SDRAM for up to 10 minute long audio buffers, 8MB external flash
- SD card interface, PWM outputs, and various serial protocols for external devices (SPI, UART, SAI/I2S, I2C)
- Dedicated VIN pin for external power
## Purchase
- [Electrosmith](https://electro-smith.com/products/daisy-seed)

View file

@ -0,0 +1,40 @@
---
layout: download
board_id: "heltec_vision_master_e290"
title: "Vision Master E290 Download"
name: "Vision Master E290"
manufacturer: "Heltec Automation"
board_url:
- "https://heltec.org/project/vision-master-e290/"
board_image: "heltec_vision_master_e290.jpg"
date_added: 2025-03-19
family: esp32s3
features:
- Display
- Bluetooth/BTLE
- Wi-Fi
- Battery Charging
- LoRa/Radio
- USB-C
---
Vision Master E290 (HT-VME290) is an E-Ink development kit with multiple wireless drive methods. Collaborate with the sample programs and development tools we provide, users can operate the display via Bluetooth, Wi-Fi and LoRa.
This board is equipped with a default 2.90-inch black-white E-Ink display screen, continuous display for 180 days after power outage. It is compatible with Arduino, PlatformIO, Micpython and other development frameworks, can be used to develop applications such as electronic tags and identity tags, it is also possible to run open source projects like Meshtastic.
## Features
- ESP32-S3R8 MCU, support Wi-Fi and BLE.
- LoRa module is optional, compatible with Mashtastic.
- Low power consumption, 18uA in deep sleep, continuous display for 180 days after power outage.
- Onboard SH1.25-2 battery interface, integrated lithium battery management system (charge and discharge management, overcharge protection, battery power detection, USB / battery power automatic switching).
- Onboard 2.90 inch 296 x 128 pixels display, support for partial refresh.
- Storage condition: -25 ~ 70℃, ≤45%RH.
- Optimal operating condition0~50℃, 55±10%RH.
- SH2.0-4P sensor interface is perfectly compatible with QuickLink series sensors.
- 2*20 Pin Female Header, perfectly compatible with Raspberry PI.
- Compatible with Arduino, we provide development frameworks and libraries.
## Purchase
- [Heltec Automation](https://heltec.org/project/vision-master-e290/)

View file

@ -0,0 +1,35 @@
---
layout: download
board_id: "lilygo_tdongle_s3"
title: "T-Display S3 Pro Download"
name: "T-Display S3 Pro"
manufacturer: "LILYGO"
board_url:
- "https://lilygo.cc/products/t-dongle-s3"
board_image: "lilygo_tdongle_s3.jpg"
date_added: 2024-07-18
family: esp32s3
features:
- Wi-Fi
- Bluetooth/BTLE
- Battery Charging
- USB-C
- Display
- Breadboard-Friendly
- STEMMA QT/QWIIC
---
ESP32-S3 Development Board With Screen 0.96 inch ST7735 LCD Display
## Technical details
- ESP32-S3 Xtensa LX7 microprocessor
- Wi-Fi 802.11 b/g/n, bluetooth5
- Arduino-ide、PlatformlO-ide、Micropython
- 16M Flash, Boot button, TF card
- 0.96 inch ST7735 IPS LCD
- Full color (65k) Display, 4-Wire SPI interface
## Purchase
* [LILYGO Own Store](https://lilygo.cc/products/t-dongle-s3)

View file

@ -0,0 +1,35 @@
---
layout: download
board_id: "lilygo_tqt_pro_nopsram"
title: "TQ-T Pro Download"
name: "TQ-T Pro"
manufacturer: "LILYGO"
board_url:
- "https://lilygo.cc/products/t-qt-pro?variant=43214296285365"
board_image: "lilygo_tqt_pro.jpg"
bootloader_id: lilygo_tqt_pro_nopsram
date_added: 2025-03-20
family: esp32s3
features:
- Wi-Fi
- Bluetooth/BTLE
- USB-C
- Display
- Breadboard-Friendly
- STEMMA QT/QWIIC
---
## Technical details
* ESP32-S3 Dual-core 32-bit LX7 microprocessor
* 16 MB Flash memory
* 1.9 inch ST7789 LCD display, optional CST816 touchscreen
* Wi-Fi 802.11 b/g/n, BLE 5.0 + BT mesh
* 2 user buttons (`IO0` for Boot and `IO14` for custom functions), 1 reset button
* Battery charging circuit (JST connector for Li-Po battery)
* USB-C for programming and power
* Onboard LED
## Purchase
* [LILYGO Own Store](https://lilygo.cc/products/t-qt-pro?variant=43214296285365)

View file

@ -0,0 +1,36 @@
---
layout: download
board_id: "lilygo_tqt_pro_psram"
title: "TQ-T Pro Download"
name: "TQ-T Pro"
manufacturer: "LILYGO"
board_url:
- "https://lilygo.cc/products/t-qt-pro?variant=42383267823797"
board_image: "lilygo_tqt_pro.jpg"
bootloader_id: lilygo_tqt_pro_psram
date_added: 2025-03-20
family: esp32s3
features:
- Wi-Fi
- Bluetooth/BTLE
- USB-C
- Display
- Breadboard-Friendly
- STEMMA QT/QWIIC
---
## Technical details
* ESP32-S3 Dual-core 32-bit LX7 microprocessor
* 16 MB Flash memory
* 8 MB PSRAM
* 1.9 inch ST7789 LCD display, optional CST816 touchscreen
* Wi-Fi 802.11 b/g/n, BLE 5.0 + BT mesh
* 2 user buttons (`IO0` for Boot and `IO14` for custom functions), 1 reset button
* Battery charging circuit (JST connector for Li-Po battery)
* USB-C for programming and power
* Onboard LED
## Purchase
* [LILYGO Own Store](https://lilygo.cc/products/t-qt-pro?variant=42383267823797)

View file

@ -0,0 +1,34 @@
---
layout: download
board_id: "nordic_nrf5340dk"
title: "Nordic nRF5340 Development Kit Download"
name: "Nordic nRF5340 Development Kit"
manufacturer: "Nordic Semiconductor"
board_url:
- "https://www.nordicsemi.com/Products/Development-hardware/nRF5340-DK"
board_image: "nordic_nrf5340dk.jpg"
date_added: 2025-03-20
family: zephyr
features:
- Arduino Shield Compatible
- Bluetooth/BTLE
- Battery Charging
---
The nRF5340 DK is the development kit for the [nRF5340 System-on-Chip (SoC)](https://www.nordicsemi.com/Products/nRF5340), containing everything needed to get started with development, on a single board.
The DK supports development with an extensive range of wireless protocols. It supports Bluetooth Low Energy with features such as high-throughput 2 Mbps, Advertising Extensions and Long Range. Mesh protocols like Bluetooth mesh, Thread and Zigbee can run concurrently with Bluetooth Low Energy, enabling smartphones to provision, commission, configure and control mesh nodes, which is a prerequisite for [matter ](https://www.nordicsemi.com/Products/Technologies/Matter)applications. It also supports NFC, ANT, 802.15.4 and 2.4 GHz proprietary protocols.
The DK is bundled with an NFC antenna that quickly enables testing of nRF5340s NFC-A tag functionality. A SEGGER J-Link debugger is on the board, enabling full-blown programming and debugging, of both the nRF5340 SoC and external targets.
All analog and digital interfaces, and GPIOs are available via headers and edge connectors. The kit is Arduino Uno Rev3 hardware compatible, meaning it can be easily interfaced with external device shields.
Four buttons and four LEDs simplify input and output to and from the nRF5340 SoC, and are all user-programmable. An on-board external memory is connected to the 96 MHz QSPI peripheral in the nRF5340 SoC.
The nRF5340 DK is typically powered via USB, but can be powered by a wide range of sources, within the supply range of 1.7 to 5.0 V. In addition to USB, it can be powered with external source, but also includes a CR2032 battery holder and a Li-Po battery connector, for in-field testing. Current consumption can be measured by using the dedicated current measurement pins, for example by using Nordic's [Power Profiler Kit II](https://www.nordicsemi.com/Products/Development-hardware/Power-Profiler-Kit-2).
The [nRF Connect SDK](https://www.nordicsemi.com/Products/Development-software/nRF-Connect-SDK) is the software development kit for the nRF5340 SoC, and it has board support for the nRF5340 DK. It supports software development of Bluetooth Low Energy, Thread and Zigbee applications. It integrates the Zephyr RTOS, protocol stacks, samples, hardware drivers and much more.
## Purchase
* [Mouser](https://www.mouser.com/ProductDetail/Nordic-Semiconductor/NRF5340-DK?qs=T94vaHKWudSvpk%2Fi5MmNkA%3D%3D)

View file

@ -0,0 +1,24 @@
---
layout: download
board_id: "nordic_nrf54l15dk"
title: "Nordic nRF54L05 Development Kit Download"
name: "Nordic nRF54L05 Development Kit"
manufacturer: "Nordic Semiconductor"
board_url:
- "https://www.nordicsemi.com/Products/Development-hardware/nRF54L15-DK"
board_image: "nordic_nrf54l15dk.jpg"
date_added: 2025-03-20
family: zephyr
features:
- Bluetooth/BTLE
---
The nRF54L15 DK is the development kit for all three wireless SoC (System-on-Chip) options in the nRF54L Series. The nRF54L15 sits on the development board, while the nRF54L10 and nRF54L05 can be emulated. The affordable single-board development kit makes all features of the wireless SoC available to the developer.
The nRF54L15 DK is supported by a comprehensive set of nRF Connect tools and has support in the nRF Connect SDK. Developers can explore the full potential of the nRF54L15 using the extensive range of software samples, modules, and libraries available within the nRF Connect SDK.
The nRF Connect SDK Fundamentals and Bluetooth Low Energy Fundamentals courses in Nordic Developer Academy support the nRF54L15 DK. These courses have enrolled more than 15,000 developers, have received an average rating of 9.1/10, and provide more than 20 hours of in-depth training.
## Purchase
* [Digi-Key](https://www.digikey.com/en/products/detail/nordic-semiconductor-asa/NRF54L15-DK/25601516)

View file

@ -0,0 +1,33 @@
---
layout: download
board_id: "nordic_nrf7002dk"
title: "Nordic nRF7002 Development Kit Download"
name: "Nordic nRF7002 Development Kit"
manufacturer: "Nordic Semiconductor"
board_url:
- "https://www.nordicsemi.com/Products/Development-hardware/nRF7002-DK"
board_image: "nordic_nrf7002dk.jpg"
date_added: 2025-03-20
family: zephyr
features:
- Arduino Shield Compatible
- Bluetooth/BTLE
- Wi-Fi
- Battery Charging
---
The nRF7002 DK is the development kit for the [nRF7002](https://www.nordicsemi.com/Products/nRF7002), and [nRF7001](https://www.nordicsemi.com/Products/nRF7001) Wi-Fi 6 Companion ICs. It contains everything needed to get started developing on a single board. The DK features an [nRF5340 ](https://www.nordicsemi.com/Products/nRF5340)multiprotocol System-on-Chip (SoC) as a host processor for the nRF7002.
The DK supports the development of low-power [Wi-Fi](https://www.nordicsemi.com/Products/Wireless/WiFi) applications and enables Wi-Fi 6 features like OFDMA, Beamforming, and Target Wake Time.
The nRF7002 is a Wi-Fi 6 companion IC, providing seamless connectivity and Wi-Fi-based locationing (SSID sniffing of local Wi-Fi hubs). It is designed to be used alongside Nordics existing nRF52® and nRF53® Series Bluetooth Systems-on-Chip (SoCs), and nRF91® Series cellular IoT Systems-in-Package (SiPs). The nRF7002 can also be used in conjunction with non-Nordic host devices.
To communicate with the host, SPI or QSPI can be used, and an extra coexistence feature allows for seamless coexistence with other protocols like Bluetooth, Thread, or Zigbee. The nRF7002 is integrated and supported in Nordics nRF Connect SDK and the nRF7002 Dk can also be used to emulate the nRF7001.
The nRF7002 is the first device in Nordics portfolio of unique Wi-Fi products that will combine seamlessly with Nordics existing ultra-low power technologies. Nordic bring their decades of ultra-low-power wireless IoT and silicon design expertise to Wi-Fi. Wi-Fi 6 brings added benefits to IoT applications, including further efficiency gains supporting long-life, battery-powered Wi-Fi operation.
With Wi-Fi 6, Nordic supports all wireless protocols used in Matter, Bluetooth LE for commissioning, Thread for low-power mesh, and Wi-Fi for high-throughput. Matter is a protocol championed by Apple, Amazon, Google, Nordic Semiconductor, Samsung, and hundreds of other companies in consumer IoT.
## Purchase
* [Digi-Key](https://www.digikey.com/en/products/detail/nordic-semiconductor-asa/NRF7002-DK/17748188)

View file

@ -3,7 +3,7 @@ layout: download
board_id: "nucleo_f446re"
title: "STM32F446RE Nucleo Download"
name: "STM32F446RE Nucleo"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/en/evaluation-tools/nucleo-f446re.html"
board_image: "nucleo_f446re.jpg"

View file

@ -3,7 +3,7 @@ layout: download
board_id: "nucleo_f746zg"
title: "STM32F746 Nucleo Download"
name: "STM32F746 Nucleo"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f746zg.html"
board_image: "nucleo_f746zg.jpg"

View file

@ -3,7 +3,7 @@ layout: download
board_id: "nucleo_f767zi"
title: "STM32F767 Nucleo Download"
name: "STM32F767 Nucleo"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-f767zi.html"
board_image: "nucleo_f767zi.jpg"

View file

@ -3,7 +3,7 @@ layout: download
board_id: "nucleo_h743zi_2"
title: "STM32H743 Nucleo Download"
name: "STM32H743 Nucleo"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-h743zi.html"
board_image: "nucleo_h743zi_2.jpg"

View file

@ -0,0 +1,22 @@
---
layout: download
board_id: "proveskit_rp2040_v4"
title: "PROVES Kit RP2040 V4 Download"
name: "PROVES Kit RP2040 V4"
manufacturer: "PROVES Kit"
board_url:
- "https://docs.proveskit.space/en/latest/core_documentation/hardware/FC_board/"
board_image: "proveskit_rp2040_v4.jpg"
date_added: 2025-03-20
family: rp2040
features:
- Robotics
- USB-C
- STEMMA QT/QWIIC
---
The PROVES Kit blends Open-Source Hardware and Software. The Hardware developed includes the entire educational satellite structure, brackets, and printed circuit boards. One of the major issues that we sought to solve with the kit was to develop a single solution for an end to end space mission engineering education. Many other open source projects avalible to the community only feature a single element, like just a radio or just a flight computer.
## Learn more
* [PROVES Kit](https://docs.proveskit.space/en/latest/core_documentation/hardware/FC_board/)

View file

@ -15,6 +15,7 @@ download_instructions: https://learn.adafruit.com/getting-started-with-raspberry
features:
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
The Raspberry Pi foundation changed single-board computing when they released the Raspberry Pi computer, now they're ready to do the same for microcontrollers with the release of the brand new **Raspberry Pi Pico**. This low-cost microcontroller board features a powerful new chip, the **RP2040**, and all the fixin's to get started with embedded electronics projects at a stress-free price.

View file

@ -15,6 +15,7 @@ tags:
features:
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
@ -22,7 +23,7 @@ Raspberry Pi Pico 2 is Raspberry Pi Foundation's update to their popular RP2040-
The unique dual-core, dual-architecture capability of RP2350 allows users to choose between a pair of industry-standard Arm Cortex-M33 cores and a pair of open-hardware Hazard3 RISC-V cores. You can use either Arm or RISC-V cores, so this is a great way to dabble in RISC-V development with an affordable board that has lots of peripherals. The M33 has an FPU, and is 'basically' 2x as fast as the M0+ of the RP2040 when we speed-tested it.
Not only is the Pico 2 twice as fast, it has twice as much RAM, 520KB compared to 264KB. The Pico also has twice as much FLASH memory, 4MB instead of 2MB, which will make it a much better board for CircuitPython usage where the internal memory is used to store files. There's also one more PIO blocks (3 blocks with 4 state machines apiece, rather than 2) so you can do even more pin twiddling at once. For folks who want to use the RP2350 to generate high frequency output signals like DVI display output, you can use the HSTX (high speed transmission) peripheral rather than PIO.
Not only is the Pico 2 twice as fast, it has twice as much RAM, 520KB compared to 264KB. The Pico also has twice as much FLASH memory, 4MB instead of 2MB, which will make it a much better board for CircuitPython usage where the internal memory is used to store files. There's also one more PIO blocks (3 blocks with 4 state machines apiece, rather than 2) so you can do even more pin twiddling at once. For folks who want to use the RP2350 to generate high frequency output signals like DVI display output, you can use the HSTX (high speed transmission) peripheral rather than PIO.
For customers who wanted a more secure microcontroller for product design, the RP2350 provides a comprehensive security architecture, built around Arm TrustZone for Cortex-M, and incorporating signed boot, 8KB of antifuse OTP for key storage, SHA-256 acceleration, a hardware TRNG, and fast glitch detectors. These features, including the secure boot ROM, are extensively documented and available to all users without restriction: this transparent approach, which contrasts with the “security through
obscurity” offered by legacy vendors, allows professional users to integrate RP2350, and Raspberry Pi Pico 2, into products with confidence.

View file

@ -17,6 +17,7 @@ features:
- Breadboard-Friendly
- Wi-Fi
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
@ -24,7 +25,7 @@ Raspberry Pi Pico 2W is Raspberry Pi Foundation's update to their popular RP2040
The unique dual-core, dual-architecture capability of RP2350 allows users to choose between a pair of industry-standard Arm Cortex-M33 cores and a pair of open-hardware Hazard3 RISC-V cores. You can use either Arm or RISC-V cores, so this is a great way to dabble in RISC-V development with an affordable board that has lots of peripherals. The M33 has an FPU, and is 'basically' 2x as fast as the M0+ of the RP2040 when we speed-tested it.
Not only is the Pico 2 twice as fast, it has twice as much RAM, 520KB compared to 264KB. The Pico also has twice as much FLASH memory, 4MB instead of 2MB, which will make it a much better board for CircuitPython usage where the internal memory is used to store files. There's also one more PIO blocks (3 blocks with 4 state machines apiece, rather than 2) so you can do even more pin twiddling at once. For folks who want to use the RP2350 to generate high frequency output signals like DVI display output, you can use the HSTX (high speed transmission) peripheral rather than PIO.
Not only is the Pico 2 twice as fast, it has twice as much RAM, 520KB compared to 264KB. The Pico also has twice as much FLASH memory, 4MB instead of 2MB, which will make it a much better board for CircuitPython usage where the internal memory is used to store files. There's also one more PIO blocks (3 blocks with 4 state machines apiece, rather than 2) so you can do even more pin twiddling at once. For folks who want to use the RP2350 to generate high frequency output signals like DVI display output, you can use the HSTX (high speed transmission) peripheral rather than PIO.
For customers who wanted a more secure microcontroller for product design, the RP2350 provides a comprehensive security architecture, built around Arm TrustZone for Cortex-M, and incorporating signed boot, 8KB of antifuse OTP for key storage, SHA-256 acceleration, a hardware TRNG, and fast glitch detectors. These features, including the secure boot ROM, are extensively documented and available to all users without restriction: this transparent approach, which contrasts with the “security through
obscurity” offered by legacy vendors, allows professional users to integrate RP2350, and Raspberry Pi Pico 2, into products with confidence.

View file

@ -17,7 +17,8 @@ tags:
features:
- Breadboard-Friendly
- Wi-Fi
- Castellated Pads
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
The Raspberry Pi foundation changed single-board computing [when they released the Raspberry Pi computer](https://www.raspberrypi.org/archives/723), now they're ready to do the same for microcontrollers with the release of the brand new **Raspberry Pi Pico W**. This low-cost microcontroller board features their powerful new chip, the **RP2040**, and all the fixin's to get started with IoT embedded electronics projects at a stress-free price.

25
_board/red-s2-wroom.md Normal file
View file

@ -0,0 +1,25 @@
---
layout: download
board_id: "red-s2-wroom"
title: "Red S2 WROOM Board Download"
name: "Red S2 WROOM Board"
manufacturer: "Generic"
board_url:
- "https://www.aliexpress.us/item/3256806120950874.html"
board_image: "red-s2-wroom.jpg"
date_added: 2025-03-20
family: esp32s2
bootloader_id: red-s2-wroom
features:
- Wi-Fi
- USB-C
- Breadboard-Friendly
---
ESP 32 Mini minimum system development board, can use Arduino compiler for development, rich function library, and free open source environment, also support other compiler environment, ESP32 module built-in Hall sensor, WIFI is suitable for project or development use.
ESP32-S2 chip: The ESP32-S2 chip is equipped with the Xtensa R 32-bit LX7 single-core processor and operates at uo to 240 MHz. You can turn off the power to the CPU and use the low-power coprocessor to monitor for state changes in peripherals or whether certain analog amounts exceed thresholds. The ESP32-S2 integrates a wealth of peripherals including SPI, I2S, UART, I2C, LEDPWM, TWAI R controller, ADC, DAC, touch sensor, temperature sensor and up to 43 GPIOs. In addition, the ESP32-S2 has a full-speed USB On-The-Go(OTG) port for USB communication.
## Purchase
* [AliExpress](https://www.aliexpress.us/item/3256806120950874.html)

View file

@ -0,0 +1,60 @@
---
layout: download
board_id: "renesas_ek_ra6m5"
title: "EK-RA6M5 Evaluation Kit Download"
name: "EK-RA6M5 Evaluation Kit"
manufacturer: "Renesas"
board_url:
- "https://www.renesas.com/en/products/microcontrollers-microprocessors/ra-cortex-m-mcus/ek-ra6m5-evaluation-kit-ra6m5-mcu-group"
board_image: "renesas_ek_ra6m5.jpg"
date_added: 2025-03-20
family: zephyr
features:
- STEMMA QT/QWIIC
- Arduino Shield Compatible
---
The EK-RA6M5 evaluation kit enables users to effortlessly evaluate the features of the [RA6M5 MCU Group](https://www.renesas.com/en/products/microcontrollers-microprocessors/ra-cortex-m-mcus/ra6m5-200mhz-arm-cortex-m33-trustzone-highest-integration-ethernet-and-can-fd) and develop embedded systems applications using the [Flexible Software Package (FSP)](https://www.renesas.com/en/software-tool/flexible-software-package-fsp) and [e2 studio IDE](https://www.renesas.com/en/software-tool/e-studio). Utilize rich on-board features along with your choice of popular ecosystem add-ons to bring your big ideas to life.
## Features
- Ecosystem & System Control Access
- USB Full Speed host and device
- Multiple 5V input sources
- USB (Debug, High Speed, Full Speed)
- External power supply
- [SEGGER J-LinkTM](https://www.segger.com/products/debug-probes/j-link/) on-board programmer and debugger
- Debug modes
- Debug On-board (SWD) via J-Link
- Debug Out (SWD) via J-Link
- Debug In (ETM, SWD & JTAG) via J-Link, [Arm® Keil® ULINKTM](https://www2.keil.com/mdk5/ulink), [IAR I-jetTM](https://www.iar.com/ijet), [Renesas E2](https://www.renesas.com/en/software-tool/e2-emulator-rte0t00020kce00000r)/[E2 Lite](https://www.renesas.com/en/software-tool/e2-emulator-lite-rte0t0002lkce00000r), etc.
- User LEDs and buttons
- Three user LEDs (red, blue, green)
- Power LED (white) indicating availability of regulated power
- Debug LED (yellow) indicating the debug connection
- Two user buttons
- One reset button
- Five most popular ecosystem expansions
- [MikroElektronikaTM mikroBUS](https://www.mikroe.com/click) connector
- [SparkFun® Qwiic®](https://www.sparkfun.com/qwiic) connector
- Two [SeeedGrove®](https://www.seeedstudio.com/category/Grove-c-1003.html) system (I2C and Analog) connectors
- Two [Digilent PmodTM](https://store.digilentinc.com/pmod-expansion-modules/pmod-boards/) (SPI and UART) connectors
- ArduinoTM (Uno R3) connector
- MCU boot configuration jumper
- Special Feature Access
- Ethernet (RMII and PHY)
- 64MB External Octo-SPI Flash
- 32MB External Quad-SPI Flash
- CAN FD
- USB High Speed host and device
- MCU Native Pin Access
- R7FA6M5BH3CFC MCU
- 200MHz, Arm Cortex®-M33 core
- 2MB Code Flash, 512kB SRAM
- 176 pins, LQFP package
- Native pin access through 4x 40-pin male headers
- MCU and USB current measurement points
## Purchase
* [Digi-Key](https://www.digikey.com/en/products/detail/renesas-electronics-america/RTK7EKA6M5S00001BE/13918501)

View file

@ -0,0 +1,75 @@
---
layout: download
board_id: "renesas_ek_ra8d1"
title: "EK-RA8D1 Evaluation Kit Download"
name: "EK-RA8D1 Evaluation Kit"
manufacturer: "Renesas"
board_url:
- "https://www.renesas.com/en/products/microcontrollers-microprocessors/ra-cortex-m-mcus/ek-ra8d1-evaluation-kit-ra8d1-mcu-group"
board_image: "renesas_ek_ra8d1.jpg"
date_added: 2025-03-20
family: zephyr
features:
- STEMMA QT/QWIIC
- Arduino Shield Compatible
- Display
- Camera
---
The EK-RA8D1 evaluation kit enables users to effortlessly evaluate the features of the [RA8D1 MCU Group](https://www.renesas.com/en/products/microcontrollers-microprocessors/ra-cortex-m-mcus/ra8d1-480mhz-arm-cortex-m85-based-graphics-microcontroller-helium-and-trustzone) and develop embedded systems applications using Renesas' [Flexible Software Package (FSP)](https://www.renesas.com/en/software-tool/flexible-software-package-fsp) and [e2 studio](https://www.renesas.com/en/software-tool/e-studio) IDE. Utilize rich onboard features along with your choice of popular ecosystem add-ons to bring your big ideas to life.
The EK-RA8D1 kit consists of three boards: the EK-RA8D1 board featuring the RA8D1 MCU with on-chip graphics LCD controller, a MIPI graphics expansion board featuring a 4.3-inch TFT color LCD with capacitive touch overlay, and a camera expansion board featuring a 3M pixels CMOS image sensor.
## Features
- Special Feature Access
- MIPI DSI and Parallel Graphics Expansion Ports
- Camera Expansion Port
- Ethernet
- USB High-Speed Host and Device
- 64MB SDRAM
- 64MB External Octo-SPI Flash
- MCU Native Pin Access
- R7FA8D1BHECBD MCU
- 480MHz, Arm® Cortex®-M85 core
- 2MB Code Flash, 1MB SRAM
- 224 pins, BGA package
- Native pin access
- MCU and USB current measurement
- DC/DC mode configuration
- Ecosystem and System Control Access
- USB Full Speed Host and Device
- Multiple 5V input sources
- USB (debug, Full-Speed, High-Speed)
- External power supply
- [SEGGER J-Link™](https://www.segger.com/products/debug-probes/j-link/) onboard programmer and debugger
- Debug modes
- Debug Onboard (SWD) via J-Link
- Debug Out (SWD) via J-Link
- Debug In (ETM, SWD and JTAG) via J-Link, [Arm® Keil® ULINK™](https://www2.keil.com/mdk5/ulink), [IAR I-jet™](https://www.iar.com/ijet), [Renesas E2](https://www.renesas.com/en/software-tool/e2-emulator-rte0t00020kce00000r)/[E2 Lite](https://www.renesas.com/en/software-tool/e2-emulator-lite-rte0t0002lkce00000r), etc.
- User LEDs and buttons
- Three user LEDs (red, blue, green)
- Power LED (white) indicating the availability of regulated power
- Debug LED (yellow) indicating the debug connection
- Two user buttons
- One reset button
- Five most popular ecosystem expansions
- MikroElektronika™ mikroBUS connector
- SparkFun® Qwiic® connectors (may not be populated)
- Two SeeedGrove® system (I2C and analog) connectors (may not be populated)
- Two Digilent Pmod™ (SPI and UART) connectors
- Arduino™ (Uno R3) connector
- MCU boot configuration
- MIPI Graphics Expansion Board
- 4.5 Inch backlit TFT display, 16.7M display colors
- 480x854 pixels resolution
- 2-lane MIPI interface
- Capacitive touch overlay (I2C)
- Camera Expansion Board
- Off-the-shelf Arducam CMOS OV3640 Camera Module
- ¼ Inch 3.1 Megapixel image sensor
- Up to 15 fps in QXGA (2048x1536 pixels) resolution
## Purchase
* [Digi-Key](https://www.digikey.com/en/products/detail/renesas-electronics-america/RTK7EKA8D1S01001BE/21723717)

View file

@ -0,0 +1,50 @@
---
layout: download
board_id: "st_nucleo_u575zi_q"
title: "Nucleo 575ZI-Q Download"
name: "STM32U575ZIT6Q Nucleo"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/en/evaluation-tools/nucleo-u575zi-q.html"
board_image: "st_nucleo_u575zi_q.jpg"
date_added: 2025-03-20
family: zephyr
features:
- Arduino Shield Compatible
---
The STM32 Nucleo-144 board provides an affordable and flexible way for users to try out new concepts and build prototypes by choosing from the various combinations of performance and power consumption features, provided by the STM32 microcontroller. For the compatible boards, the internal or external SMPS significantly reduces power consumption in Run mode.
The ST Zio connector, which extends the ARDUINO® Uno V3 connectivity, and the ST morpho headers provide an easy means of expanding the functionality of the Nucleo open development platform with a wide choice of specialized shields.
The STM32 Nucleo-144 board does not require any separate probe as it integrates the ST-LINK debugger/programmer.
The STM32 Nucleo-144 board comes with the STM32 comprehensive free software libraries and examples available with the STM32Cube MCU Package.
## Features
- Common features
- STM32 microcontroller in an LQFP144, TFBGA225, or VFBGA264 package
- 3 user LEDs
- 1 user push-button and 1 reset push-button
- 32.768 kHz crystal oscillator
- Board connectors:
- SWD
- ST morpho expansion connector
- Flexible power-supply options: ST-LINK USB VBUS, USB connector, or external sources
- Comprehensive free software libraries and examples available with the STM32Cube MCU Package
- Support of a wide choice of Integrated Development Environments (IDEs) including IAR Embedded Workbench®, MDK-ARM, and STM32CubeIDE
- Features specific to some of the boards (refer to the ordering information section of the data brief for details)
- External or internal SMPS to generate Vcore logic supply
- Ethernet compliant with IEEE-802.3-2002
- USB Device only, USB OTG full speed, or SNK/UFP (full-speed or high-speed mode)
- Board connectors:
- ARDUINO® Uno V3 connector or ST Zio expansion connector including ARDUINO® Uno V3
- Camera module FPC
- MIPI20 compatible connector with trace signals
- USB with Micro-AB or USB Type-C®
- Ethernet RJ45
- On-board ST-LINK (STLINK/V2-1, STLINK-V3E, or STLINK-V3EC) debugger/programmer with USB re-enumeration capability: mass storage, Virtual COM port, and debug port
## Purchase
* [ST](https://estore.st.com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-nucleo-boards/nucleo-u575zi-q.html)

View file

@ -0,0 +1,60 @@
---
layout: download
board_id: "st_stm32h7b3i_dk"
title: "STM32U575ZIT6Q Discovery Kit Download"
name: "STM32U575ZIT6Q Discovery Kit"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/en/evaluation-tools/stm32h7b3i-dk.html"
board_image: "st_stm32h7b3i_dk.jpg"
date_added: 2025-03-20
family: zephyr
features:
- Display
- Wi-Fi
- STEMMA QT/QWIIC
---
The STM32H7B3I-DK Discovery kit is a complete demonstration and development platform for the STMicroelectronics Arm® Cortex®-M7 core-based STM32H7B3LIH6Q microcontroller.
The STM32H7B3I-DK Discovery kit is used as a reference design for user application development before porting to the final product, thus simplifying the application development.
The full range of hardware features available on the board helps users enhance their application development by an evaluation of almost all peripherals (such as USB OTG_HS, microSD™, USART, CAN FD, audio DAC stereo with audio jack input and output, camera, SDRAM, OctoSPI flash memory, and RGB interfaced LCD with capacitive touch panel). ARDUINO® Uno V3 connectors provide easy connection to extension shields or daughterboards for specific applications.
STLINK-V3E is integrated into the board, as an embedded in-circuit debugger and programmer for the STM32 MCU and the USB Virtual COM port bridge.
The STM32H7B3I-DK board comes with the STM32CubeH7 MCU Package, which provides an STM32 comprehensive software HAL library as well as various software examples.
## Features
- STM32H7B3LIH6Q Arm®-based microcontroller featuring 2 Mbytes of flash memory and 1.4 Mbytes of RAM in a BGA225 package
- 4.3" (480x272 pixels) TFT color LCD module including a capacitive touch panel with RGB interface
- WiFi® module compliant with 802.11 b/g/n
- USB OTG HS
- Audio codec
- 512Mbit OctoSPI NOR flash memory
- 128-Mbit SDRAM
- Two user LEDs
- User and reset push-buttons
- Fanout daughterboard
- CAN FD
- Board connectors:
- 8bit camera
- USB with Micro-AB
- Stereo headset jack including analog microphone input
- Audio jack for external speakers
- microSD™ card
- TagConnect™ 10-pin footprint
- Arm® Cortex® 10-pin 1.27mm-pitch debug connector over STDC14 footprint
- ARDUINO® Uno V3 expansion connector
- STMod+ expansion connector
- Audio daughterboard expansion connector
- External I2C expansion connector
- Flexible power-supply options: ST-LINK USB VBUS, USB connector, or external sources
- On-board STLINK-V3E debugger/programmer with USB re-enumeration capability: mass storage, Virtual COM port, and debug port
- Comprehensive free software libraries and examples available with the STM32Cube MCU Package
- Support of a wide choice of Integrated Development Environments (IDEs) including IAR Embedded Workbench®, MDK-ARM, and STM32CubeIDE
## Purchase
* [ST](https://estore.st.com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/stm32h7b3i-dk.html)
* [Newark](https://www.newark.com/stmicroelectronics/stm32h7b3i-eval/evaluation-board-32bit-arm-cortex/dp/78AK8714)

View file

@ -3,7 +3,7 @@ layout: download
board_id: "stm32f411ve_discovery"
title: "Discovery kit for STM32F411 Download"
name: "Discovery kit for STM32F411"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/en/evaluation-tools/32f411ediscovery.html"
board_image: "stm32f411.jpg"

View file

@ -3,7 +3,7 @@ layout: download
board_id: "stm32f412zg_discovery"
title: "STM32F412 Discovery kit Download"
name: "STM32F412 Discovery kit"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/en/evaluation-tools/32f412gdiscovery.html"
board_image: "stm32f412.jpg"

View file

@ -3,7 +3,7 @@ layout: download
board_id: "stm32f4_discovery"
title: "STM32F407 Discovery kit Download"
name: "STM32F407 Discovery kit"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/en/evaluation-tools/stm32f4discovery.html"
board_image: "stm32f407.jpg"

View file

@ -3,7 +3,7 @@ layout: download
board_id: "stm32f746g_discovery"
title: "STM32F746 Discovery kit Download"
name: "STM32F746 Discovery kit"
manufacturer: "ST"
manufacturer: "STMicroelectronics"
board_url:
- "https://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/32f746gdiscovery.html"
board_image: "stm32f746g_discovery.jpg"

View file

@ -12,6 +12,7 @@ family: rp2040
features:
- Breadboard-Friendly
- USB-C
- Raspberry Pi Pico Form Factor
---
Flexible I/O connects RP2040 to the physical world by allowing it to speak to almost anyexternal device. High performance breezes through integer workloads. Low cost helps ease the barrier to entry.

View file

@ -16,6 +16,7 @@ features:
- Display
- USB-C
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
RP2040-LCD-0.96 is a low-cost, high-performance Pico-like MCU board with flexible digital interfaces. It incorporates Raspberry Pi's RP2040 microcontroller chip, as same as the one on Raspberry Pi Pico. For software development, either Raspberry Pi's C/C++ SDK, or the MicroPython is available, which makes it easy for you to get started, and integrate it into end products quickly.

View file

@ -13,6 +13,7 @@ features:
- USB-C
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
Need more Flash for Raspberry Pi Pico? Dislike the outdated Micro USB connector? All these problems are solved by our **RP2040-Plus** now.

View file

@ -13,7 +13,7 @@ features:
- USB-C
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
Need more Flash for Raspberry Pi Pico? Dislike the outdated Micro USB connector? All these problems are solved by our **RP2040-Plus** now.

View file

@ -16,6 +16,7 @@ features:
- Display
- USB-C
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
RP2350-LCD-0.96 is a low-cost, high-performance Pico-like MCU board with flexible digital interfaces. It incorporates Raspberry Pi's RP2350A microcontroller chip, the same as the one on Raspberry Pi Pico 2. For software development, either Raspberry Pi's C/C++ SDK, or the MicroPython is available, which makes it easy for you to get started, and integrate it into end products quickly.

View file

@ -13,6 +13,7 @@ features:
- USB-C
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---

View file

@ -12,6 +12,7 @@ family: rp2040
features:
- USB-C
- Breadboard-Friendly
- Raspberry Pi Pico Form Factor
---
The Raspberry Pi Pico is a microcontroller board based on the Raspberry Pi RP2040 microcontroller chip. It has been designed to be a low-cost, high-performance microcontroller board with flexible digital interfaces. The Raspberry Pi Pico features two ARM Cortex-M0+ cores run up to 133MHz; 256KB RAM; 30 GPIO pins; and a broad range of interfacing options. This is paired with 2MB/4MB/8MB/16MB of onboard QSPI Flash memory for code and data storage.

View file

@ -12,6 +12,7 @@ family: rp2040
features:
- USB-C
- Breadboard-Friendly
- Raspberry Pi Pico Form Factor
---
The Raspberry Pi Pico is a microcontroller board based on the Raspberry Pi RP2040 microcontroller chip. It has been designed to be a low-cost, high-performance microcontroller board with flexible digital interfaces. The Raspberry Pi Pico features two ARM Cortex-M0+ cores run up to 133MHz; 256KB RAM; 30 GPIO pins; and a broad range of interfacing options. This is paired with 2MB/4MB/8MB/16MB of onboard QSPI Flash memory for code and data storage.

View file

@ -12,6 +12,7 @@ family: rp2040
features:
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
W5100S-EVB-Pico is a microcontroller evaluation board based on the Raspberry Pi RP2040 and fully hardwired TCP/IP controller W5100S and basically works the same as Raspberry Pi Pico board but with additional Ethernet via W5100S.

View file

@ -12,6 +12,7 @@ family: rp2350
features:
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
W5100S-EVB-Pico2 is a microcontroller evaluation board based on the Raspberry Pi RP2350 and fully hardwired TCP/IP controller W5100S enhancing the capabilities of the traditional Raspberry Pi Pico board with additional Ethernet functionality via W5100S.

View file

@ -12,6 +12,7 @@ family: rp2040
features:
- Breadboard-Friendly
- Castellated Pads
- Raspberry Pi Pico Form Factor
---
W5500-EVB-Pico is a microcontroller evaluation board based on the Raspberry Pi RP2040 and fully hardwired TCP/IP controller W5500 and basically works the same as Raspberry Pi Pico board but with additional Ethernet via W5500.

View file

@ -12,20 +12,21 @@
"esp32s3": {
"version": "0.21.0"
},
"analog": {},
"broadcom": {},
"cxd56": {},
"esp32": {},
"esp32c2": {},
"esp32c3": {},
"esp32c6": {},
"esp32h2": {},
"esp32p4": {},
"esp32": {},
"stm": {},
"cxd56": {},
"litex": {},
"mimxrt10xx": {},
"rp2040": {},
"rp2350": {},
"broadcom": {},
"litex": {},
"silabs": {},
"analog": {}
"stm": {},
"zephyr": {}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 491 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View file

@ -29,11 +29,13 @@ features:
- Feather-Compatible
- GPS
- LoRa/Radio
- Raspberry Pi Pico Form Factor
- Robotics
- Solder-Free Alligator Clip
- Speaker
- STEMMA QT/QWIIC
- USB-C
- USB Host
- Wi-Fi
- Xiao / QTPy Form Factor
---