Compare commits

..

No commits in common. "checkbox-labels" and "master" have entirely different histories.

1788 changed files with 8924 additions and 75688 deletions

View file

@ -1,64 +0,0 @@
name: Update Libraries/Contributing Info
on:
schedule:
- cron: 15 9 * * *
workflow_dispatch:
jobs:
check-repo-owner:
# This job is so the entire workflow will end successfully and give some
# output to explain why it hasn't run on a non-Adafruit fork.
runs-on: ubuntu-latest
steps:
- name: repository
env:
OWNER_IS_ADAFRUIT: ${{ startswith(github.repository, 'adafruit/') }}
run: |
echo "This workflow will only run if Adafruit is the repository owner."
echo "Repository owner is Adafruit: $OWNER_IS_ADAFRUIT"
update-bundles:
runs-on: ubuntu-latest
# Only run the build on Adafruit's repository. Forks won't have the secrets.
# Its necessary to do this here, since 'schedule' events cannot (currently)
# be limited (they run on all forks' default branches).
if: startswith(github.repository, 'adafruit/')
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Versions
run: |
python3 --version
- uses: actions/checkout@v1
with:
submodules: true
- name: Install deps
run: |
pip install -r adabot/requirements.txt
- name: Pip install pylint
run: |
pip install --force-reinstall pylint==2.7.1
- name: Make Directory For Report Files
run: mkdir -p bin/adabot
- name: Run adabot.update_cp_org_libraries
env:
ADABOT_GITHUB_USER: ${{ secrets.ADABOT_GITHUB_USER }}
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.ADABOT_GITHUB_ACCESS_TOKEN }}
RTD_TOKEN: ${{ secrets.RTD_TOKEN }}
run: |
cd adabot
python3 -u -m adabot.update_cp_org_libraries -o $GITHUB_WORKSPACE/bin/adabot/libraries.v2.json
- name: Check For Files
run: |
ls bin/adabot
- name: Upload Reports To AWS S3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/adabot/ s3://adafruit-circuit-python/adabot/web/ --recursive --no-progress --region us-east-1"

View file

@ -1,62 +0,0 @@
name: Jekyll site CI
on:
push:
branches:
- main
schedule:
- cron: 0 10 * * *
pull_request:
jobs:
check-repo-owner:
# This job is so the entire workflow will end successfully and give some
# output to explain why it hasn't run on a non-Adafruit fork.
runs-on: ubuntu-latest
steps:
- name: repository
env:
OWNER_IS_ADAFRUIT: ${{ startswith(github.repository, 'adafruit/') }}
run: |
echo "This workflow will only run if Adafruit is the repository owner."
echo "Repository owner is Adafruit: $OWNER_IS_ADAFRUIT"
build:
runs-on: ubuntu-latest
# Only run the build on Adafruit's repository. Forks won't have the secrets.
# Its necessary to do this here, since 'schedule' events cannot (currently)
# be limited (they run on all forks' default branches).
if: startswith(github.repository, 'adafruit/')
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Update Awesome CircuitPython
run: |
(cd awesome-circuitpython && git fetch origin main:main && git checkout main)
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
- name: Install Dependencies
run: |
gem install bundler:1.17.3
bundle install --full-index
pip install python-frontmatter pillow python-dateutil
- name: Check feature names and other data
run: python3 check-boards.py
- name: Check Image Dimensions
run: python3 check-images.py
- name: Build site with jekyll
run: |
bundle exec jekyll build -d build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
cname: circuitpython.org
if: github.event_name != 'pull_request'

View file

@ -1,26 +0,0 @@
name: Compress Images
on:
pull_request:
# Run Image Actions when JPG, JPEG, PNG or WebP files are added or changed.
# See https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#onpushpull_requestpaths for reference.
paths:
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.webp'
jobs:
build:
# Only run on Pull Requests within the same repository, and not from forks.
if: github.event.pull_request.head.repo.full_name == github.repository
name: calibreapp/image-actions
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Compress Images
uses: calibreapp/image-actions@main
with:
# The `GITHUB_TOKEN` is automatically generated by GitHub and scoped only to the repository that is currently running the action. By default, the action cant update Pull Requests initiated from forked repositories.
# See https://docs.github.com/en/actions/reference/authentication-in-a-workflow and https://help.github.com/en/articles/virtual-environments-for-github-actions#token-permissions
githubToken: ${{ secrets.GITHUB_TOKEN }}

4
.gitignore vendored
View file

@ -1,9 +1,5 @@
_site
.sass-cache
.jekyll-metadata
.jekyll-cache
.DS_Store
_drafts/
.bundle
vendor
.idea

View file

@ -1 +0,0 @@
ruby 2.7.2

15
.travis.yml Normal file
View file

@ -0,0 +1,15 @@
# TravisCI config for circuitpython.org
# only run if triggered by a cron
if: type = cron
dist: xenial
language: python
python: "3.6"
install:
- pip install -r adabot/requirements.txt
script:
- cd adabot
- python -u -m adabot.update_cp_org_libraries

12
Gemfile
View file

@ -8,21 +8,21 @@ source "https://rubygems.org"
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 4.2"
gem "jekyll", "~> 3.8.4"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem 'jekyll-sitemap'
gem 'jekyll-seo-tag'
gem 'jekyll-paginate'
gem 'jekyll-redirect-from'
gem "jekyll-get-json", "~> 1"
end
group :development do
gem 'rake'
gem 'image_processing'
end
gem "webrick", "~> 1.7"

View file

@ -1,95 +1,80 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
concurrent-ruby (1.1.9)
deep_merge (1.2.1)
em-websocket (0.5.3)
concurrent-ruby (1.0.5)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
ffi (1.15.5)
ffi (1.9.25)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (1.8.11)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
image_processing (1.12.2)
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
jekyll (4.2.1)
image_processing (1.9.0)
mini_magick (>= 4.9.3, < 5)
ruby-vips (>= 2.0.13, < 3)
jekyll (3.8.4)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (~> 2.0)
i18n (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (~> 3.0)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-get-json (1.0.0)
deep_merge (~> 1.2)
jekyll (>= 3.0)
jekyll-paginate (1.1.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (2.1.0)
sassc (> 2.0.1, < 3.0)
jekyll-seo-tag (2.7.1)
jekyll (>= 3.8, < 5.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.5.0)
jekyll (~> 3.3)
jekyll-sitemap (1.2.0)
jekyll (~> 3.3)
jekyll-watch (2.1.2)
listen (~> 3.0)
kramdown (2.3.1)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.7.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
mini_magick (4.11.0)
pathutil (0.16.2)
kramdown (1.17.0)
liquid (4.0.1)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
mini_magick (4.9.5)
pathutil (0.16.1)
forwardable-extended (~> 2.6)
public_suffix (4.0.6)
rake (13.0.6)
rb-fsevent (0.11.0)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (3.26.1)
ruby-vips (2.1.4)
ffi (~> 1.12)
safe_yaml (1.0.5)
sassc (2.4.0)
public_suffix (3.0.3)
rake (12.3.2)
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rouge (3.3.0)
ruby-vips (2.0.13)
ffi (~> 1.9)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
unicode-display_width (1.8.0)
webrick (1.7.0)
ruby_dep (1.5.0)
safe_yaml (1.0.4)
sass (3.6.0)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
PLATFORMS
ruby
x86_64-linux
DEPENDENCIES
image_processing
jekyll (~> 4.2)
jekyll-get-json (~> 1)
jekyll (~> 3.8.4)
jekyll-paginate
jekyll-redirect-from
jekyll-seo-tag
jekyll-sitemap
rake
webrick (~> 1.7)
BUNDLED WITH
2.2.26
1.17.3

View file

@ -1,35 +1,11 @@
# CircuitPython organization site
A more detailed gude for adding a board to CircuitPython can be found in the
following Adafruit Learn guide: [How to add a New Board to the circuitpython.org website](https://learn.adafruit.com/how-to-add-a-new-board-to-the-circuitpython-org-website)
**To add a new board to the site:**
1. Duplicate `template.md` to `_board/<board id>.md`.
2. Edit `_board/<board id>.md` according to the template's instructions.
3. In your `_board/<board id>.md` you will specify a `board_image`. Create 3
versions of this file, in the following sizes and folder locations:
|Size|File|Dimensions (px)|
|--|--|--|
|Original|assets/images/orignal/{board_image}|900px+ width and 4:3 ratio width|
|||example: 900 x 675|
|Large|assets/images/large/{board_image}|800 x 600|
|Small|assets/images/small/{board_image}|300 x 225|
> For more information on preferred images or if you prefer or must use 13:10 see
> [Preparing the Images](https://learn.adafruit.com/how-to-add-a-new-board-to-the-circuitpython-org-website/preparing-the-images)
> in the Adafruit Learn guide
4. Create a pull request with the file changes.
**To test your changes locally:**
1. You need "ruby" and "ruby-bundler" installed locally. These instructions
were tested with ruby 2.5 and ruby-bundler 1.17.3 on a Debian Stretch system.
2. As needed, `git submodule update --init --recursive` to fetch the submodules
3. One time, run `bundle config set path 'vendor/bundle' && bundle install`
4. Run `bundle exec jekyll serve` to generate the site locally
5. Visit the displayed "server address"
6. After most local edits, the content will be updated. You will need to
reload (ctrl-r or F5) your browser
3. Provide 3 images. An original high-quality image. A smaller image (300 px width),
and a larger image (700 px width) in each respective directory (assets/images/boards/{small large original})
and process them in something like https://squoosh.app/ to reduce file size. If
you only have one image, place it in the 'original' folder.
3. Create a pull request with the file changes.

View file

@ -1,76 +0,0 @@
---
layout: download
board_id: "adafruit_feather_rp2040"
title: "Feather RP2040 Download"
name: "Feather RP2040"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4884"
board_image: "adafruit_feather_rp2040.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
date_added: 2021-12-6
features:
- Feather-Compatible
- STEMMA QT/QWIIC
---
A new chip means a new Feather, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the Feather Treatment" and so we did! This Feather features the **RP2040**, and all niceties you know and love about Feather.
## Technical details
* Measures 2.0" x 0.9" x 0.28" (50.8 mm x 22.8 mm x 7 mm) without headers soldered in
* Light as a (large?) feather - 5 grams
* RP2040 32-bit Cortex M0+ dual core running at ~125 MHz @ 3.3 V logic and power
* 264 KB RAM
* **8 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
* **21 GPIO pins with following capabilities:**
* **Four** 12 bit ADCs (one more than Pico)
* Two I2C, Two SPI and two UART peripherals, we label one for the 'main' interface in standard Feather locations
* 16 PWM outputs - for servos, LEDs, etc
* The 8 digital 'non-ADC/non-peripheral' GPIO are consecutive for maximum PIO compatibility
* **Built in 200 mA lipoly charger** with charging status indicator LED
* **Pin #13 red LED** for general purpose blinking
* **RGB NeoPixel** with power pin on GPIO so you can depower it for low power usages.
* On-board **STEMMA QT connector** that lets you quickly connect any Qwiic, STEMMA QT or Grove I2C devices with no soldering!
* **Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)**
* 3.3 V Power/enable pin
* [Optional SWD debug port can be soldered in for debug access](https://www.adafruit.com/product/752)
* 4 mounting holes
* 24 MHz crystal for perfect timing.
* 3.3 V regulator with 500 mA peak current output
* **USB-C connector** lets you access built-in ROM USB bootloader and serial port debugging
**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 on 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 (SAMD1). 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 create custom hardware logic and data processing blocks that 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 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.
**At the time of launch, there is no Arduino core support for this board. There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/micropython), and a [CircuitPython port](/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 RP2040 has lots of onboard RAM (264 KB), it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. **On this board there is 8 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 7 MB remaining for code, files, images, fonts, etc.
**RP2040 Chip features:**
* Dual ARM Cortex-M0+ @ 133 MHz
* 264 kB 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
Comes fully assembled and tested, with the UF2 USB bootloader. We also toss in some header, so you can solder it in and plug it into a solderless breadboard.
## Purchase
* [Adafruit](https://www.adafruit.com/product/4884)

View file

@ -1,79 +0,0 @@
---
layout: download
board_id: "adafruit_itsybitsy_rp2040"
title: "ItsyBitsy RP2040 Download"
name: "ItsyBitsy RP2040"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4888"
board_image: "adafruit_itsybitsy_rp2040.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
date_added: 2021-12-6
features:
---
A new chip means a new ItsyBitsy, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the ItsyBitsy teensy-weensy Treatment" and so we did! This Itsy' features the RP2040, and all niceties you know and love about the [ItsyBitsy family](https://www.adafruit.com/category/1008).
What's smaller than a Feather but larger than a Trinket? It's an Adafruit ItsyBitsy RP2040 featuring the Raspberry Pi RP2040! Small, powerful, with a ultra fast duel Cortex M0+ processor running at 125 MHz - this microcontroller board is perfect when you want something very compact, with lots of horsepower and a bunch of pins. This Itsy has sports car speed, but SUV roominess with 4 MB of FLASH and 264 KB of SRAM.
ItsyBitsy RP2040 is only 1.4" long by 0.7" wide, but has 6 power pins, 23 digital GPIO pins (4 of which can be analog in and 16 x PWM out). It's the same chip as the [Feather RP2040](https://www.adafruit.com/products/4884) and [Raspberry Pi Pico](https://www.adafruit.com/products/4883) *but really really small*. So it's great once you've finished up a prototype, and want to make the project much smaller. It even comes with 4MB of SPI Flash built in, for data logging, file storage, or CircuitPython/MicroPython code
## Technical details
- Same size and form-factor as the rest of the [ItsyBitsy family](https://www.adafruit.com/category/1008) and nearly-identical pinout
- Measures 1.4" x 0.7" x 0.2" (36 mm x 18 mm x 4 mm) without headers soldered in
- RP2040 32-bit Cortex M0+ dual core running at ~125 MHz @ 3.3V logic and power
- 264 KB RAM
- **4 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
- 23 GPIO pins with following capabilities:
- 4 12-bit ADCs (one more than Pico)
- 2 I2C, 2 SPI and 2 UART peripherals, we label one for the 'main' interface in standard ItsyBitsy locations
- 16 PWM outputs - for servos, LEDs, etc
- The 10 digital 'non-ADC/non-peripheral' GPIO are consecutive for maximum PIO compatibility
- **Pin #13 red LED** for general purpose blinking
- **RGB NeoPixel** with power pin on GPIO so you can depower it for low power usages.
- **Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)**
- 3.3 V regulator with 500mA peak current output
- 3.3 V Power/enable pin
- Power with either USB or external output (such as a battery) - it'll automatically switch over
- Broken-out SWD pins for debug access
- 24 MHz crystal for perfect timing.
- Special **Vhigh** output pin gives you the higher voltage from VBAT or VUSB, for driving NeoPixels, servos, and other 5V-logic devices. **Digital 5** level-shifted output for high-voltage logic level output.
- **USB Micro B connector** lets you access built-in ROM USB bootloader and serial port debugging
**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 on 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 create *custom hardware logic and data processing blocks* that 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 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](https://github.com/raspberrypi/pico-examples/tree/master/pio)! 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.
**At the time of launch, there is no Arduino core support for this board. There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/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.
This Itsy comes with loose 0.1" headers you can solder in for breadboard use!
While the RP2040 has lots of onboard RAM (264KB), it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. On this board there is 2MB, 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 1 MB remaining for code, files, images, fonts, etc.
**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
## Purchase
* [Adafruit](https://www.adafruit.com/product/4888)

View file

@ -1,42 +0,0 @@
---
layout: download
board_id: "adafruit_macropad_rp2040"
title: "MacroPad RP2040 Download"
name: "MacroPad RP2040"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/5128"
board_image: "adafruit_macropad_rp2040.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
date_added: 2021-12-6
features:
- STEMMA QT/QWIIC
---
Strap yourself in, we're launching in T-minus 10 seconds...Destination? A new Class M planet called MACROPAD! M here, stands for Microcontroller because this 3x4 keyboard controller features the newest technology from the Raspberry Pi sector: say hello to the RP2040. It's speedy little microcontroller with lots of GPIO pins and a 64 times more RAM than the Apollo Guidance Computer. We added 8 MB of flash memory for plenty of storage.
Get ready to upgrade your desk's mission control station with a CircuitPython or Arduino powered Macropad - complete with 12 buttons, OLED display, speaker and rotary encoder. Customize it for your spacecraft to help guide you through the great reaches of the unknown. (Or just have it type out your favorite emojis.)
Each of the 12 sockets can accept a Cherry MX-compatible key switch. No soldering required, just snap it in! Use any key switch you like - but we recommend ones with slots that will allow the matching twelve NeoPixels underneath to shine through.
This space-ship is also fitted with a 128x64 monochome OLED for a crisp heads-up display that can be used in Arduino or CircuitPython to display keymaps, stats, computer performance, etc. There's also a rotary encoder with push-button soldered in. Twist and turn it or push to change volume or monitor brightness or scroll: whatever you like! A tiny speaker can give audio feedback or play fun bleepy tunes.
Want to add more hardware? No worries - [a STEMMA QT port on the side lets you connect any I2C add-on peripherals from the massive STEMMA QT / Qwiic family of plug in boards](https://www.adafruit.com/category/1018).
**Please note, the RP2040 chip does not currently have QMK support** - this macropad is designed to be programmed in Arduino or CircuitPython! If QMK eventually does add RP2040 as a supported chipset (no ETA and no plans that we know of), we'll update this page.
## Technical details
- **Raspberry Pi RP2040 Chip + 8MB Flash memory** - Dual core Cortex M0+ at ~130MHz with 264KB or RAM. Runs CircuitPython, Arduino or MicroPython with ease and lots of space for development code and files
- **USB C Connector for Power/Data** - of course this can act as an HID device but also can be MIDI, UART, etc.
- **3x4 Mechanical key switch sockets** - accepts any Cherry MX-compatible switches. Individually tied to GPIO pins (not matrix wired)
- **One NeoPixel RGB LED per switch**, on north side
- **Rotary encoder**, 20 detents per rotation, with push-switch on GPIO pin. Push switch is also used for entering bootloader mode when held down on power-up or reset.
- **128x64 SH1106 Monochrome OLED display** - On high speed hardware SPI port for quick updates
- **8mm Speaker/Buzzer** - With Class D amplifier and RC filter, can be used to make simple beeps and sounds effects.
- **STEMMA QT Connector** - Allows adding any I2C sensors/displays/devices with plug-and-play cables.
- **Reset button -** On the side, for quick restarting of code
- **Four M3 mounting bosses** - Make custom enclosures easily
## Purchase
* [Adafruit](https://www.adafruit.com/product/5128)

View file

@ -1,41 +0,0 @@
---
layout: download
board_id: "adafruit_qt2040_trinkey"
title: "Trinkey QT2040 Download"
name: "Trinkey QT2040"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/5056"
board_image: "adafruit_qt2040_trinkey.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
date_added: 2021-12-6
features:
- STEMMA QT/QWIIC
---
It's half USB Key, half Adafruit QT Py, and a lotta RP2040*...*it's **Trinkey QT2040**, the circuit board with an RP2040 heart and Stemma QT legs. Folks are loving the [QT Py 2040](https://www.adafruit.com/product/4900) we made, but maybe you want something plug-and-play. So we thought, hey what if we made something like that plugs right into your computer's USB port? And this is what we came up with!
The PCB is designed to slip into any USB A port on a computer or laptop. There's an RP2040 microcontroller on board with just enough circuitry to keep it happy. There's an RGB NeoPixel, a reset and bootloader or user button and a STEMMA QT Port on the end. That's it!
With the body of the board being 1.0" x 0.7" and four mounting holes, you can attach just about any of our QT boards right on (some are a little larger so just check that has the holes in the same locations). [Use M2.5 sized standoffs and screws](https://www.adafruit.com/product/3658) to do so, you could use 2 diagonal at a minimum. Then use a [shorty QT cable](https://www.adafruit.com/product/4399) and you've got a custom sensor Trinkey for any sensor purpose.
The board comes with 8 MB of QSPI flash memory so you can put *all* of our CircuitPython drivers on the disk!
## Technical details
* Main body is same size/mounting holes as most of our Stemma QT boards (1.0" x 0.7" with M2.5 holes)
* USB Type A connector with extra-thick PCB to fit into a USB host port
* RP2040 32-bit Cortex M0+ dual-core running at ~125 MHz @ 3.3 V logic and power
* 264 KB RAM
* 8 MB SPI FLASH chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
* Native USB supported by every OS - can be used as USB serial console, MIDI, Keyboard/Mouse HID, even a little disk drive for storing Python scripts.
* Built-in RGB NeoPixel LED
* STEMMA QT/Qwiic port for I2C connectivity
* 3.3 V regulator with 600 mA peak output
* 12 MHz crystal
* Both Reset button and Bootloader select buttons for quick restarts (no unplugging-replugging to relaunch code)
* Bootloader button can also be safely used in 'user' code
## Purchase
* [Adafruit](https://www.adafruit.com/product/5056)

View file

@ -1,59 +0,0 @@
---
layout: download
board_id: "adafruit_qtpy_rp2040"
title: "QT Py RP2040 Download"
name: "QT Py RP2040"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4900"
board_image: "adafruit_qtpy_rp2040.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
date_added: 2021-12-6
features:
- STEMMA QT/QWIIC
---
What a cutie pie! Or is it... a QT Py? This diminutive dev board comes with one of our new favorite chip, the RP2040. It's been made famous in the new [Raspberry Pi Pico](https://www.adafruit.com/pico) *and* our [Feather RP2040](http://www.adafruit.com/product/4884) and [ItsyBitsy RP2040](http://www.adafruit.com/product/4888), but what if we wanted something really *smol?*
A new chip means a new QT Py, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the cuuutie QT Py Treatment", and so we did! This QT Py features the RP2040, [and all niceties you know and love about the original QT Py](https://www.adafruit.com/category/4600)
The star of the QT Py is [our favorite connector - the STEMMA QT](http://adafruit.com/stemma), a chainable I2C port that can be used with [any of our STEMMA QT sensors and accessories](https://www.adafruit.com/category/620). Having this connector means you don't need to do any soldering to get started.
What can you pop into the QT port? How about [OLEDs](https://www.adafruit.com/?q=qt+oled&main_page=category&cPath=1005&sort=BestMatch)! [Inertial Measurment Units](https://www.adafruit.com/?q=qt+imu&main_page=category&cPath=1005&sort=BestMatch)! [Sensors a-plenty](https://www.adafruit.com/?q=qt+sensor&main_page=category&cPath=1005&sort=BestMatch). All plug-and-play thanks to the innovative chainable design: [SparkFun Qwiic](https://www.sparkfun.com/qwiic)-compatible [STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connectors for the I2C bus so you don't even need to solder. Just plug in a compatible cable and attach it to your MCU of choice, and youre ready to load up some software and measure some light.
Use any [SparkFun Qwiic](http://www.sparkfun.com/qwiic) boards! [Seeed Grove I2C boards](https://www.adafruit.com/product/4528) will also work with this adapter cable.
**At the time of launch, there is no Arduino core support for the chip on this board. There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/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.
Pinout and shape is [Seeed Xiao](https://wiki.seeedstudio.com/Seeeduino-XIAO/) compatible, with castellated pads so you can solder it to a PCB with a cut out to allow the bottom components some breathing room. In addition to the QT connector, we also added an **RGB NeoPixel** (with a controllable power pin to allow for ultra-low-power usage), **and both boot-mode and reset buttons** (great for restarting your program or entering the bootloader). This QT Py comes with loose 0.1" headers you can solder in for breadboard use.
While the RP2040 has lots of onboard RAM (264 KB), it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. On this board there is 4MB, 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 3 MB remaining for code, files, images, fonts, etc.
- Same size, form-factor, and pin-out as [our SAMD-based QT Py](https://www.adafruit.com/product/4600)
- **USB-C connector** - [If you have only Micro B cables, this adapter will come in handy](https://www.adafruit.com/product/4299)!
- **RP2040 32-bit Cortex M0+** dual-core running at ~125 MHz @ 3.3 V logic and power
- 264 KB RAM
- **8 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
- Native USB supported by every OS - can be used in Arduino or CircuitPython as USB serial console, MIDI, Keyboard/Mouse HID, even a little disk drive for storing Python scripts.
- Can be used with **Arduino IDE** or **CircuitPython**
- **Built-in RGB NeoPixel LED**
- 13 GPIO pins (11 breakout pads and two QT pads):
- **Four** 12 bit ADCs (one more than Pico)
- Two I2C ports (one on the QT connector, one on the breakout pads)
- SPI and UART peripherals, in standard QT Py locations,
- PWM outputs on every IO pin - for servos, LEDs, etc
- There are 6 GPIO in consecutive order for PIO compatibility
- 3.3 V regulator with [**600 mA peak output**](https://www.diodes.com/assets/Datasheets/AP2112.pdf)
- **Both Reset button and Bootloader select buttons** for quick restarts (no unplugging-replugging to relaunch code)
- **Really really small**
**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 BOOT 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!
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 create *custom hardware logic and data processing blocks* that 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 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](https://github.com/raspberrypi/pico-examples/tree/master/pio)! 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.
## Purchase
* [Adafruit](https://www.adafruit.com/product/4900)

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "avnet_iiot_gateway"
title: "SmartEdge Industrial IOT Gateway Download"
name: "SmartEdge Industrial IOT Gateway"
manufacturer: "Avnet, Inc."
board_url: "https://www.avnet.com/wps/portal/us/solutions/iot/products/gateways/"
board_image: "avnet_iiot_gateway.jpg"
downloads_display: true
blinka: true
date_added: 2020-5-15
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
Gateways can be as varied as the devices they help connect, with each gateway needing different protocols, connection methodologies and energy requirements to bring together the myriad of distributed parts that make up the IoT whole. Gateways serve critical functions such as data filtering and security and up to application code. Whether an app on a mobile device, a demo board, or even a connected sensor, gateways are critical to the functioning of the IoT—and Avnets deep hardware experience help connect your solutions to the cloud smartly and with security in mind.
SmartEdge Industrial IoT Gateway, powered by Raspberry Pi, helps simplify and accelerate adoption of IIoT applications. The gateway provides versatile connectivity with data intelligence for a wide range of industrial 4.0 applications.
Empower analytics at the edge of your IoT network with the intelligent Dell Edge Gateway for richer business insights. An edge gateway connects varied wired and wireless devices and systems, aggregates and analyzes the input, and sends it on. Because the gateway sits close to your devices and sensors, it sends only meaningful data to the cloud or control center, saving you expensive bandwidth.
* Broadcom BCM2837 SoC, 64-bit, Quad-core ARM Cortex-A53 processor running up to 900 MHz + 1GB LPDDR2 SDRAM for data
* Robust program storage with 8GB eMMC Flash pre-programmed with a secure boot version of the Raspbian Linux OS
* On-Board Trusted Platform Module TPM 2.0 module for comprehensive end-to-end security
* HDMI output for driving a display with outstanding 1080p video processing
* Same Raspberry Pi 40-pin GPIO header compatible with your favorite for HATs
* WiFi 2.4GHz and Bluetooth (BLE) 4.2 wireless connectivity with internal antennas
* Dual USB 2.0 Ports, Dual 10/100 Ethernet ports and mPCIe slot for a cellular card
* Terminal blocks for Isolated RS-232/485/Modbus, CAN, Digital I/O and 12 to 24VDC power
* On-Board battery backed real-time clock (RTC) and watchdog timer
* Can be mounted on DIN rail, direct on wall/panel, or free standing
## Purchase
* [Newark](https://www.newark.com/avnet/avtse-rpi-iiotg/smartedge-industrial-iot-gateway/dp/02AH6799)

View file

@ -1,40 +0,0 @@
---
layout: download
board_id: "banana_pi_bpi_m2_plus"
title: "Banana Pi BPI-M2+ Download"
name: "Banana Pi BPI-M2+"
manufacturer: "SinoVoip"
board_url: "https://wiki.banana-pi.org/Banana_Pi_BPI-M2%2B"
board_image: "banana_pi_bpi_m2_plus.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2022-10-17
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- 40-pin GPIO
- Ethernet
- Infrared Receiver
---
Banana PI BPI-M2+ is the open source hardware platform, use Alliwnner H3 (option H2+ chip and H5 chip ) chip on board. and mini size only 65mm*65mm,
PBI-M2 hardware: 1Ghz ARM7 quad-core processor, 1GB DDR3 SDRAM, 8G eMMC flash on board,and SDIO wifi&BT 4.0 moodule on board.Gigabit ethrnet.
BPI-M2+ series run Android,Debian linux,Ubuntu linux, Raspberry Pi image and others image. Banana PI,it can easily run with the game it support 1080P high definition video output and 4K support, the GPIO compatible with Raspberry Pi B+ .
Banana Pi BPI-M2+ not support sata port, so you need use USB for hardisk
- Allwinner H3 Quad-core 1.2GHz Cortex-A7 (option H2+ H5).
- 1GB DDR3
- 8GB eMMC onboard
- HDMI out
- WiFi and BlueTooth onboard
- 10/100/1000Mbps Ethernet Port
- CSI camera interface
## Purchase
* [Aliexpress](https://www.aliexpress.us/item/2252799815676798.html)
* [Amazon](https://amzn.to/3CFghTl)

View file

@ -1,37 +0,0 @@
---
layout: download
board_id: "banana_pi_bpi_m2_zero"
title: "Banana Pi BPI-M2 Zero Download"
name: "Banana Pi BPI-M2 Zero"
manufacturer: "SinoVoip"
board_url: "https://wiki.banana-pi.org/Banana_Pi_BPI-M2_ZERO"
board_image: "banana_pi_m2_zero.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-10-31
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- 40-pin GPIO
---
The Banana Pi M2 Zero is an ultra compact single board computer which measures only 60mm*30mm. Its external interfaces are the same as the Raspberry Pi Zero W, and it will fit almost all cases and accessories for the Zero W. It uses the quad-core Cortex A7 Allwinner H2+ processor, with 512MB RAM. It's ideal for light-weight systems and space-limited applications. Like other members of the Banana Pi family, it supports both Linux and Android operating systems.
- H2+ Quad-core Cortex-A7
- Mali 400 MP2
- 512M DDR3
- MicroSD slot
- Wi-Fi 802.11 b/g/n
- Bluetooth 4.0
- Mini HDMI
- 1 x USB 2.0 OTG
- GPIO (x28)
- Power (+5V, +3.3V and GND)
- UART, I2C, SPI or PWM
- 65mm × 30mm, 15g
- Android and Linux
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/33038926185.html)

View file

@ -1,39 +0,0 @@
---
layout: download
board_id: "banana_pi_bpi_m5"
title: "Banana Pi BPI-M5 Download"
name: "Banana Pi BPI-M5"
manufacturer: "SinoVoip"
board_url: "https://www.banana-pi.org/en/banana-pi-sbcs/55.html"
board_image: "banana_pi_bpi_m5.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2022-7-22
features:
- HDMI/DisplayPort
- 40-pin GPIO
- USB 3.0
- Infrared Receiver
---
Banana Pi BPI-M5 is the next generation single board computer from Banana Pi in 2020. It is powered by Amlogic S905X3 quad-core Cortex-A55 (2.0 XXGHz) processor.Onboard 4GB LPDDR4 memory and 16GB EMMC storage, and supports 4 USB 3.0 interface, a gigabit network port.
- CPU: Amlogic S905X3 Quad-Core Cortex-A55 (2.0xxGHz)
- GPU: Mali-G31 MP2 GPU with 4 x Execution Engines (650Mhz)
- Memory : 4 GB LPDDR4
- Storage : MicroSD slot with support for up to 256GB expansion and 16G eMMC flash with support for up to 64GB
- Network : 10/100/1000 Mbit/s Ethernet ,Optional WiFi USB dongle
- Video Output(s): 1 x HDMI 2.1 (up to 4K@60Hz with HDR, CEC, EDID)
- Audio Output(s): 3.5mm jack and 1 x HDMI digital output
- USB ports: USB 3.0 PORT (x4)
- GPIO: 40 Pin Header : GPIO (x28) and Power (+5V, +3.3V and GND). GPIO pins can be used for UART, I2C, SPI or PWM
- Switches: Reset, Power and U-boot
- LED: Power Status and Activity status
- Power Source: 5 volt @3A via Micro USB (TYPE C)
- Size & Weight : 92x60mm, 48g
- OS : Android and Linux
## Purchase
* [Amazon](https://amzn.to/3CpbK8X)
* [Aliexpress](https://www.aliexpress.com/item/3256801685527943.html)

View file

@ -1,26 +0,0 @@
---
layout: download
board_id: "beaglebone"
title: "BeagleBone Download"
name: "BeagleBone"
manufacturer: "BeagleBoard"
board_url: "https://beagleboard.org/bone-original"
board_image: "beaglebone.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2021-4-6
features:
- Ethernet
---
BeagleBone is an $89 MSRP, credit-card-sized Linux computer that connects to the Internet and runs software such as Android 4.0 and Ubuntu. With plenty of I/O and processing power for real-time analysis provided by an AM335x 720MHz ARM® processor, BeagleBone can be complemented with cape plug-in boards to augment functionality.
- 256MB DDR2 RAM
- 3D graphics accelerator
- ARM Cortex-M3 for power management
- 2x PRU 32-bit RISC CPUs
- USB client: power, debug and device
- USB host
- Ethernet
- 2x 46 pin headers

View file

@ -1,39 +0,0 @@
---
layout: download
board_id: "beaglebone_ai"
title: "BeagleBone AI Download"
name: "BeagleBone AI"
manufacturer: "BeagleBoard"
board_url: "https://beagleboard.org/ai"
board_image: "beaglebone_ai.jpg"
downloads_display: true
blinka: true
date_added: 2021-1-20
features:
- Ethernet
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
---
Built on the proven BeagleBoard.org® open source Linux approach, BeagleBone® AI fills the gap between small SBCs and more powerful industrial computers. Based on the Texas Instruments AM5729, developers have access to the powerful SoC with the ease of BeagleBone® Black header and mechanical compatibility. BeagleBone® AI makes it easy to explore how artificial intelligence (AI) can be used in everyday life via the TI C66x digital-signal-processor (DSP) cores and embedded-vision-engine (EVE) cores supported through an optimized TIDL machine learning OpenCL API with pre-installed tools. Focused on everyday automation in industrial, commercial and home applications.
- Processor: Sitara AM5729
- Dual Arm® Cortex®-A15 microprocessor subsystem
- 2 C66x floating-point VLIW DSPs
- 2.5MB of on-chip L3 RAM
- 2x dual Arm® Cortex®-M4 co-processors
- 4x Embedded Vision Engines (EVEs)
- 2x dual-core Programmable Real-Time Unit and Industrial Communication SubSystem (PRU-ICSS)
- 2D-graphics accelerator (BB2D) subsystem
- Dual-core PowerVR® SGX544™ 3D GPU
- IVA-HD subsystem (4K @ 15fps encode and decode support for H.264, 1080p60 for others)
- BeagleBone Black mechanical and header compatibility
- 1GB RAM and 16GB on-board eMMC flash with high-speed interface
- USB type-C for power and superspeed dual-role controller; and USB type-A host
- Gigabit Ethernet, 2.4/5GHz WiFi, and Bluetooth
- microHDMI
- Zero-download out-of-box software experience with Debian GNU/Linux
## Purchase
* [DigiKey](https://www.digikey.com/en/products/detail/beagleboard-org/BBONE-AI/10671097)

View file

@ -1,50 +0,0 @@
---
layout: download
board_id: "beaglebone_black"
title: "BeagleBone Black Download"
name: "BeagleBone Black"
manufacturer: "BeagleBoard"
board_url: "https://beagleboard.org/black"
board_image: "beaglebone_black.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- HDMI/DisplayPort
---
If you liked the BeagleBone Black Rev B, you will love the Rev C! The Rev C has a blistering 1GHz AM3358 processor and 512MB onboard DDR3 RAM, two 46-pin headers, micro HDMI for audio/video output, USB ports, 10/100 Ethernet and other I/O features. The Rev C is an ultra-powered embedded computer that can fit in a mint tin.
This model includes 4GB of eMMC built-in storage instead of the Rev B's 2GB. With the doubled storage and faster eMMC, the developers were able to make the Rev C's most significant change: shipping the BeagleBone Black with Debian Linux pre-loaded on the board's flash instead of Angstrom Linux. Debian Linux is a more user-friendly operating system than Angstrom and the switch to Debian is partly the result of consumer demand (especially from Adafruit users, thanks!)
Of course the BeagleBone Black Rev C is an open board so if you want to load it back up with Angstrom or other Linux-based distributions like Ubuntu or Android, you can.
The rev C comes with a mini-B cable for powering it up ASAP. No microSD card is included as the BBB has onboard flash storage - and no SD card loading is required to get started. Please note the PCB may say rev B, that's normal! The rev C has more memory which did not affect the PCB revision code.
- Processor: Sitara AM3358BZCZ100 1GHz, 2000 MIPS
- Graphics Engine: SGX530 3D, 20M Polygons/S
- SDRAM Memory: 512MB DDR3L 606MHZ
- Onboard Flash: 4GB, 8bit Embedded MMC
- PMIC: TPS65217C PMIC regulator and one additional LDO.
- Debug Support: Optional Onboard 20-pin CTI JTAG, Serial Header
- Power Source: miniUSB USB or DC Jack, 5VDC External Via Expansion Header
- PCB: 86.44mm x 54.54mm / 3.4” x 2.15” 6 layers
- 88.98mm x 54.54mm x 15.41mm / 3.5" x 2.15" x 0.6"
- Indicators 1-Power, 2-Ethernet, 4-User Controllable LEDs
- HiSpeed USB 2.0 Client Port: Access to USB0, Client mode via miniUSB
- HiSpeed USB 2.0 Host Port Access to USB1, Type A Socket, 500mA LS/FS/HS
- Serial Port UART0 access via 6 pin 3.3V TTL Header. Header is populated
- Ethernet 10/100, RJ45
- SD/MMC Connector microSD , 3.3V
- User Input: Reset Button, Boot Button, Power Button
- Video Out: 16b HDMI, 1280x1024 (MAX), 1024x768,1280x720,1440x900 w/EDID Support
- Audio Via HDMI Interface, Stereo
- Expansion Connectors:
- Power 5V, 3.3V , VDD_ADC(1.8V)
- 3.3V I/O on all signals
- McASP0, SPI1, I2C, GPIO(65), LCD, GPMC, MMC1, MMC2, 7 AIN(1.8V MAX), 4 Timers, 3 Serial Ports, CAN0, EHRPWM(0,2),XDMA Interrupt, Power button, Expansion Board ID (Up to 4 can be stacked)
- Weight 40.55g / 1.43oz
## Purchase
* [Adafruit](https://www.adafruit.com/product/1996)

View file

@ -1,36 +0,0 @@
---
layout: download
board_id: "beaglebone_black_industrial"
title: "BeagleBone Black Industrial Download"
name: "BeagleBone Black Industrial"
manufacturer: "Element14"
board_url: "https://beagleboard.org/e14-bbbi"
board_image: "beaglebone_black_industrial.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- HDMI/DisplayPort
---
The element14 BeagleBone Black Industrial (BBONE-BLACK-IND-4G) is a low cost, high-expansion focused BeagleBoard using a low cost industrial temperature grade Sitara™ AM3358 ARM® Cortex™-A8 processor from Texas Instruments. BBONE-BLACK-IND-4G ships with the Debian Linux distribution preinstalled on the onboard FLASH, ready to start evaluation and development.
- Processor: TI Sitara AM3358BZCZA100, 1GHz, 2000 MIPS 1 GHz ARM®Cortex™-A8
- SGX530 Graphics Engine
- Programmable Real-Time Unit Subsystem
- Operating temperature can span from -40C to +85C
- Memory SDRAM: 512MB DDR3L 800MHZ
- Onboard Flash: 4GB, 8bit Embedded MMC (eMMC)
- SD/MMC Connector for microSD
- Power management:TPS65217C PMIC is used along with a separate LDO to provide power to the system
- Debug Support: Optional Onboard 20-pin CTI JTAG, Serial Header
- Power Source miniUSB USB or DC Jack
- 5VDC External Via Expansion Header
- Connectivity High speed USB 2.0 Client port: Access to USB0, Client mode via miniUSB
- User Input / Output Reset Button
- Video/Audio Interfaces HDMI D type interface
- Expansion Interfaces LCD, UART, eMMC
## Purchase
* [Newark](https://www.newark.com/element14/bbone-black-ind-4g/beaglebone-black-industrial/dp/76Y2810)

View file

@ -1,34 +0,0 @@
---
layout: download
board_id: "beaglebone_black_wireless"
title: "BeagleBone Black Wireless Download"
name: "BeagleBone Black Wireless"
manufacturer: "BeagleBoard"
board_url: "https://beagleboard.org/black-wireless"
board_image: "beaglebone_black_wireless.jpg"
downloads_display: true
blinka: true
date_added: 2020-3-25
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
---
Replacing the 10/100 Ethernet port with onboard 802.11 b/g/n 2.4GHz WiFi and Bluetooth, the popular open source BeagleBone® Black computer now comes with built-in wireless networking capability. Leveraging a partnership with Octavo Systems and designed in CadSoft Eagle, BeagleBone® Black Wireless is the easiest to use and modify credit-card sized IoT Linux computer available.
- Processor: Octavo Systems OSD3358 1GHz ARM Cortex-A8
- 512MB DDR3 RAM
- 4GB 8-bit eMMC on-board flash storage
- 3D graphics accelerator
- NEON floating-point accelerator
- 2x PRU 32-bit microcontrollers
- USB client for power & communications
- USB host
- 802.11b/g/n and Bluetooth 4.1 plus BLE
- HDMI
- 2x 46 pin headers
## Purchase
* [Digi-Key](https://www.digikey.com/products/en?lang=en&site=us&KeyWords=BBBWL-SC-562-ND)
* [Arrow](https://www.arrow.com/en/products/bbwireless/beagleboardorg)

View file

@ -1,43 +0,0 @@
---
layout: download
board_id: "beaglebone_green_gateway"
title: "BeagleBone Green Gateway Download"
name: "BeagleBone Green Gateway"
manufacturer: "SeeedStudio"
board_url: "https://beagleboard.org/green-wireless"
board_image: "beaglebone_green_gateway.jpg"
downloads_display: true
blinka: true
date_added: 2020-11-1
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
---
Seeed Studio BeagleBone® Green Gateway is a low cost, open-source, community supported development platform for developers and hobbyists. It is a joint effort by BeagleBoard.org and Seeed Studio. It is based on the classical open-source hardware design of BeagleBone® Black and developed into this differentiated version. The Seeed Studio BeagleBone® Green Gateway includes two Grove connectors, making it easier to connect to the large family of Grove sensors. The on-board HDMI and Ethernet are removed to make room for these wireless features and Grove connectors.
The Seeed Studio BeagleBone® Green Gateway is a combination of Seeed Studio BeagleBone® Green and Seeed Studio BeagleBone® Green Wireless, equipped with both Ethernet and Wireless connectivity.
Boot Linux in less 10 seconds and get started on development in less than 5 minutes with just a single USB cable.
- Fully Compatible with BeagleBone® Black and Seeed Studio BeagleBone® Green
- Processor: AM3358 1GHz ARM® Cortex-A8
- 2×32-bit 200-MHz programmable real-time units (PRUs)
- 512MB DDR3 RAM
- 4KB EEPROM
- 4GB 8-bit eMMC on-board flash storage
- 3D graphics accelerator
- NEON floating-point accelerator
- Ethernet 10/100M bit
- WiFi 802.11 b/g/n 2.4GHz
- USB client for power & communications
- USB host
- SD/MMC Connector for microSD
- Bluetooth 4.1 with BLE
- 2x 46 pin headers
- 2x Grove connectors (I2C and UART)
- DC Jack for power, 12V
## Purchase
* [SeeedStudio](https://www.seeedstudio.com/SeeedStudio-BeagleBone-Green-Gateway-p-4586.html)

View file

@ -1,42 +0,0 @@
---
layout: download
board_id: "beaglebone_green_wireless"
title: "BeagleBone Green Wireless Download"
name: "BeagleBone Green Wireless"
manufacturer: "SeeedStudio"
board_url: "https://beagleboard.org/green-wireless"
board_image: "beaglebone_green_wireless.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Wi-Fi
---
SeeedStudio BeagleBone Green Wireless (BBGW) is a joint effort by BeagleBoard.org and Seeed Studio. It is based on the open-source hardware design of BeagleBone Black and developed into this differentiated version. SeeedStudio BeagleBone Green Wireless has included a high-performance flexible WiFi/Bluetooth interface and two Grove connectors, making it easier to connect to the large family of Grove sensors. The on-board HDMI and Ethernet are removed to make room for these wireless features and Grove connectors.
- Processor: Sitara AM3358BZCZ100 1GHz, 2000 MIPS
- Graphics Engine: SGX530 3D, 20M Polygons/S
- SDRAM Memory: 512MB DDR3L 606MHZ
- Onboard Flash: 4GB, 8bit Embedded MMC
- PMIC: TPS65217C PMIC regulator and one additional LDO.
- Debug Support: Optional Onboard 20-pin CTI JTAG, Serial Header
- Power Source: miniUSB USB or DC Jack, 5VDC External Via Expansion Header
- PCB: 86.44mm x 54.54mm / 3.4” x 2.15” 6 layers
- 88.98mm x 54.54mm x 15.41mm / 3.5" x 2.15" x 0.6"
- Indicators 1-Power, 2-Ethernet, 4-User Controllable LEDs
- 4x USB2.0 host
- Serial Port UART0 access via 6 pin 3.3V TTL Header. Header is populated
- Wi-Fi 802.11b/g/n 2.4GHz and Bluetooth 4.1 LE
- SD/MMC Connector microSD , 3.3V
- User Input: Reset Button, Boot Button, Power Button
- Video Out: 16b HDMI, 1280x1024 (MAX), 1024x768,1280x720,1440x900 w/EDID Support
- Audio Via HDMI Interface, Stereo
- Expansion Connectors:
- Power 5V, 3.3V , VDD_ADC(1.8V)
- 3.3V I/O on all signals
- McASP0, SPI1, I2C, GPIO(65), LCD, GPMC, MMC1, MMC2, 7 AIN(1.8V MAX), 4 Timers, 3 Serial Ports, CAN0, EHRPWM(0,2),XDMA Interrupt, Power button, Expansion Board ID (Up to 4 can be stacked)
- Weight 40.55g / 1.43oz
## Purchase
* [SeeedStudio](https://www.seeedstudio.com/BeagleBone-Green-Wireless-Development-Board-TI-AM335x-WiFi-BT.html)

View file

@ -1,27 +0,0 @@
---
layout: download
board_id: "beaglev_starlight"
title: "BeagleV Starlight Beta Prototype Download"
name: "BeagleV Starlight Beta Prototype"
manufacturer: "BeagleV"
board_url: "https://github.com/beagleboard/beaglev-starlight#readme"
board_image: "beaglev_starlight.jpg"
downloads_display: true
blinka: true
date_added: 2021-7-17
features:
- Ethernet
- HDMI/DisplayPort
- USB 3.0
- 40-pin GPIO
---
**The BeagleV™ - Starlight project has concluded and no units beyond the beta prototypes will be produced. This design was never sold as a product.**
[BeagleV Starlight](https://beagleboard.org/beaglev) is a Linux-capable RISC-V 64-bit dev board.
A [beta prototype version](https://wiki.seeedstudio.com/BeagleV-Getting-Started/#faq) was sent to a limited number of upstream developers for software enablement. This beta prototype used the StarFive JH7100 SoC.
## Learn More
* [GitHub](https://github.com/beagleboard/beaglev-starlight#readme)

View file

@ -1,39 +0,0 @@
---
layout: download
board_id: "binho_nova"
title: "Nova"
name: "Nova"
manufacturer: "Binho"
board_url: "https://binho.io/"
board_image: "binho_nova.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
---
The Binho Nova brings Multi-Protocol USB Host Adapters into the 21st Century. No more fumbling through development with cumbersome, clunky, out-dated adapters. Let your productivity soar to new heights!
With support for I2C, SPI, UART, 1-WIRE, SWI protocols all in one slim, robust package, it may even be the last adapter youll ever need...
With an intuitive user interface, our software is the quickest, simplest way to get up and running with your new Binho Nova. Whether you're working in a Windows, Linux, or macOS environment, our cross-platform solution has you covered. Alpha build available now with I2C, SPI, and IO functionality.
- Support for SPI @ 12MHz max clock
- Support for I2C @ 3.4MHz max clock
- Support for UART @ 1000000 max baud
- Support for Dallas 1-Wire
- Support for Atmel Single-Wire Interface
- Provides 3v3 and VUSB power rails
- 1 x DAC Output, 5 x ADC Inputs
- GPIO / Interrupt / PWM Support
- Programmable RGB Status LED
- Field-Upgradeable Device Firmware
- Cross-platform Support for Windows,
Mac, Linux
- Robust, low-profile Aluminum
Enclosure
- USB Type-C Connector
## Purchase
* [Adafruit](https://www.adafruit.com/product/4459)
* [Binho](https://binho.io/)

View file

@ -1,22 +0,0 @@
---
layout: download
board_id: "clara_agx_xavier"
title: "Clara AGX Xavier Download"
name: "Clara AGX Xavier"
manufacturer: "NVIDIA"
board_url: "https://developer.nvidia.com/clara-agx-devkit"
board_image: "clara_agx_xavier.jpg"
downloads_display: true
blinka: true
date_added: 2020-10-6
features:
---
The NVIDIA Clara AGX™ developer kit delivers real-time AI and imaging for medical devices. By combining low-powered, NVIDIA Xavier SOC (system on a chip) and RTX GPUs with the NVIDIA Clara AGX SDK and the NVIDIA EGX stack, its easy to securely provision and remotely manage fleets of distributed medical instruments.
The NVIDIA Clara AGX™ developer kit is an embedded AI computer and software development framework for medical devices that need the ability to perform real-time AI and advanced image, video, and signal processing. Powered by ARM-based NVIDIA Xavier™ along with RTX GPUs and running the NVIDIA EGX software stack, Clara AGX securely manages and orchestrates AI application deployments to fleets of medical devices or edge nodes.
## Learn More
* [NVIDIA](https://developer.nvidia.com/clara-agx-devkit)

View file

@ -1,31 +0,0 @@
---
layout: download
board_id: "clockworkpi"
title: "ClockworkPi Download"
name: "ClockworkPi"
manufacturer: "Clockwork Tech LLC"
board_url: "https://www.clockworkpi.com/product-page/cpi-v3-1"
board_image: "clockworkpi.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-4-16
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
---
New clockworkPi v3.1 development board:
* Allwinner R16-J Quad-core Cortex-A7 CPU @1.2GHz
* Mali-400 MP2 GPU
* 1GB DDR3 memory
* WI-FI 802.11b/g/n & Bluetooth v4.0
* Micro HDMI output (720P)
* Micro SD card slot (Support up to 128GB)
* PMU (Power Management Unit)
* USB OTG supported
* Ultra-small size (67.6 * 47.6 * 6.8mm)
## Purchase
* [ClockworkPi](https://www.clockworkpi.com/product-page/cpi-v3-1)

View file

@ -1,27 +0,0 @@
---
layout: download
board_id: "diodes_delight_piunora"
title: "Piunora Download"
name: "Piunora"
manufacturer: "Diodes Delight"
board_url: "https://www.crowdsupply.com/diodes-delight/piunora"
board_image: "diodes_delight_piunora.jpg"
download_instructions:
downloads_display: true
blinka: true
date_added: 2021-12-6
features:
- HDMI/DisplayPort
- Wi-Fi
- Bluetooth/BLE
- STEMMA QT/QWIIC
---
Piunora is a compact, easy-to-use development board for electronics prototyping with Linux. It has a familiar form factor, legible pin labels, and a design thats well suited to space-constrained applications.
As a carrier board for the [Raspberry Pi Compute Module 4](https://www.raspberrypi.org/products/compute-module-4/?variant=raspberry-pi-cm4001000) (CM4), Piunora is essentially a tiny version of the Raspberry Pi 4 Single Board Computer (SBC) with added flexibility to accommodate custom form factors. CM4-based devices like Piunora are fully compatible with software that was written for the Raspberry Pi 4, as long as that software accounts for the hardware peripherals in use. There are also versions of the CM4 that include eMMC memory, which is more reliable than a traditional SD card.
It may be small, but Piunora is packed with powerful peripherals that will come in handy for rapid prototyping and embedded machine-learning applications. Examples include an HDMI port, camera-input connectors, and PCI-e support, which is not present on a standard Raspberry Pi 4. Finally, the M.2 B-Key port on the rear of the board is not only useful for SSD storage, it can also host a diverse range of PCI-e expansion boards.
## Purchase
* [Crowd Supply](https://www.crowdsupply.com/diodes-delight/piunora)

View file

@ -9,10 +9,9 @@ board_image: "dragonboard_410c.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-linux-and-the-96boards-dragonboard-410c"
downloads_display: true
blinka: true
date_added: 2019-6-29
features:
- Wi-Fi
- HDMI/DisplayPort
- WiFi
- HDMI
- 40-pin GPIO
- GPS
---
@ -52,3 +51,7 @@ This DragonBoard™ 410c based on 96Boards™ specification features the Qualcom
## Purchase
* [Arrow Electronics](https://www.arrow.com/en/products/dragonboard410c/arrow-development-tools)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,23 +0,0 @@
---
layout: download
board_id: "ft232h"
title: "FT232H Download"
name: "FT232H"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/2264"
board_image: "ft232h.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-any-computer-with-ft232h"
downloads_display: true
date_added: 2019-9-30
blinka: true
features:
---
Wouldn't it be cool to drive a tiny OLED display, read a color sensor, or even just flash some LEDs directly from your computer? Sure you can program an Arduino or Trinket to talk to these devices and your computer, but why can't your computer just talk to those devices and sensors itself? Well, now your computer can talk to devices using the Adafruit FT232H breakout board!
What can the FT232H chip do? This chip from FTDI is similar to their USB to serial converter chips but adds a 'multi-protocol synchronous serial engine' which allows it to speak many common protocols like SPI, I2C, serial UART, JTAG, and more! There's even a handful of digital GPIO pins that you can read and write to do things like flash LEDs, read switches or buttons, and more. The FT232H breakout is like adding a little swiss army knife for serial protocols to your computer!
This chip is powerful and useful to have when you want to use Python (for example) to quickly iterate and test a device that uses I2C, SPI or plain general purpose I/O. There's no firmware to deal with, so you don't have to deal with how to "send data to and from an Arduino which is then sent to and from" an electronic sensor or display or part.
## Purchase
* [Adafruit](https://www.adafruit.com/product/2264)

View file

@ -1,35 +0,0 @@
---
layout: download
board_id: "giant_board"
title: "Giant Board"
name: "Giant Board"
manufacturer: "Groboards"
board_url: "https://www.crowdsupply.com/groboards/giant-board"
board_image: "giant_board.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Feather-Compatible
---
The Giant Board is a super tiny single-board computer (SBC) based on the Adafruit Feather form factor. We always want more power in a smaller package, and the Giant Board delivers! It provides a small, powerful platform that is compatible with a wide range of pre-existing accessories. FeatherWing support makes the Giant Board a flexible, drop-in component for most Feather based projects.
We all love our microcontrollers, but in some cases they just don't have the resources we need to carry out the projects we have in mind. By squeezing the power of an SBC into a package the size of a microcontroller board, the Giant Board relaxes memory, storage, and processing constraints and allows you to take your projects to the next level.
The Giant Board fills the gap between microcontrollers and other single-board computers. It makes a great alternative to a Raspberry Pi or BeagleBone in a space constrained project where you need more power than a typical microcontroller can provide. The Giant Board is based on a form factor that is traditionally used for microcontrollers, so power consumption is important, which is why the Giant Board offers low-power modes.
To leverage all that powerful hardware, the Giant Board runs Linux. Not just any Linux, but full Debian Linux! This gives developers and users access to an endless number of applications and libraries for their projects.
- Processor: Microchip SAMA5D2 ARM® Cortex®-A5 Processor 500 MHz
- Memory: 128 MB DDR2 RAM
- Storage: microSD card
- Sensing: 6 x 12-bit ADC with 3.3 V reference and external trigger
- Actuation: 4 x 16-bit PWM with external trigger
- Connectivity: 1 x I²C, 1 x SPI, 1 x UART, more with Flexcom
- Power: via USB, with support for LiPo batteries
- Operating System: mainline Linux kernel
## Purchase
* [Crowd Supply](https://www.crowdsupply.com/groboards/giant-board)

View file

@ -9,38 +9,38 @@ board_image: "google_coral.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka"
downloads_display: true
blinka: true
date_added: 2019-5-13
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
A development board to quickly prototype on-device ML products. Scale from prototype to production with a removable system-on-module (SOM).
### Edge TPU Module
Edge TPU Module
- CPU NXP i.MX 8M SOC (quad Cortex-A53, Cortex-M4F)
- GPU Integrated GC7000 Lite Graphics
- ML accelerator Google Edge TPU coprocessor
- RAM 1 GB LPDDR4
- Flash memory 8 GB eMMC
- Wireless Wi-Fi 2x2 MIMO (802.11b/g/n/ac 2.4/5GHz) Bluetooth 4.1
- Dimensions 48mm x 40mm x 5mm
- CPU: NXP i.MX 8M SOC (quad Cortex-A53, Cortex-M4F)
- GPU: Integrated GC7000 Lite Graphics
- ML accelerator: Google Edge TPU coprocessor
- RAM: 1 GB LPDDR4
- Flash memory: 8 GB eMMC
- Wireless: Wi-Fi 2x2 MIMO (802.11b/g/n/ac 2.4/5 GHz) Bluetooth 4.1
- Dimensions: 48 mm x 40 mm x 5 mm
### Baseboard
- Flash memory MicroSD slot
- USB: USB-C OTG, USB-C power, Type-A 3.0 host, Micro-B serial console
- LAN: Gigabit Ethernet port
- Audio: 3.5 mm audio jack (CTIA compliant) Digital PDM microphone (x2) 2.54 mm 4-pin terminal for stereo speakers
- Video: HDMI 2.0a (full size) 39-pin FFC connector for MIPI-DSI display (4-lane) 24-pin FFC connector for MIPI-CSI2 camera (4-lane)
- GPIO: 3.3 V power rail 40 - 255 ohm programmable impedance ~82 mA max current
- Power: 5 V DC (USB-C)
- Dimensions: 88 mm x 60 mm x 24mm
Baseboard
- Flash memory MicroSD slot
- USB Type-C OTG Type-C power Type-A 3.0 host Micro-B serial console
- LAN Gigabit Ethernet port
- Audio 3.5mm audio jack (CTIA compliant) Digital PDM microphone (x2) 2.54mm 4-pin terminal for stereo speakers
- Video HDMI 2.0a (full size) 39-pin FFC connector for MIPI-DSI display (4-lane) 24-pin FFC connector for MIPI-CSI2 camera (4-lane)
- GPIO 3.3V power rail 40 - 255 ohms programmable impedance ~82 mA max current
- Power 5V DC (USB Type-C)
- Dimensions 88 mm x 60 mm x 24mm
## Purchase
* [Google](https://coral.withgoogle.com/products/dev-board)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,35 +0,0 @@
---
layout: download
board_id: "google_coral_mini"
title: "Google Coral Dev Board Mini"
name: "Google Coral Dev Board Mini"
manufacturer: "Google"
board_url: "https://coral.ai/products/dev-board-mini/"
board_image: "google_coral_mini.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka"
downloads_display: true
blinka: true
date_added: 2020-12-7
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- 40-pin GPIO
---
The Coral Dev Board Mini is a single-board computer that provides fast machine learning (ML) inferencing in a small form factor. It's primarily designed as an evaluation device for the Accelerator Module (a surface-mounted module that provides the Edge TPU), but it's also a fully-functional embedded system you can use for various on-device ML projects.
- CPU MediaTek 8167s SoC (Quad-core Arm Cortex-A35)
- GPU IMG PowerVR GE8300 (integrated in SoC)
- ML accelerator Google Edge TPU coprocessor
- RAM 2 GB LPDDR3
- Flash memory 8 GB eMMC
- Wireless Wi-Fi 5 (802.11a/b/g/n/ac); Bluetooth 5.0
- Audio 3.5mm audio jack; digital PDM microphone; 2.54mm 2-pin speaker terminal;
- Video micro HDMI (1.4); 24-pin FFC connector for MIPI-CSI2 camera (4-lane); 39-pin FFC connector for MIPI-DSI display (4-lane)
- Input/output 3.5mm audio jack; digital PDM microphone; 2.54mm 2-pin speaker terminal; micro HDMI (1.4); 24-pin FFC connector for MIPI-CSI2 camera (4-lane); 39-pin FFC connector for MIPI-DSI display (4-lane)
## Purchase
* [Seeed](https://www.seeedstudio.com/Coral-Dev-Board-Mini-p-4682.html)
* [Mouser](https://www.mouser.com/new/google-coral/coral-dev-board-mini/)
* [Arrow](https://www.arrow.com/en/products/g650-03324-01/google-corporation)

View file

@ -1,37 +0,0 @@
---
layout: download
board_id: "greatfet_one"
title: "GreatFET One Download"
name: "GreatFET One"
manufacturer: "Great Scott Gadgets"
board_url: "https://www.adafruit.com/product/4234"
board_image: "greatfet_one.jpg"
downloads_display: true
blinka: true
date_added: 2020-5-15
features:
- 40-pin GPIO
---
**GreatFET One** from [Great Scott Gadgets](https://greatscottgadgets.com/) is a hardware hackers best friend. At the center is a powerful NXP LPC4330 (Cortex M4 @ 204MHz) with two USB ports, one host and one peripheral, so it can act as a 'man in the middle' for USB interfacing. With an extensible, open source design, two USB ports, and 100 expansion pins, GreatFET One is your essential gadget for hacking, making, and reverse engineering. By adding expansion boards called neighbors, you can turn GreatFET One into a USB peripheral that does almost anything.
Whether you need an interface to an external chip, a logic analyzer, a debugger, or just a whole lot of pins to bit-bang, the versatile GreatFET One is the tool for you. Hi-Speed USB and a Python API allow GreatFET One to become your custom USB interface to the physical world.
* programmable digital I/O
* serial protocols including SPI, I2C, UART, and JTAG
* logic analysis
* analog I/O (ADC/DAC)
* data acquisition
* debugging
* versatile USB functions including FaceDancer
* high-throughput hardware-assisted streaming serial engine
* four fabulous LEDs!
GreatFET One ships in an ESD bag with a high-speed USB cable and a [wiggler](https://greatscottgadgets.com/wiggler) for easy separation of neighbors. Enclosures and neighbors are sold separately.
GreatFET is a next generation [GoodFET](https://www.adafruit.com/product/1279) intended to serve as your custom Hi-Speed USB peripheral through the addition of expansion boards called “neighbors”.
GreatFET is designed to provide a significant step up in capabilities from [GoodFET](http://github.com/travisgoodspeed/goodfet) while making the design manufacturable at a lower cost than GoodFET. In addition to being designed for automated assembly, it can be hand-assembled with a soldering iron, though it is a more complicated assembly than GoodFET. An important similarity to GoodFET is that GreatFET has a USB bootloader in ROM, so it is possible to build a board by hand and install firmware onto it without the need of any external programming hardware.
## Purchase
* [Adafruit](https://www.adafruit.com/product/4234)

View file

@ -1,28 +0,0 @@
---
layout: download
board_id: "hifive_unleashed"
title: "Hifive Unleashed"
name: "Hifive Unleashed"
manufacturer: "Sifive"
board_url: "https://www.crowdsupply.com/sifive/hifive-unleashed"
board_image: "hifive_unleashed.jpg"
downloads_display: true
blinka: true
date_added: 2020-3-25
features:
- Ethernet
---
We founded SiFive to bring the power of open source to the semiconductor industry. We do this not only by supporting the RISC-V specification, but also by implementing the specification and getting usable chips into the hands of developers as quickly as we can. We did exactly that just over a year ago when we introduced the open source, Arduino-compatible HiFive1 dev board based on our Freedom Everywhere line of 32-bit microcontrollers. Today, were proud to be doing the same thing with our Freedom Unleashed 64-bit, Linux-capable system-on-chip (SoC) platform. Meet the HiFive Unleashed, the worlds first RISC-V-based, Linux-capable development board.
Industry skeptics have previously dismissed RISC-V as an academic project, low performance, and only for microcontrollers. HiFive Unleashed, featuring the SiFive Freedom U540 SoC, ends all of that. Linux and RISC-V were meant for each other, and the HiFive Unleashed dev board brings them together for the first time.
- Processor: SiFive Freedom U540 SoC
- Memory: 8 GB DDR4 with ECC
- Connectivity: Gigabit Ethernet port
- Flash: 32 MB quad SPI flash from ISSI
- Storage: microSD card for removable storage
- Expansion: FMC connector for future expansion
## Learn More
* [Crowd Supply](https://www.crowdsupply.com/sifive/hifive-unleashed)

View file

@ -1,34 +0,0 @@
---
layout: download
board_id: "jetson_agx_orin"
title: "Jetson AGX Orin"
name: "Jetson AGX Orin"
manufacturer: "NVIDIA"
board_url: "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/"
board_image: "jetson_agx_orin.jpg"
downloads_display: true
blinka: true
date_added: 2022-7-27
features:
- Ethernet
- 40-pin GPIO
- HDMI/DisplayPort
---
Bring your next-gen products to life with the worlds most powerful AI computer for energy-efficient autonomous machines. With up to 275 TOPS and 8X the performance of the last generation for multiple concurrent AI inference pipelines, plus high-speed interface support for multiple sensors, NVIDIA Jetson Orin™ modules provide the ideal solution for a new age of robotics.
The NVIDIA Jetson AGX Orin Developer Kit makes it easy to get started with the Jetson AGX Orin module. Compact size, lots of connectors, and up to 275 TOPS of AI performance make this developer kit perfect for prototyping advanced AI-powered robots and other autonomous machines.
Jetson AGX Orin features an NVIDIA Ampere architecture GPU together with next-generation deep learning and vision accelerators, and its high-speed IO and fast memory bandwidth can feed multiple concurrent AI application pipelines. This means you can develop solutions using your largest and most complex AI models to solve problems such as natural language understanding, 3D perception, and multi-sensor fusion.
NVIDIA JetPack SDK brings the NVIDIA AI software stack to Jetson, along with application development and optimization tools. Software for specific use cases is available, including Isaac for robotics and Metropolis for smart cities, and you can save significant time developing your AI solution when you use your datasets with TAO toolkit to fine-tune pretrained AI models from the NGC catalog.
Jetson ecosystem partners offer additional AI and system software, developer tools, and custom software development. They can also help with cameras and other sensors, as well as carrier boards and design services for your product.
With the computing capability of more than 8 Jetson AGX Xavier systems in a developer kit that integrates the latest NVIDIA GPU technology with the worlds most advanced deep learning software stack, youll have the flexibility to create tomorrows AI solution as well as todays.
## Purchase
* [Amazon](https://amzn.to/3QKDIAt)
* [Arrow](https://www.arrow.com/en/products/945-13730-0000-000/nvidia)

View file

@ -9,11 +9,11 @@ board_image: "jetson_nano.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-linux-and-the-nvidia-jetson-nano"
downloads_display: true
blinka: true
date_added: 2019-9-10
features:
- Ethernet
- HDMI/DisplayPort
- USB 3.0
- HDMI
- DisplayPort
- 4 x USB 3.0 Ports
- 40-pin GPIO
---
@ -41,3 +41,7 @@ The developer kit can be powered by micro-USB and comes with extensive I/Os, ran
## Purchase
* [Arrow](https://www.arrow.com/products/945-13450-0000-000/nvidia)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "jetson_tx1"
title: "Jetson TX1"
name: "Jetson TX1"
manufacturer: "NVIDIA"
board_url: "https://developer.nvidia.com/embedded/jetson-tx1"
board_image: "jetson_tx1.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- HDMI/DisplayPort
- USB 3.0
- 40-pin GPIO
---
The world's first supercomputer on a module, Jetson TX1 is capable of delivering the performance and power efficiency needed for the latest visual computing applications. It's built around the revolutionary NVIDIA Maxwell™ architecture with 256 CUDA cores delivering over 1 TeraFLOPs of performance. 64-bit CPUs, 4K video encode and decode capabilities, and a camera interface capable of 1400 MPix/s make this the best system for embedded deep learning, computer vision, graphics, and GPU computing.
- GPU 256-core NVIDIA Maxwell™ GPU
- CPU Quad-Core ARM® Cortex®-A57 MPCore
- Memory 4GB 64-bit LPDDR4 Memory
- Storage 16GB eMMC
- Video: 4K 60 Hz decode | 4K 30 Hz encode
- USB USB 3.0 + USB 2.0
- Ethernet 1
- I2C 4
- CAN 1
- SPI 3
- UART 1
- GPIO 1
- Display Interface HDMI
- Operating Systems Linux Ubuntu
- PC Card Interface SD
## Purchase
* [Arrow](https://www.arrow.com/en/products/900-82180-0001-000/nvidia)

View file

@ -1,42 +0,0 @@
---
layout: download
board_id: "jetson_tx2"
title: "Jetson TX2 Dev Kit"
name: "Jetson TX2 Dev Kit"
manufacturer: "NVIDIA"
board_url: "https://developer.nvidia.com/embedded/jetson-tx2-developer-kit"
board_image: "jetson_tx2.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- HDMI/DisplayPort
- USB 3.0
- 40-pin GPIO
---
The Jetson TX2 Developer Kit gives you a fast, easy way to develop hardware and software for the Jetson TX2 AI supercomputer on a module. It exposes the hardware capabilities and interfaces of the developer board, comes with design guides and other documentation, and is pre-flashed with a Linux development environment.
It also supports NVIDIA Jetpack—a complete SDK that includes the BSP, libraries for deep learning, computer vision, GPU computing, multimedia processing, and much more.
- GPU NVIDIA Pascal™ Architecture GPU
- CPU 2 Denver 64-bit CPUs + Quad-Core A57 Complex
- Memory 8 GB L128 bit DDR4 Memory
- Storage 32 GB eMMC 5.1 Flash Storage
- Connectivity to 802.11ac Wi-Fi and Bluetooth-Enabled Devices
- 10/100/1000BASE-T Ethernet
- Video: 4K 60 Hz decode | 4K 30 Hz encode
- USB USB 3.0 + USB 2.0
- Ethernet 1
- I2C 1
- CAN 1
- SPI 1
- UART 1
- GPIO 1
- Display Interface HDMI
- Operating Systems Linux Ubuntu 64-bit v14.04
- PC Card Interface SD
## Purchase
* [Arrow](https://www.arrow.com/en/products/945-82771-0000-000/nvidia)

View file

@ -1,29 +0,0 @@
---
layout: download
board_id: "jetson_tx2_nx"
title: "Jetson TX2 Dev Kit"
name: "Jetson TX2 Dev Kit"
manufacturer: "NVIDIA"
board_url: "https://developer.nvidia.com/embedded/jetson-tx2-nx"
board_image: "jetson_tx2_nx.jpg"
downloads_display: true
blinka: true
date_added: 2021-2-25
features:
---
NVIDIA® Jetson™ TX2 NX delivers the next step in AI performance for entry-level embedded and edge products. It provides up to 2.5X the performance of Jetson Nano, and shares form-factor and pin compatibility with Jetson Nano and Jetson Xavier™ NX.
This small module packs hardware accelerators for the entire AI pipeline, and NVIDIA JetPack™ SDK provides the tools you need to use them for your application. Custom AI network development is easy with pre-trained AI models from NVIDIA NGC™ and the NVIDIA Transfer Learning Toolkit, and containerized deployments make updates for your product flexible and seamless.
Ease of development and speed of deployment—plus a unique combination of form-factor, performance, and power advantage—make Jetson TX2 NX the ideal mass-market AI product platform.
- AI Performance: 1.33 TFLOPs
- GPU: NVIDIA Pascal™ Architecture GPU with 256 CUDA cores
- CPU: Dual-core NVIDIA Denver 2 64-bit CPU and quad-core ARM A57 Complex
- Memory: 4GB 128-bit LPDDR4, 1600 MHz - 51.2 GBs
- Storage: 16GB eMMC 5.1 Flash Storage
## Purchase
* [Arrow](https://www.arrow.com/en/products/900-13636-0010-000/nvidia)

View file

@ -1,42 +0,0 @@
---
layout: download
board_id: "jetson_xavier"
title: "Jetson AGX Xavier Dev Kit"
name: "Jetson AGX Xavier Dev Kit"
manufacturer: "NVIDIA"
board_url: "https://developer.nvidia.com/embedded/jetson-agx-xavier-developer-kit"
board_image: "jetson_xavier.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- HDMI/DisplayPort
- USB 3.0
- 40-pin GPIO
---
With the NVIDIA Jetson AGX Xavier developer kit, you can easily create and deploy end-to-end AI robotics applications for manufacturing, delivery, retail, agriculture, and more.
Supported by NVIDIA JetPack and DeepStream SDKs, as well as CUDA®, cuDNN, and TensorRT software libraries, the kit provides all the tools you need to get started right away. And because its powered by the new NVIDIA Xavier processor, you now have more than 20X the performance and 10X the energy efficiency of its predecessor, the NVIDIA Jetson TX2.
- GPU 512-core Volta GPU with Tensor Cores
- CPU 8-core ARM v8.2 64-bit CPU, 8MB L2 + 4MB L3
- Memory 16GB 256-Bit LPDDR4x | 137GB/s
- Storage 32 GB eMMC 5.1
- Connectivity to 802.11ac Wi-Fi and Bluetooth-Enabled Devices
- 10/100/1000BASE-T Ethernet
- Video: (2x) 4Kp60 | HEVC/(2x) 4Kp60 | 12-Bit Support
- USB-C 2x USB 3.1, DP (Optional), PD (Optional) Close-System Debug and Flashing Support on 1 Port
- Ethernet 1
- I2C 1
- CAN 1
- SPI 1
- UART 1
- GPIO 1
- Display Interface HDMI 2.0, eDP 1.2a, DP 1.4
- Operating Systems Linux Ubuntu 64-bit v14.04
- PC Card Interface SD/UFS
## Purchase
* [Arrow](https://www.arrow.com/en/products/945-82771-0000-000/nvidia)

View file

@ -1,32 +0,0 @@
---
layout: download
board_id: "jetson_xavier_nx"
title: "Jetson Xavier NX"
name: "Jetson Xavier NX"
manufacturer: "NVIDIA"
board_url: "https://developer.nvidia.com/embedded/jetson-xavier-nx"
board_image: "jetson_xavier_nx.jpg"
downloads_display: true
blinka: true
date_added: 2020-3-25
features:
---
Jetson Xavier NX delivers up to 21 TOPS for running modern AI workloads, consumes as little as 10 watts of power, and has a compact form factor smaller than a credit card. It can run modern neural networks in parallel and process data from multiple high-resolution sensors, opening the door for embedded and edge computing devices that demand increased performance but are constrained by size, weight, and power budgets.
- GPU 384-core NVIDIA Volta™ GPU with 48 Tensor Cores
- CPU 800/1100 MHz 6-core NVIDIA Carmel ARM®v8.2 64-bit CPU 6MB L2 + 4MB L3
- Memory 8 GB 128-bit LPDDR4x @ 1600 MHz 51.2GB/s
- Storage 16 GB eMMC 5.1
- Power 10/15W
- PCIe 1 x1 + 1x4
- CSI Camera Up to 6 cameras (36 via virtual channels)
- Video Encode 2x 4K @ 30 (HEVC)
- Video Decode 2x 4K @ 60 (HEVC)
- Display 2 multi-mode DP 1.4/eDP 1.4/HDMI 2.0
- DL Accelerator 2x NVDLA Engines
- Networking 10/100/1000 BASE-T Ethernet
## Learn More
* [NVIDIA](https://developer.nvidia.com/embedded/jetson-xavier-nx)

View file

@ -1,29 +0,0 @@
---
layout: download
board_id: "khadas_vim3"
title: "Khadas VIM3 Download"
name: "Khadas VIM3"
manufacturer: "Khadas"
board_url: "https://www.khadas.com/vim3"
board_image: "khadas_vim3.jpg"
downloads_display: true
blinka: true
date_added: 2022-4-1
features:
- Ethernet
- HDMI/DisplayPort
- Wi-Fi
- 40-pin GPIO
- USB 3.0
- Bluetooth/BLE
- Infrared Receiver
---
- High Performance: Amlogic A311D - x4 2.2Ghz Cortex A73, x2 1.8Ghz Cortex A53 12nm SoC fabrication process for low heat 2T2R AC Wi-Fi with RSDB Features Bluetooth 5.0 USB 3.0 Available Gigabit Ethernet with WOL support LPDDR4/X USB-C PD for heavy applications
- Neural Network Accelerator: NPU: Supports a maximum frequency of 800MHz at 5.0 TOPS INT8 inference up to 1536 MAC Internal L2 cache (512KB) and system workspace buffer (1MB) Supports all major deep learning frameworks including TensorFlow and Caffe
- Maker Friendly: Stackable Design Programmable MCU 3 Programmable LEDs (Blue, Red and White) XPWR for external Power button Onboard SPI Flash Khadas TST Khadas KBI
- Business Applications Dual independent displays with GSensor H.264 / H.265 Encoding Supports multi-video decoding up to 4Kx2K@60fps+1x1080P@60fps VIN Power Input
- Rich IO: 40 Pin GPIO Header (USB, I2C, I2S, UART, ADC etc) 8-ch I2S for Microphone Array application (over M.2 Connector) MIPI-DSI MIPI-CSI Designed with GPIO Extender Chip
## Purchase
* [Amazon](https://amzn.to/3NAK98d)

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "libre_aml-s905x-cc"
title: "AML-S905X-CC (Le Potato) Download"
name: "AML-S905X-CC (Le Potato)"
manufacturer: "Libre Computer"
board_url: "https://libre.computer/products/s905x/"
board_image: "libre_aml-s905x-cc.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2022-10-17
features:
- HDMI/DisplayPort
- 40-pin GPIO
- Ethernet
- Infrared Receiver
---
Le Potato is our flagship hardware platform with support for the latest Android 9/TV, upstream Linux, u-boot, Kodi, and more. Based on a long term supported SoC family with a proven record of mass deployments by the largest regional content providers, Google, and Amazon, AML-S905X-CC is the perfect development platform for projects that require highly performant ARM Cortex-A class CPUs, secure and non-secure 4K media delivery and playback, Widevine CAS DRM, high reliability, and low power.
Libre Computer is the only solutions provider with key expertise in both hardware design and upstream free-open-source software (FOSS) stack for Amlogic's GXL SoC family including S805X, S905D, S905W, S905X, and S912. This SoC family features the Amlogic Video Engine 10 (AVE10) capable of handling H.265, H.264, and VP9 streams with HDR metadata making it ideal for 4K digital signage on mainline Linux and the latest Android 9.0 Pie.
Features
- Form Factor Compatible with Raspberry Pi® 2/3 Model B/B+
- Quad 64-bit Low Power Cores
- Penta Core 3D GPU with OpenGL ES 2.0
- Amlogic Video Engine (AVE10)
- H.265
- H.264
- VP9
- HDMI 2.0 with 4K HDR support
- Up to 2GB DDR3
- Product Family
- AML-S805X-AC
## Purchase
* [Amazon](https://amzn.to/3EO1FUg)

View file

@ -1,26 +0,0 @@
---
layout: download
board_id: "lichee_rv_dock_d1"
title: "Lichee RV Dock D1 Download"
name: "Lichee RV Dock D1"
manufacturer: "Sipeed"
board_url: ""
board_image: "lichee_rv_dock_d1.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2022-10-6
features:
- HDMI/DisplayPort
- Wi-Fi
- Bluetooth/BLE
---
Lichee RV Dock is a RISC-V Linux development kit. It expands the modules usable interfaces by providing an HDMI port with support for up to 4K@30fps output, a 40-pin header with GPIO and power switches, among other things, plus headers and connectors that you can use for speakers, microphones, and more. It supports RGB and MIPI screen interfaces with its screen convert board. There is an onboard 2.4G WIFI+BT module, a 2.4G Patch antenna, an IPEX connector, and a USB Type-A host. The highest network speed is up to 30Mbps (with RTL8723DS), and the average network bandwidth is about 20Mbps.
For software, Lichee RV Dock supports Tina Linux, Debian Officially, and also Ubuntu/OpenSUSE, RustSBI community.
The features of high integration, small size, affordable price, and open-source are suitable for developers exploring more interesting Linux applications. No more waiting and soldering, it greatly shortens the developers research and development time by just simply connecting the kit to the display devices and input devices such as a keyboard or a mouse(only available on the Debian system).
## Purchase
* [Seeed Studio](https://www.seeedstudio.com/Lichee-RV-Dock-Allwinner-D1-SoC-RISC-V-Linux-dev-kit-High-Integration-Open-Source-p-5380.html)

View file

@ -1,28 +0,0 @@
---
layout: download
board_id: "lubancat_i.mx6ull"
title: "LubanCat I.MX6ULL Download"
name: "LubanCat I.MX6ULL"
manufacturer: "LubanCat"
board_url: "https://www.seeedstudio.com/NPi-i-MX6ULL-Dev-Board-Industrial-Grade-Linux-SBC-NAND-Version-p-4220.html"
board_image: "lubancat_i.mx6ull.jpg"
download_instructions: ""
blinka: true
date_added: 2021-1-15
features:
- Ethernet
- 40-pin GPIO
---
Meet the new i.MX6ULL ARM Cortex A7 processor from NXP, it is a high performance and power-efficient processor with a frequency up to 800MHz!
The NPi i.MX6ULL Dev Board is a low power consumption Linux single board computer built around the powerful i.MX6ULL. You would love the onboard 512MB DDR3L and 512MB NAND, not to mention the rich interfaces and I/O resources.
The whole board is made by a core module and a breakout board, and the components are all industrial grade.
The core module is composed of the i.MX6ULL core and 512MB DDR3L, 512MB NAND FLASH(or 8GB eMMC).
The breakout board mainly includes various peripheral interfaces and input and output, IO expansion. Including but not limited to two 100M ethernet port, one USB Host and one USB OTG port, one 24bit RGB LCD Interface, 2x 40 Pin I/O expansion header, etc. Such a wealth of resources will meet your various control needs. All those features make it a perfect solution for industrial control, rail transit, drone control, and audio output, etc.
## Learn More
* [Seeed Studio](https://www.seeedstudio.com/NPi-i-MX6ULL-Dev-Board-Industrial-Grade-Linux-SBC-NAND-Version-p-4220.html)

View file

@ -1,23 +0,0 @@
---
layout: download
board_id: "mcp2221"
title: "MCP2221 Download"
name: "MCP2221"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4471"
board_image: "mcp2221.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-mcp2221"
downloads_display: true
blinka: true
date_added: 2020-3-25
features:
---
Wouldn't it be cool to drive a [tiny OLED display](https://www.adafruit.com/categories/98), read a [color sensor](https://www.adafruit.com/products/1334), or even just flash some LEDs directly from your computer? Sure you can program an [Arduino](https://www.adafruit.com/products/50) or [Trinket](https://www.adafruit.com/products/2000) to talk to these devices and your computer, but why can't your computer just talk to those devices and sensors itself? Well, now your computer _can_ talk to devices using the Adafruit MCP2221A breakout board!
What can the MCP2221 chip do? This chip from [Microchip](https://www.microchip.com/wwwproducts/en/MCP2221A) is similar to a USB to serial converter chips but adds a GPIO and I2C interface as well. The analog/digital GPIO pins can act as 10-bit analog inputs (ADC) and there's even a 5-bit DAC output. The I2C interface is great for talking to OLEDs, sensors, PWM drivers, its the most popular interface for small devices. You can use the GPIO to do things like flash LEDs, read switches or buttons, and more. The MCP2221A breakout is like adding a little swiss army knife for serial protocols to your computer!
This chip is powerful and useful to have when you want to use Python (for example) to quickly iterate and test a device that uses I2C or general purpose digital and analog I/O. There's no firmware to deal with, so you don't have to deal with how to "send data to and from an Arduino which is then sent to and from" an electronic sensor or display or part.
## Purchase
* [Adafruit](https://www.adafruit.com/product/4471)

View file

@ -1,45 +0,0 @@
---
layout: download
board_id: "nanopi_duo2"
title: "NanoPi Duo2 Download"
name: "NanoPi Duo2"
manufacturer: "FriendlyElec"
board_url: "http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo2"
board_image: "nanopi_duo2.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2021-2-5
features:
- Wi-Fi
- Bluetooth/BLE
---
The NanoPi Duo2("Duo2") is an ARM board designed and developed by FriendlyELEC for makers and hobbyists. It is only 55 x 25.4mm. It features Allwinner quad-core A7 processor H3, and has 256M/512M DDR3 RAM, onboard WiFi & bluetooth module and an OV5640 camera interface. It works with Linux variants such as Ubuntu Core.
The NanoPi Duo2 is tiny and compact with rich interfaces and ports. It takes power input from its MicroUSB port and can be booted from a Micro SD card. It works with general bread-boards. Interface pins such as USB, SPI, UART, I2C, PWM, IR, audio input & output and Fast Ethernet etc are populated.
The NanoPi Duo2 supports software utilities such as WiringNP and Python etc. These are all open source. It is suited for various IoT applications.
- CPU: Allwinner H3, Quad-core Cortex-A7 Up to 1.2GHz
- DDR3 RAM: 512M
- Connectivity: 10/100M Ethernet
- WiFi: 802.11b/g/n
- Bluetooth: Bluetooth V4.0 of 1, 2 and 3 Mbps.
- Camera: OV5640
- Key: GPIO Key
- USB Host: 2.54mm pin x2, exposed in 2.54mm pitch pin header
- MicroSD Slot x 1
- MicroUSB: OTG and power input
- Debug Serial Interface: exposed in 2.54mm pitch pin header
- Audio input/output Interface: exposed in 2.54mm pitch pin header
- GPIO1: 2.54mm spacing 16pin. It includes UART, SPI, I2C, Audio etc
- GPIO2: 2.54mm spacing 16pin. It includes USB,10/100M Ethernet, IO etc
- PCB Dimension: 25.4 x 55mm
- Power Supply: DC 5V/2A
- Temperature measuring range: -20℃ to 70℃
- OS/Software: U-bootLinux-4.14 / Linux-3.4, Ubuntu 16.04.2 LTS (Xenial)
## Purchase
* [FriendlyElec](https://www.friendlyarm.com/index.php?route=product/product&product_id=244)

View file

@ -1,34 +0,0 @@
---
layout: download
board_id: "nanopi_neo_air"
title: "NanoPi NEO Air Download"
name: "NanoPi NEO Air"
manufacturer: "FriendlyElec"
board_url: "http://nanopi.io/nanopi-neo-air.html"
board_image: "nanopi_neo_air.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2021-1-20
features:
- Wi-Fi
- Bluetooth/BLE
---
LTS - long term support, We will not make any changes to this model and will provide support as long as possible
- CPU: Allwinner H3, Quad-core Cortex-A7 Up to 1.2GHz
- RAM: 512MB DDR3 RAM
- Storage: 8GB eMMC
- WiFi: 802.11b/g/n
- Bluetooth: 4.0 dual mode
- MicroSD Slot x 1
- GPIO: 2.54mm pitch 24pin. It includes UART, SPI, I2C, IO etc
- PCB Size: 40 x 40mm
- Power Supply: DC 5V/2A
- OS/Software: u-boot, UbuntuCore
- Weight: 7.5g(WITHOUT Pin-headers); 9.7g(WITH Pin-headers)
## Purchase
* [FriendlyElec](https://www.friendlyarm.com/index.php?route=product/product&product_id=151)

View file

@ -1,33 +0,0 @@
---
layout: download
board_id: "nanopi_neo"
title: "NanoPi NEO Download"
name: "NanoPi NEO"
manufacturer: "FriendlyElec"
board_url: "http://nanopi.io/nanopi-neo.html"
board_image: "nanopi_neo.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2022-1-4
features:
- Ethernet
---
LTS - long term support, We will not make any changes to this model and will provide support as long as possible
- CPU: Allwinner H3, Quad-core Cortex-A7 Up to 1.2GHz
- DDR3 RAM: 256MB/512MB
- Connectivity: 10/100M Ethernet
- USB Host: Type-A x 1, 2.54 mm pin x 2
- MicroSD Slot x 1
- MicroUSB: for data transmission and power input
- Debug Serial Port: 4Pin, 2.54 mm pitch pin header
- GPIO: 2.54mm pitch 36pin. It includes UART, SPI, I2C, IO etc
- PCB Dimension: 40 x 40 mm
- Power Supply: DC 5V/2A
- OS/Software: u-boot and UbuntuCore
## Purchase
* [FriendlyElec](https://www.friendlyarm.com/index.php?route=product/product&path=69&product_id=132)

View file

@ -1,45 +0,0 @@
---
layout: download
board_id: "octavo_osd32mp1_brk"
title: "OSD32MP1-RED Download"
name: "OSD32MP1-RED"
manufacturer: "Octavo Systems"
board_url: "https://octavosystems.com/octavo_products/osd32mp1-brk/"
board_image: "octavo_osd32mp1_brk.jpg"
download_instructions:
downloads_display: true
blinka: true
date_added: 2021-12-6
features:
---
The OSD32MP1-BRK is a small flexible prototyping platform for the [STM32MP1](https://www.st.com/en/microcontrollers-microprocessors/stm32mp1-series.html) based SiP, the [OSD32MP15x](https://octavosystems.com/octavo_products/osd32mp15x/). At only 3in X 1.8in (75mm X 46mm), it provides easy access to the I/O of the STM32MP1 through a set of breadboard compatible headers. The OSD32MP1-BRK allows developers to quickly build a proof of concept that more closely resembles their actual system without the need to build their own custom hardware.
The OSD32MP1-BRK features the OSD32MP15x System in Package, a microSD slot, 32KHz crystal, a microUSB client port, and two 2×30 100 mill headers. The headers give access to 106 I/O on the STM32MP1 integrated into the OSD32MP15x SiP. It uses a 4 Layer PCB with low cost design rules and has no back side components.
Its minimal overhead and access to a wide range of I/O make the OSD32MP1-BRK the perfect platform for any designer looking for complete flexibility as they prototype their design.
- Small Form Factor
- Only 3in X 1.8in (75mm X 46mm)
- Access to 106 I/O
- two 2×30 100mil (2.54mm) Headers
- Maximum flexibility to prototype designs
- Breadboard Compatible
- OSD32MP157C-512M-BAA
- STM32MP157C Dual Arm® Cortex® A7 + M4
- 512MB DDR3 Memory
- STPMIC1A Power Management
- EEPROM
- Oscillator
- Passives
- µUSB
- STLink*
- UART
- µSD Card
- 32KHz Crystal
- 4 Layer Design
- No Back Side Components
## Purchase
* [Digikey](https://www.digikey.com/en/products/detail/octavo-systems-llc/OSD32MP1-BRK/12144788)

View file

@ -1,56 +0,0 @@
---
layout: download
board_id: "octavo_osd32mp1_red"
title: "OSD32MP1-RED Download"
name: "OSD32MP1-RED"
manufacturer: "Octavo Systems"
board_url: "https://octavosystems.com/octavo_products/osd32mp1-red"
board_image: "octavo_osd32mp1_red.jpg"
download_instructions:
downloads_display: true
blinka: true
date_added: 2021-12-6
features:
- Wi-Fi
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
The OSD32MP1-RED is a full featured Reference, Evaluation and Development platform for the [STM32MP1](https://www.st.com/en/microcontrollers-microprocessors/stm32mp1-series.html) based SiP, the [OSD32MP15x](https://octavosystems.com/octavo_products/osd32mp15x/). It provides access to a number of standard communication interfaces like WiFi and Bluetooth, 1Gb Ethernet, and CAN. It supports HDMI or DSI displays and has a connector for a camera. The OSD32MP1-RED expands easily by providing connectors that are compatible with Raspberry Pi, MikroElektronika mikroBUS™ Click, and STMicroelectronics Motor Control Header.
The on board eMMC comes preloaded with an Opensource Linux Distribution allowing you to begin development straight out of the box.
With its communication interfaces, peripherals, and expansion capabilities, the OSD32MP1-RED is a perfect platform for quickly developing IOT, high-end HMI, or real time control applications.
- Full Featured Reference, Evaluation, Development Platform
- OSD32MP157C-512M-BAA
- STM32MP157C Dual Arm® Cortex® A7 + M4
- 512MB DDR3 Memory
- STPMIC1A Power Management
- EEPROM
- Oscillator
- Passives
- Connectivity
- WiFi (IEEE802.11b/g/n) / Bluetooth® v5.1 (BR/EDR/BLE)
- 10/100/1000 Ethernet
- CAN FD
- USB Host
- USB-C OTG
- UART
- JTAG (STLink)
- Memory
- µSD Card
- eMMC
- Display
- HDMI
- DSI
- Camera
- Expansion
- Raspberry Pi Compatible Header
- MikroElektronika Click Header
- Motor Control Header
- 4 Layer Design
## Purchase
* [Digikey](https://www.digikey.com/en/products/detail/octavo-systems-llc/OSD32MP1-RED/13575366)

View file

@ -9,10 +9,9 @@ board_image: "odroid_c2.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libaries-linux-odroid-c2"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
- Infrared Receiver
---
@ -42,3 +41,7 @@ Some of the modern operating systems that run on the ODROID-C2 are Ubuntu, Andro
## Purchase
* [Hardkernel](https://www.hardkernel.com/shop/odroid-c2/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "odroid_c4"
title: "Odroid C4 Download"
name: "Odroid C4"
manufacturer: "Hardkernel co., Ltd."
board_url: "https://www.hardkernel.com/shop/odroid-c4/"
board_image: "odroid_c4.jpg"
downloads_display: true
blinka: true
date_added: 2020-5-15
features:
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
- Infrared Receiver
---
ODROID-C4 is a new generation single board computer that is more energy efficient and faster performing than ODROID-C2 which was introduced over four years ago as the worlds first affordable ARM 64bit computer.
The main CPU of the ODROID-C4 is built with a quad-core Cortex-A55 cluster with a new generation Mali-G31 GPU. The A55 cores run at 2.0Ghz without thermal throttling using the stock heat sink allowing a robust and quiet computer. The CPU multi-core performance is around 40% faster, and the system DRAM performance is 50% faster than the ODROID-C2.
- Amlogic S905X3 12nm Processor
- Mali-G31 MP2 GPU with 4 x Execution Engines (650Mhz)
- DDR4 4GiB with 32-bit bus width
- 1x eMMC connector (8/16/32/64GiB are available)
- 1x Micro SD slot (DS/HS mode up to UHS-I SDR104)
- 1 x GbE LAN ports (RJ45, supports 10/100/1000 Mbps)
- 1 x HDMI digital output
- 1 x Optional SPDIF optical output
- 40pin GPIOs + 7pin I2S
- 1 x Debug serial console (UART)
- 4 x USB 3.0 Host ports
- 1 x USB 2.0 OTG port for Host or Device mode. (No power input)
- IR receiver for remote controller
## Purchase
* [Hardkernel](https://www.hardkernel.com/shop/odroid-c4/)

View file

@ -1,43 +0,0 @@
---
layout: download
board_id: "odroid_n2"
title: "Odroid N2 Download"
name: "Odroid N2"
manufacturer: "Hardkernel co., Ltd."
board_url: "https://www.hardkernel.com/shop/odroid-n2-with-2gbyte-ram/"
board_image: "odroid_n2.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- USB 3.0
- HDMI/DisplayPort
- 40-pin GPIO
- Infrared Receiver
---
ODROID-N2 is a new generation single board computer that is more powerful, more stable, and faster performing than N1.
The main CPU of the N2 is based on big.Little architecture which integrates a quad-core ARM Cortex-A73 CPU cluster and a dual core Cortex-A53 cluster with a new generation Mali-G52 GPU.
Thanks to the modern 12nm silicon technology, the A73 cores runs at 1.8Ghz without thermal throttling using the stock metal-housing heatsink allowing a robust and quiet computer.
The CPU multi-core performance is around 20% faster and the GPU is 10% faster than the N1. The N2s DDR4 RAM is running at 1320Mhz with 1.2volt low power consumption.
The large metal housing heatsink is designed to optimize the CPU and RAM heat dissipation and minimize throttling. The CPU is placed on the bottom side of the PCB to establish great thermal characteristics.
- Amlogic S922X ARM Cortex-A73(ARMv8-A) 1.8Ghz quad core CPU
- ARM Cortex-A53(ARMv8) 1.9Ghz dual core CPU
- Mali-G52 GPU
- Supports OpenGL ES 3.2 / 3.1 / 3.0 / 2.0 / 1.1
- 2GB or 4GB DDR4 SDRAM
- Gigabit Ethernet
- HDMI 2.0 4K/60Hz display
- Composite Video
- 40pin GPIO Port
- eMMC5.0 HS400 Flash Storage slot
- UHS-1 SDR50 MicroSD Card slot
- USB 3.0 Host x 4
- USB 2.0 OTG x 1 (power + data capable)
- Infrared(IR) Receiver
- Armbian Support
## Purchase
* [Hardkernel](https://www.hardkernel.com/shop/odroid-n2-with-2gbyte-ram/)

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "odroid_xu4"
title: "Odroid XU4 Download"
name: "Odroid XU4"
manufacturer: "Hardkernel co., Ltd."
board_url: "https://www.hardkernel.com/shop/odroid-xu4-special-price/"
board_image: "odroid_xu4.jpg"
downloads_display: true
blinka: true
date_added: 2020-5-29
features:
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
- USB 3.0
---
ODROID-XU4 is powered by ARM® big.LITTLE™ technology, the Heterogeneous Multi-Processing (HMP) solution.
ODROID-XU4 is a new generation of computing device with more powerful, more energy-efficient hardware and a smaller form factor. Offering open source support, the board can run various flavors of Linux, including the latest Ubuntu 16.04 and Android 4.4 KitKat, 5.0 Lollipop and 7.1 Nougat.
By implementing the eMMC 5.0, USB 3.0 and Gigabit Ethernet interfaces, the ODROID-XU4 boasts amazing data transfer speeds, a feature that is increasingly required to support advanced processing power on ARM devices.
This allows users to truly experience an upgrade in computing, especially with faster booting, web browsing, networking, and 3D games.
- Samsung Exynos5422 Cortex™-A15 2Ghz and Cortex™-A7 Octa core CPUs
- Mali-T628 MP6(OpenGL ES 3.1/2.0/1.1 and OpenCL 1.2 Full profile)
- 2Gbyte LPDDR3 RAM PoP stacked
- eMMC5.0 HS400 Flash Storage
- 2 x USB 3.0 Host, 1 x USB 2.0 Host
- Gigabit Ethernet port
- HDMI 1.4a for display
- Size : 83 x 58 x 20 mm approx.(excluding cooler)
- Power: 5V/4A input
- Linux Kernel 4.14 LTS
- We guarantee the production of XU4 to year 2021, but expect to continue production long after.
## Purchase
* [Hardkernel](https://www.hardkernel.com/shop/odroid-xu4-special-price/)

View file

@ -1,41 +0,0 @@
---
layout: download
board_id: "odroid_xu4q"
title: "Odroid XU4Q Download"
name: "Odroid XU4Q"
manufacturer: "Hardkernel co., Ltd."
board_url: "https://www.hardkernel.com/shop/odroid-xu4q-special-price/"
board_image: "odroid_xu4q.jpg"
downloads_display: true
blinka: true
date_added: 2020-5-29
features:
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
- USB 3.0
---
ODROID-XU4Q
is powered by ARM® big.LITTLE™ technology, the Heterogeneous Multi-Processing (HMP) solution.
The ODROID-XU4Q is the same board as the ODROID-XU4 but with a large heatsink instead of a fan which makes it quiet.
ODROID-XU4 is a new generation of computing device with more powerful, more energy-efficient hardware and a smaller form factor. Offering open source support, the board can run various flavors of Linux, including the latest Ubuntu 16.04 and Android 4.4 KitKat, 5.0 Lollipop and 7.1 Nougat.
By implementing the eMMC 5.0, USB 3.0 and Gigabit Ethernet interfaces, the ODROID-XU4 boasts amazing data transfer speeds, a feature that is increasingly required to support advanced processing power on ARM devices.
This allows users to truly experience an upgrade in computing, especially with faster booting, web browsing, networking, and 3D games.
- Samsung Exynos5422 Cortex™-A15 2Ghz and Cortex™-A7 Octa core CPUs
- Mali-T628 MP6(OpenGL ES 3.1/2.0/1.1 and OpenCL 1.2 Full profile)
- 2Gbyte LPDDR3 RAM PoP stacked
- eMMC5.0 HS400 Flash Storage
- 2 x USB 3.0 Host, 1 x USB 2.0 Host
- Gigabit Ethernet port
- HDMI 1.4a for display
- Size : 83 x 58 x 20 mm approx.(excluding cooler)
- Power: 5V/4A input
- Linux Kernel 4.14 LTS
- We guarantee the production of XU4 to year 2021, but expect to continue production long after.
## Purchase
* [Hardkernel](https://www.hardkernel.com/shop/odroid-xu4-special-price/)

View file

@ -1,28 +0,0 @@
---
layout: download
board_id: "onion_omega2plus"
title: "Onion Omega2+"
name: "Onion Omega2+"
manufacturer: "Onion Corporation"
board_url: "https://onion.io/store/omega2p/"
board_image: "onion_omega2plus.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-4-22
features:
- Wi-Fi
---
Ever wanted your own Linux-based IoT computer? A small one, that can be battery powered? The Onion Omega2 is sort of in-between a microcontroller (like an Arduino/CircuitPython/MakeCode running chip) and a full-fledged microcomputer (like Raspbery Pi). What you get is a bite-sized development board that combines the power-efficiency of the Arduino and the flexibility of the Raspberry Pi!
So, for example, it runs Linux, but isn't going to replace your desktop computer. It's low power and has a static filesystem, but still requires some time to boot up. It's based on the MediaTek MT7688, a WiFi SoC that was initially designed for devices like WiFi routers or complex IoT devices. It comes with a variant of OpenWRT (nicknamed Onion OS) that is a slimmed down version of Linux. It's not going to run node.js or minecraft but it is Linux. So, you get WiFi built in, and a full TCP/IP stack with SSL/TLS with all the scripting/programming language support that you expect.
Unlike a Raspberry Pi, you don't get a desktop or even a console on HDMI. Instead, you use a serial connection/ssh and the command line, or the simplified webpage interface to program it. So it's good if you have a bit of experience with those things!
Where it excels is as a physical computing platform, with hardware and WiFi. Wanna know how to blink an LED, or even multiple (!) LEDs? You can do that! You'll be able to read switches and use shift registers. Blinking text? No problem! A 7-Segment display and an LCD screen are included! The Maker Kit even comes with relay, PWM/servo and OLED add-ons so you can have a display and robotics interfacing. Comes with all the fixins' to get comfortable with IoT and programming languages, including Python, C++, Node js, php, Bash, Ruby, Perl, Lua, G, and more!
This maker kit has everything you need to fully build and prototype just about any kind of project you can think of with Onion Omega2+. Once you have your project or product well-developed you can then purchase individual Omega2's and add-on boards from Onion.
## Purchase
* [Adafruit](https://www.adafruit.com/product/3808)

View file

@ -1,53 +0,0 @@
---
layout: download
board_id: "orange_pi_2"
title: "Orange Pi 2 Download"
name: "Orange Pi 2"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/orangepi2/"
board_image: "orange_pi_2.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2020-5-11
features:
- Wi-Fi
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
Orange Pi 2 is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
- Mali400MP2 GPU @600MHz
- Supports OpenGL ES 2.0
- 1GB DDR3 (shared with GPU)
- TF card (Max. 32GB) / MMC card slot
- 10/100M Ethernet RJ45
- A CSI input connector Camera
- Supports 8-bit YUV422 CMOS sensor interface
- Supports CCIR656 protocol for NTSC and PAL
- Supports SM pixel camera sensor
- Supports video capture solution up to 1080p@30fps
- MIC
- Supports HDMI output with HDCP
- Supports HDMI CEC
- Supports HDMI 30 function
- Integrated CVBS
- Supports simultaneous output of HDMI and CVBS
- v3.5 mm Jack and HDMI
- DC input can supply power, but USB OTG input dont supply power
- Four USB 2.0 HOST, one USB 2.0 OTG
- Power Button(SW4)
- Recovery Button(SW2)
- UBoot Button(SW3)
- 40 Pins Header
- GPIO(1x3) pin
- UART, ground.
- Power led & Status led
- IR input, POWER
- Android Ubuntu, Debian, Rasberry Pi Image
## Purchase
* [Aliexpress](https://www.aliexpress.com/store/1553371)

View file

@ -1,50 +0,0 @@
---
layout: download
board_id: "orange_pi_3"
title: "Orange Pi 3 Download"
name: "Orange Pi 3"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/Orange%20Pi%203/"
board_image: "orange_pi_3.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2022-1-4
features:
- Wi-Fi
- Ethernet
- HDMI/DisplayPort
- Infrared Receiver
---
Orange Pi 3 is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
### Hardware specification
- H6 Quad-core 64-bit 1.8GHZ ARM Cortex™-A53
- High-performance multi-core GPU Mali T720
- OpenGL ES3.1/3.0/2.0/1.1
- Microsoft DirectX 11 FL9_3
- ASTC(Adaptive Scalable Texture Compression)
- Floating point operation greater than 70 GFLOPS
- AP6256, IEEE 802.11 a/b/g/n/ac, BT5.0
- 10/100M/1000M , ethernet RJ45
- RTL8211
- MIC
- HDMI 2.0a and 3.5 mm AV Jack
- HDMI 2.0a and CVBS
- H265/HEVC Main/Main10 profile@Level5.2 High-tier ;4K@60fps, up to 6Kx4K@30fps
- H264/AVC BP/MP/HP@level5.1, MVC, 4K@30fps
- VP9Profile 0/2, 4K@30fps
- AVS+/AVS JIZHUN profile@level 6.0, 1080P@60fps
- Supports RC mode
- Supports x1 Gen2(5.0Gbps) lane
- Complies with PCI Express Base 2.0 Specification
- DC inputMicroUSB (OTG)
- AXP805
- 1*USB 2.0 Host, 1*USB OTG 2.0
- 4*USB 3.0 Host
- 26 Pin GPIO
## Purchase
* [Aliexpress](https://pt.aliexpress.com/item/1005001804159295.html)
* [Amazon](https://amzn.to/3qGAtOM)

View file

@ -1,51 +0,0 @@
---
layout: download
board_id: "orange_pi_4"
title: "Orange Pi 4 Download"
name: "Orange Pi 4"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-4.html"
board_image: "orange_pi_4.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2022-10-6
features:
- Wi-Fi
- Ethernet
- Bluetooth/BLE
- HDMI/DisplayPort
- 40-pin GPIO
---
Orange Pi 4 is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0. It is highly compact with a dimension of 56 x 91mm.
### Hardware specification
- Rockchip RK3399 (28nm HKMG process)
- 6-core ARM® 64-bit processor, main frequency speeds up to 2.0GHz
- Based on the large and small size core architecture of big.LITTLE
- Dual-core Cortex-A72 (large core) + Quad-core Cortex-A53 (small core)
- Mali-T864 GPU
- Supports OpenGL ES1.1/2.0/3.0/3.1, OpenVG1.1,OpenCL, DX11, support for AFBC
- RK808 PMU
- Dual 4GB LPDDR4 + 16GB EMMC Flash
- Dual 4GB LPDDR4 +EMMC Flash (Default Empty)
- AP6256, IEEE 802.11 a/b/g/n/ac, BT5.0
- 10/100/1000Mbps Ethernet (Realtek RTL8211E)
- Output: 3.5mm Jack and HDMI2.0a Input: MIC
- 1 x HDMI 2.0 (Type-A), Supports 4K@60fps output
- 1 x DP 1.2 (Display Port), Supports 4K@60fps output
- Supports Dual MIPI-DSI 4 lines per channel
- 2 x MIPI-CSI Camera connector (MIPI_RX0, MIPI_TX1/RX1)
- 2 x USB2.0 HOST1x USB3.0 HOST, 1 x USB3.0 Type-C
- Support RTC, on-board battery backup interface
- 3 pins Debug UART
- GPIO1 40 pins1 x I2S, 2 x I2C, 1 x SPI/UART, 8 x GPIO
- GPIO2 24pin PCIE port
- Upgrade Key & Reset Key
- DC 5V/3A TYPE-C 5V/3A
- Power led & Status led
- Android 8.1, Ubuntu 16.04, Ubuntu 18.04, Debian 9
## Purchase
* [Amazon](https://amzn.to/3ypCBiG)

View file

@ -1,55 +0,0 @@
---
layout: download
board_id: "orange_pi_4_lts"
title: "Orange Pi 4 LTS Download"
name: "Orange Pi 4 LTS"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/orange-pi-4-LTS.html"
board_image: "orange_pi_4_lts.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2022-10-6
features:
- Wi-Fi
- Ethernet
- Bluetooth/BLE
- HDMI/DisplayPort
---
Orange Pi 4 LTS is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0. It is highly compact with a dimension of 56 x 91mm.
Orange Pi 4 LTS uses the Rockchip RK3399(28nm HKMG Process), and has 3 GB /4GB LPDDR4 SDRAM, 16GB EMMC Flashoption. It can run Android 8.1,Ubuntu16.04,Ubuntu18.04,Debian9. Orange Pi 4 LTS offers a range of different ports, including HDMI output, 26pin headers, LCD connector, Gbps Ethernet port, 2*USB 2.0, 1*USB 3.0, 1*USB 3.0 TYPE-C, mini PCIE connector etc. It is powered through DC and Type-C. It is a good choice for applications that need strong networking perfomance.
### Hardware specification
- Rockchip RK3399 (4GB) or Rockchip RK3399-T(3GB)
- Based on the large and small size of big.LITTLE core architecture:Dual-core Cortex-A72 (large core)+ Quad-core Cortex-A53(small core)
- 6-core ARMR64-bit processor ,main frequency speeds up to 1.6GHz(3GB)/1.8 GHz(4GB)
- High-performance Multi-core Mali-T860 GPU
- Supports OpenGL ES1.1/2.0/3.0/3.1, OpenVG1.1, OpenCL, DX11
- Support for AFBC
- RK808 PMU
- 3 GB /4GB LPDDR4
- 16GB EMMC Flash (option)
- MicroSD (TF) Card Slot
- Support 10/100M/1000M Ethernet (YT8531C)
- CDW.20U5622-00
- Support IEEE 802.11 a/b/g/n/ac, 2T2R • Support BT 5.0
- HDMI 2.0,Supports 4K@60fps output
- 1* DP 1.2(Display Port), Supports 4K@60fps output
- Supports Dual MIPl-DSI (4 lines Per Channel)
- Output: 3.5mm Jack and HDMI2.0a
- lnput: MIC
- 2 * MIPI-CSl Camera Connector (MIPI_RXO、MIPI_TX1/RX1)
- 2 * USB2.0 ,1*USB3.0,1 * USB3.0 Type-C
- 3 pins Debug UART
- GPIO1 26 pins
- Support Mini PCIe port
- Upgrade Key & Reset Key
- DC 5V/3A or 5V/4A, TYPE-C 5V/4A
- Power led & Status led
- Android, Ubuntu, Debian
## Purchase
* [Aliexpress](https://www.aliexpress.us/item/3256803525557239.html)
* [Amazon](https://amzn.to/3fPtK3l)

View file

@ -1,67 +0,0 @@
---
layout: download
board_id: "orange_pi_lite"
title: "Orange Pi Lite Download"
name: "Orange Pi Lite"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/orangepilite/"
board_image: "orange_pi_lite.png"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2020-1-18
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- 40-pin GPIO
---
What's Orange Pi Lite
It's an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H3 SoC, and has 512MB DDR3 SDRAM.
What can I do with Orange Pi Lite?
You can use it to build…
A computer
A wireless server
Games
Music and sounds
HD video
A speaker
Android
Scratch
Pretty much anything else, because Orange Pi is open source
Who's it for?
Orange Pi Lite is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
- Mali400MP2 GPU @600MHz
- Supports OpenGL ES 2.0
- 512MB DDR3 (shared with GPU)
- TF card (Max. 32GB) / MMC card slot
- WiFi with external antenna
- A CSI input connector Camera
- Supports 8-bit YUV422 CMOS sensor interface
- Supports CCIR656 protocol for NTSC and PAL
- Supports SM pixel camera sensor
- Supports video capture solution up to 1080p@30fps
- MIC
- Supports HDMI output with HDCP
- Supports HDMI CEC
- Supports HDMI 30 function
- Integrated CVBS
- Supports simultaneous output of HDMI and CVBS
- vDC input can supply power, but USB OTG input dont supply power
- Two USB 2.0 HOST, one USB 2.0 OTG
- Power Button(SW4)
- 40 Pins Header.
- UART, ground.
- Power led & Status led
- IR input, POWER
- Android Ubuntu, Debian Image
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/32662738571.html?spm=a2g0o.productlist.0.0.756017c14GjaGI&algo_pvid=eb42f805-f4da-4d5b-8e7d-a95ba887558d&algo_expid=eb42f805-f4da-4d5b-8e7d-a95ba887558d-0&btsid=15fd8f3d-5a4c-41da-9cda-329a4cc9f037&ws_ab_test=searchweb0_0,searchweb201602_5,searchweb201603_53)

View file

@ -1,49 +0,0 @@
---
layout: download
board_id: "orange_pi_one"
title: "Orange Pi One Download"
name: "Orange Pi One"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/orangepione/"
board_image: "orange_pi_one.png"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2020-1-18
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
Whats Orange Pi One Its an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H3 SoC, and has 512MB DDR3 SDRAM
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
- Mali400MP2 GPU @600MHz
- Supports OpenGL ES 2.0
- 512MB DDR3 (shared with GPU)
- TF card (Max. 32GB) / MMC card slot
- 10/100M Ethernet RJ45
- A CSI input connector Camera
- Supports 8-bit YUV422 CMOS sensor interface
- Supports CCIR656 protocol for NTSC and PAL
- Supports SM pixel camera sensor
- Supports video capture solution up to 1080p@30fps
- MIC
- Supports HDMI output with HDCP
- Supports HDMI CEC
- Supports HDMI 30 function
- Integrated CVBS
- Supports simultaneous output of HDMI and CVBS
- vDC input can supply power, but USB OTG input dont supply power
- One USB 2.0 HOST, one USB 2.0 OTG
- Power Button(SW4)
- 40 Pins Header
- Power led & Status led
- IR input, POWER
- Android Ubuntu, Debian Image
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/32603308880.html?spm=2114.12010612.8148356.1.71126d5axQJcvl)

View file

@ -9,12 +9,11 @@ board_image: "orange_pi_pc.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2019-6-4
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -50,3 +49,7 @@ Whats Orange Pi PCIts an open-source single-board computer. It can run
## Purchase
* [Aliexpress](https://www.aliexpress.com/store/product/Orange-Pi-PC-linux-and-android-mini-PC-Beyond-Raspberry-Pi-2/1553371_32448079125.html)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,55 +0,0 @@
---
layout: download
board_id: "orange_pi_pc_plus"
title: "Orange Pi PC Plus Download"
name: "Orange Pi PC Plus"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/orangepipcplus/"
board_image: "orange_pi_pc_plus.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2020-3-25
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
Whats Orange Pi PC Plus
Its an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H3 SoC, and has 1GB DDR3 SDRAM.
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
- Mali400MP2 GPU @600MHz
- Supports OpenGL ES 2.0
- 1GB DDR3 (shared with GPU)
- TF card (Max. 32GB) / MMC card slot
- 8GB EMMC Flash
- 10/100M Ethernet RJ45
- A CSI input connector Camera
- Supports 8-bit YUV422 CMOS sensor interface
- Supports CCIR656 protocol for NTSC and PAL
- Supports SM pixel camera sensor
- Supports video capture solution up to 1080p@30fps
- MIC
- Supports HDMI output with HDCP
- Supports HDMI CEC
- Supports HDMI 30 function
- Integrated CVBS
- Supports simultaneous output of HDMI and CVBS
- v3.5 mm Jack and HDMI
- DC input can supply power, but USB OTG input dont supply power
- Three USB 2.0 HOST, one USB 2.0 OTG
- Power Button(SW4)
- 40 Pins Header
- GPIO(1x3) pin
- UART, ground.
- Power led & Status led
- IR input, POWER
- Android Ubuntu, Debian Image
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/32670775037.html)

View file

@ -1,72 +0,0 @@
---
layout: download
board_id: "orange_pi_plus_2e"
title: "Orange Pi Plus 2E Download"
name: "Orange Pi Plus 2E"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/orangepiplus2e/"
board_image: "orange_pi_plus_2e.png"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2020-1-18
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
What's Orange Pi Plus 2E
It's an open-source single-board computer. It can run Android 4.4 , Ubuntu, Debian Image, it uses the AllWinner H3 SoC, and has 2GB DDR3 SDRAM
What can I do with Orange Pi Plus 2E?
Build…
A computer
A wireless server
Games
Music and sounds
HD video
A speaker
Android
Scratch
Pretty much anything else, because Orange Pi Plus 2E is open source
Who's it for?
Orange Pi Plus 2E is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
- Mali400MP2 GPU @600MHz
- Supports OpenGL ES 2.0
- 2GB DDR3 (shared with GPU)
- 16GB EMMC Flash
- TF card (Max. 32GB) / MMC card slot
- 10/100M Ethernet RJ45
- WiFi - Realtek RTL8189ETV, IEEE 802.11 b/g/n
- A CSI input connector Camera
- Supports 8-bit YUV422 CMOS sensor interface
- Supports CCIR656 protocol for NTSC and PAL
- Supports SM pixel camera sensor
- Supports video capture solution up to 1080p@30fps
- MIC
- Supports HDMI output with HDCP
- Supports HDMI CEC
- Supports HDMI 30 function
- Integrated CVBS
- Supports simultaneous output of HDMI and CVBS
- v3.5 mm Jack and HDMI
- vDC input can supply power, but USB OTG input dont supply power
- Three USB 2.0 HOST, one USB 2.0 OTG
- Power Button(SW4), Recovery Button(SW3), Uboot Button(SW2)
- 40 Pins Header
- GPIO(1x3) pin
- UART, ground.
- Power led & Status led
- IR input, POWER
- Android Ubuntu, Debian Image
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/32665196281.html?spm=2114.12010612.8148356.1.382d5e2771I2wb)

View file

@ -9,11 +9,12 @@ board_image: "orange_pi_r1.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2019-6-4
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- Dual Ethernet
- 26-pin GPIO
- 13-pin Expansion
---
Whats Orange Pi R1Its an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H2 SoC, and has 256MB DDR3 SDRAM.
@ -39,3 +40,7 @@ Whats Orange Pi R1Its an open-source single-board computer. It can run
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/Orange-Pi-R1-H2-256MB-Quad-Core-Cortex-A7-Open-source-development-board-beyond-Raspberry-Pi/32827494728.html)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,40 +0,0 @@
---
layout: download
board_id: "orange_pi_zero"
title: "Orange Pi Zero Download"
name: "Orange Pi Zero"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/orangepizero/"
board_image: "orange_pi_zero.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
---
Orange Pi Zero is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- H2 Quad-core 32-bit Cortex-A7
- Mali400MP2 GPU @600MHz
- Supports OpenGL ES 2.0
- 256MB DDR3 (shared with GPU)
- TF card (Max. 32GB) / Spi flash(16MB)
- 100M Ethernet RJ45 (onboard 100Mbps)
- Onboard Wifi + Bluetooth
- Realtek RTL8189FTV, IEEE 802.11 b/g/n
- Supports external board via 13 pins
- USB 2.0 HOST and one USB 2.0 OTG
- GPIO(1x3) pin
- UART, ground.
- Power Button(SW602)
- 26 Pin Header
- 13 Pin Header, with 2x USB, IR pin, AUDIO(MIC, AV)
- Power led & Status led
- Android4.4, Lubuntu, Debian, Armbian Image
## Purchase
* [Aliexpress](https://www.aliexpress.com/item/4000049806939.html?spm=2114.12010612.8148356.1.7a5b1debQdbkLe)

View file

@ -1,44 +0,0 @@
---
layout: download
board_id: "orange_pi_zero2"
title: "Orange Pi Zero2 Download"
name: "Orange Pi Zero2"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/Orange%20Pi%20Zero2/"
board_image: "orange_pi_zero.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-2-8
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
---
Orange Pi Zero2 is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- Allwinner H616 64-bit high-performance Quad-core Cortex-A53 processor
- Mali G31 MP2
- Supports OpenGL ES 1.0/2.0/3.2, OpenCL 2.0
- 512 MB/1 GB DDR3 (Shared with GPU)
- TF card slot
- 2 MB SPI Flash
- Support 1000M/100M/10M Ethernet
- Onboard Wifi + Bluetooth
- AW859A Chip
- Support IEEE 802.11 a/b/g/n/ac
- Support BT5.0
- USB-C interface 5 V/2 A input
- 3*USB 2.0 HOST (Two of them are via 13pin interface board)
- UART-TX, UART-RX and GND
- Power Button(SW602)
- 26pin header with I2C, SPI, UART and multiple GPIO ports
- 13pin header with 2*USB Host, IR pin, Tv-out, AUDIO (no MIC) and 3 GPIO ports
- Power led & Status led
- Android 4.4, Lubuntu, Debian, Armbian Image
## Purchase
* [Amazon](https://www.amazon.com/dp/B08M9MWZCQ)
* [Aliexpress](https://www.aliexpress.com/item/1005001652164182.html)

View file

@ -1,60 +0,0 @@
---
layout: download
board_id: "orange_pi_zero_plus"
title: "Orange Pi Zero Plus Download"
name: "Orange Pi Zero Plus"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/OrangePiZeroPlus/"
board_image: "orange_pi_zero_plus.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2021-1-14
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
Whats Orange Pi Zero Plus
Its an open-source single-board computer. It can run Android 5.1, Ubuntu, Debian image. It uses the AllWinner H5 SoC, and has 512MB DDR3 SDRAM.
What can I do with Orange Pi Zero Plus?
Build…
A computer
A wireless server
Games
Music and sounds
HD video
A speaker
Android
Scratch
Pretty much anything else, because Orange Pi Zero Plus is open source
Whos it for?
Orange Pi Zero Plus is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- H5 Quad-core Cortex-A53
- H5 Mali450 GPU
- 512MB DDR3 (shared with GPU)
- TF card (Max. 32GB) / Spi flash(2MB)
- Realtek RTL8189FTV, IEEE 802.11 b/g/n
- 1000M/100M/10M Ethernet RJ45
- Supports external board via 13pins
- USB OTG can supply power
- UART, ground
- One USB 2.0 HOST, One USB 2.0 OTG
- Power Button(SW602)
- 26 Pins Header, compatible with Raspberry Pi B+
- 13 Pins Header, with 2x USB, IR pin, AUDIO(MIC, AV)
- Power led & Status led
- Android5.1, Lubuntu, Debian, Armbian Image
## Purchase
* [AliExpress](https://www.aliexpress.com/item/32828347476.html)

View file

@ -1,66 +0,0 @@
---
layout: download
board_id: "orange_pi_zero_plus2_h5"
title: "Orange Pi Zero Plus2 (H5 Version) Download"
name: "Orange Pi Zero Plus2 (H5 Version)"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/OrangePiZeroPlus2/"
board_image: "orange_pi_zero_plus2_h5.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-11-2
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
Whats Orange Pi Zero Plus2
Its an open-source single-board computer. It can run Android 4.4(H3 version)/Android 5.1(H5 version) , Ubuntu, Debian, it uses the AllWinner H3/H5 SoC, and has 512MB DDR3 SDRAM.
What can I do with Orange Pi Zero Plus2?
Build…
A computer
A wireless server
Games
Music and sounds
HD video
A speaker
Android
Scratch
Pretty much anything else, because Orange Pi Zero Plus2 is open source
Who's it for?
Orange Pi Zero Plus2 is for anyone who wants to start creating with technology not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
- H5 Quad-core Cortex-A53
- H3 Quad-core Cortex-A7
- H5 Mali450 GPU
- H3 Mali400MP2 GPU
- 512MB DDR3 (shared with GPU)
- AP6212, IEEE 802.11 b/g/n, BT4.2
- A CSI input connector Camera
- Supports 8-bit YUV422 CMOS sensor interface
- Supports CCIR656 protocol for NTSC and PAL
- Supports SM pixel camera sensor
- Supports video capture solution up to 1080p@30fps
- Supports HDMI output with HDCP
- Supports HDMI CEC
- Supports HDMI 30 function
- USB OTG can supply power
- UART, ground
- Power Button
- 26 Pins Header, compatible with Raspberry Pi B+
- 13 Pins Header, with 2x USB, IR pin, AUDIO(MIC, AV)
- Power led & Status led
- Android Ubuntu, Debian, Raspbian Image
## Purchase
* [Newegg](https://www.newegg.com/p/285-002U-00005)

View file

@ -1,47 +0,0 @@
---
layout: download
board_id: "pine64"
title: "Pine A64+ Download"
name: "Pine A64+"
manufacturer: "Pine64"
board_url: "https://www.pine64.org/devices/single-board-computers/pine-a64/"
board_image: "pine64.png"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-1-9
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
The PINE A64 (+) is the first pine64.org Single Board Computer powered by Allwinners A64 Quad-Core ARM Cortex A53 64-Bit SOC. There are many Operating Systems available for the PINE A64 (+) created by the open source community and various partner projects. Currently the majority of Linux distributions for the PINE A64 are using mainline Linux but there are a number of BSP-based distribution and / or legacy systems that you can download too.
Apart from Linux, you also have a choice of a selection of *BSDs, Android, Remix OS and Windows IoT.
- Allwinner A64 Quad Core SOC with Mali 400 MP2 GPU
- DDR3 RAM (up to 2GB)
- Gigabit Ethernet
- Micro SD
- HD Digital Video Out
- 2x USB 2.0 Host
- Euler Bus
- Expansion Bus
- PI-2 Bus
- Touch Panel Port (TP)
- Display Serial Interface (DSI) Port
- IR R/X Port
- Real Time Clock Port (RTC)
- Lithium Battery Port
- CMOS Sensor Interface Port
- Optional 802.11GBN + BT 4.0 module expansion module
- Headphone Jack
- Micro USB Power (5V 2A) Port
## Purchase
* [pine64 2GB](https://store.pine64.org/?product=pine-a64-board-2gb)
* [pine64 1GB](https://store.pine64.org/?product=pine-a64-board-1gb)
* [pine64 512MB](https://store.pine64.org/?product=pine-a64-board)

View file

@ -1,42 +0,0 @@
---
layout: download
board_id: "pine_h64"
title: "PINE H64 Download"
name: "PINE H64"
manufacturer: "Pine64"
board_url: "https://www.pine64.org/pine-h64-ver-b/"
board_image: "pine_h64.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-11-1
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
---
PINE H64 is latest Single Board Computer by Pine64. Its powered by an Allwinner “H6” Quad-Core ARM Cortex A53 64-Bit Processor with MALI T-722 GPU. The PINE H64 is equipped with up-to 3GB LPDDR3 PC-1600 system memory and 128Mb SPI boot Flash. There is also an optional eMMC module (up to 128GB) and microSD slot for booting. The board is equipped with an onboard build-in 11n Wifi/BT, 1x USB 3.0 Host, 2x USB 2.0 Host, Gigabit Ethernet, PI-2 GPIO Bus, Euler GPIO Bus as well as many other peripheral device interface such as UART, SPI, I2C, for makers to integrate with sensors and other peripherals.
- Allwinner H6 Quad-Core SOC with Mali T-722 MP2
- LPDDR3 RAM (up to 3GB)
- Gigabit Ethernet
- Micro SD Slot
- eMMC Module Slot
- SPI Flash 128Mbit
- 4K Digital Video Out
- 2x USB 2.0 Host
- 1x USB 3.0 Host
- PI-2 Bus
- IR R/X Port
- Real Time Clock Port (RTC)
- A/V Jack
- Integrated WiFi 802.11n / BT 4.0
- Power, Reset and Recovery buttons
- 3.5mm Barrel Power (5V 3A) Port
## Purchase
* [pine64 2GB](https://pine64.com/product/pine-h64-model-b-2gb-single-board-computer)
* [pine64 3GB](https://pine64.com/product/pine-h64-model-b-3gb-single-board-computer/)

View file

@ -1,35 +0,0 @@
---
layout: download
board_id: "pocketbeagle"
title: "PocketBeagle"
name: "PocketBeagle"
manufacturer: "BeagleBoard"
board_url: "https://beagleboard.org/pocket"
board_image: "pocketbeagle.jpg"
downloads_display: true
blinka: true
date_added: 2019-12-3
features:
- Ethernet
- HDMI/DisplayPort
---
Want a powerful 1GHz AM3358 powered Linux single board that's ultra-tiny and open-source? PocketBeagle offers a wealth of computer power in a small footprint (pawprint?). This board is just like the BeagleBone Black but small enough to fit in your wallet. It has a fully-integrated chip that combines the processor and RAM all on one chip, so it's super small. Despite the compact shape, there are 72 total breakout pads, a microSD card slot for your filesystem and OS, and a native USB connection
Compared to other single board Linux computers, what differentiates the BeagleBone is that it has multiple I2C, SPI and UART peripherals (many boards only have one of each), built in hardware PWMs, analog inputs, and two separate 200MHz microcontroller system called the PRU that can handle real-time tasks like displaying to RGB matrix displays or NeoPixels.
It's not too much larger than our Feathers, but comes with 72 expansion pin headers, high-speed USB, 8 analog pins, 44 digital I/Os, and plenty of digital interface peripherals.
You can also add a USB host connection by wiring a USB A socket to the broken out USB host connections labeled VI, D+, D-, ID and GND. Then plug in any USB Ethernet, Bluetooth, and Wi-Fi device with available Linux drivers.
- Processor: Octavo Systems OSD3358 1GHz ARM® Cortex-A8
- 512MB DDR3 RAM integrated
- Integrated power management
- 2×32-bit 200-MHz programmable real-time units (PRUs)
- ARM Cortex-M3
- Based on new Octavo Systems OSD3358-SM 21mm x 21mm system-in-package that includes 512MB DDR3 RAM, 1-GHz ARM Cortex-A8 CPU, 2x 200-MHz PRUs, ARM Cortex-M3, 3D accelerator, power/battery management and EEPROM
- 72 expansion pin headers with power and battery I/Os, high-speed USB, 8 analog inputs, 44 digital I/Os and numerous digital interface peripherals
- microUSB host/client and microSD connectors
## Purchase
* [Adafruit](https://www.adafruit.com/product/4179)

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "pyboard_v11"
title: "Pyboard Download"
name: "Pyboard"
manufacturer: "Damien George"
board_url: "https://www.adafruit.com/product/2390"
board_image: "pyboard_v11.jpg"
date_added: 2021-5-24
---
The pyboard is a compact and powerful electronics development board that runs MicroPython. It connects to your PC over USB, giving you a USB flash drive to save your Python scripts, and a serial Python prompt (a REPL) for instant programming. Requires a micro USB cable, and will work with Windows, Mac and Linux.
There are 3 main ways to control the pyboard:
* **REPL:** Connecting to your PC via USB, the board appears as a USB virtual comms port (CDC VCP) and you can use any serial program to connect and get a Python REPL prompt. This allows you to instantly type and execute Python commands, just like you would when running Python on your PC. You can also redirect the REPL to any of the UARTs on the pyboard.
* **Remote script:** You can change from REPL to raw REPL mode by sending ctrl-A, and then in raw REPL mode you can send an arbitrary Python script to the board for it to execute immediately. A Python script is available which makes using this mode very simple: you just run python pyboard.py script_to_run.py and this will execute script_to_run.py on the pyboard, returning any output.
* **From file:** The pyboard has a small, built-in filesystem which lives in part of the flash memory of the microcontroller. It also has an SD card slot if you want to extend the available storage. When you connect the pyboard to your PC, it appears as a USB flash storage device and you can access (mount) the internal filesystem and the SD card this way. If you copy a Python script to the filesystem and call it main.py then the board will execute this script when it starts up. This way you can run scripts without being connected to a PC.
**Main features of the hardware:**
* STM32F405RG microcontroller
* 168 MHz Cortex M4 CPU with hardware floating point
* 1024KiB flash ROM and 192KiB RAM
* Micro USB connector for power and serial communication
* Micro SD card slot, supporting standard and high capacity SD cards
* 3-axis accelerometer (MMA7660)
* Real time clock with optional battery backup
* 24 GPIO on left and right edges and 5 GPIO on bottom row, plus LED and switch GPIO available on bottom row
* 3x 12-bit analog to digital converters, available on 16 pins, 4 with analog ground shielding
* 2x 12-bit digital to analog (DAC) converters, available on pins X5 and X6
* 4 LEDs (red, green, yellow and blue)
* 1 reset and 1 user switch
* On-board 3.3V LDO voltage regulator, capable of supplying up to 300mA, input voltage range 3.6V to 10V
* DFU bootloader in ROM for easy upgrading of firmware
## Purchase
* [Adafruit](https://www.adafruit.com/product/2390)

View file

@ -1,60 +0,0 @@
---
layout: download
board_id: "radxa_zero"
title: "Radxa Zero Download"
name: "Radxa Zero"
manufacturer: "Radxa"
board_url: "https://wiki.radxa.com/Zero"
board_image: "radxa_zero.jpg"
downloads_display: true
blinka: true
date_added: "2022-6-2"
features:
- HDMI/DisplayPort
- Wi-Fi
- Bluetooth/BLE
- USB 3.0
- 40-pin GPIO
---
Radxa Zero is an ultra thin SBC in small form factor with powerful performance based on Amlogic S905Y2. It can run Android and selected Linux distributions.
Radxa Zero features a quad core 64-bit ARM processor, up to 4GB 32bit LPDDR4 memory, HDMI output at 4K@60, WiFi and Bluetooth connectivity, USB 3.0, and 40-pin GPIO header. Additionally, the power port can also be used for USB 2.0 OTG to connect more peripheral.
## Technical details
* Size 66mm x 30mm
* Amlogic S905Y2 64bit quad core processor
* Quad Cortex-A53, frequency 1.8Ghz, 12nm
* Mali G31 MP2 GPU, supports OpenGL ES 1.1 /2.0 /3.1 /3.2, Vulkan 1.1, Open CL 1.1 1.2, 2.0 Full Profile
* 64bit dual channel LPDDR4@3200Mb/s, 1GB/ 2GB or 4GB
* Wifi/BT with external antenna support
* WIFI4/BLE4 and WIFI4/BLE5 available for different models!
* soldered high performance eMMC 5.1 with capacities of 8GB/ 16GB
* uSD slot supports up to 128G uSD card
* HDMI 2.1, 4K@60 HDR
* HD codec H265/VP9 decode 4Kx2K@60
* USB 3.0 Type-C HOST x1
* USB 2.0 Type-C OTG x1
* Network (depending on the model)
- Wireless 802.11 abgn wifi 2,4GHz, Bluetooth 4.2
- Wireless 802.11 ac wifi 2,4/5GHz, Bluetooth 5.0
* IO 40-pin expansion header (depending on the model):
- 1 x UART
- 2 x SPI bus
- 2 x I2C bus
- 1 x PCM/I2S
- 1 x SPDIF
- 1 x PWM
- 1 x ADC
- 6 x GPIO
- 2 x 5V DC power in
- 2 x 3.3V power pin
## Tutorials
* [Radxa Zero - Getting Started](https://wiki.radxa.com/Zero/getting_started)
## Purchase
* [ALLNET.CHINA](https://shop.allnetchina.cn/products/copy-of-radxa-zero)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,17 @@
layout: download
board_id: "raspberry_pi_1a"
title: "Raspberry Pi 1 Model A Download"
name: "Pi 1 Model A"
manufacturer: "Raspberry Pi"
name: "Raspberry Pi 1 Model A"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.adafruit.com/product/998"
board_image: "raspberry_pi_1a.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- HDMI/DisplayPort
- HDMI
- Composite Video
- 26-pin GPIO
---
The Raspberry Pi 1 Model A is the original Model A. In November 2014 It was superseded by the Raspberry Pi 1 Model A+
@ -25,3 +26,7 @@ The Raspberry Pi 1 Model A is the original Model A. In November 2014 It was sup
- DSI display port for connecting a Raspberry Pi touchscreen display
- Stereo audio output port
- Full-size SD port for loading your operating system and storing data
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,15 @@
layout: download
board_id: "raspberry_pi_1aplus"
title: "Raspberry Pi 1 Model A+ Download"
name: "Pi 1 Model A+"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-1-model-a-plus/"
name: "Raspberry Pi 1 Model A+"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-1-model-a-plus/"
board_image: "raspberry_pi_1aplus.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -30,3 +29,7 @@ The Model A+ is the low-cost variant of the Raspberry Pi. It replaced the origin
## Purchase
* [Raspberry Pi](https://www.raspberrypi.org/products/raspberry-pi-1-model-a-plus/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,17 +2,18 @@
layout: download
board_id: "raspberry_pi_1b"
title: "Raspberry Pi 1 Model B Download"
name: "Pi 1 Model B"
manufacturer: "Raspberry Pi"
name: "Raspberry Pi 1 Model B"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.adafruit.com/product/998"
board_image: "raspberry_pi_1b.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Ethernet
- HDMI/DisplayPort
- HDMI
- Composite Video
- 26-pin GPIO
---
The Model B was the original Raspberry Pi Model B and consisted of two revisions. In July 2014 It was superseded by the Raspberry Pi 1 Model B+
@ -26,3 +27,7 @@ The Model B was the original Raspberry Pi Model B and consisted of two revisions
- DSI display port for connecting a Raspberry Pi touchscreen display
- Stereo audio output port
- Full-size SD port for loading your operating system and storing data
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,17 +2,16 @@
layout: download
board_id: "raspberry_pi_1bplus"
title: "Raspberry Pi 1 Model B+ Download"
name: "Pi 1 Model B+"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-1-model-b-plus/"
name: "Raspberry Pi 1 Model B+"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-1-model-b-plus/"
board_image: "raspberry_pi_1bplus.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -31,3 +30,7 @@ The Model B+ is the final revision of the original Raspberry Pi. It replaced the
## Purchase
* [Adafruit](https://www.adafruit.com/product/1914)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,17 +2,16 @@
layout: download
board_id: "raspberry_pi_2b"
title: "Raspberry Pi 2 Model B Download"
name: "Pi 2 Model B"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-2-model-b/"
name: "Raspberry Pi 2 Model B"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-2-model-b/"
board_image: "raspberry_pi_2b.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -34,3 +33,7 @@ The Raspberry Pi 2 Model B is the second-generation Raspberry Pi. It replaced th
## Purchase
* [Raspberry Pi](https://www.raspberrypi.org/products/raspberry-pi-2-model-b/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,18 +2,17 @@
layout: download
board_id: "raspberry_pi_3aplus"
title: "Raspberry Pi 3 Model A+ Download"
name: "Pi 3 Model A+"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-3-model-a-plus/"
name: "Raspberry Pi 3 Model A+"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-3-model-a-plus/"
board_image: "raspberry_pi_3aplus.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -33,3 +32,7 @@ The Raspberry Pi 3 Model A+ is the latest board for the minimalist Pi fan. Like
## Purchase
* [Adafruit](https://www.adafruit.com/product/4027)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,19 +2,18 @@
layout: download
board_id: "raspberry_pi_3bplus"
title: "Raspberry Pi 3 Model B Download"
name: "Pi 3 Model B"
manufacturer: "Raspberry Pi"
name: "Raspberry Pi 3 Model B"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-3-model-b/"
board_image: "raspberry_pi_3b.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -35,3 +34,7 @@ Did you really think the Raspberry Pi would stop getting better? At this point,
## Purchase
* [Adafruit](https://www.adafruit.com/product/3055)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,19 +2,18 @@
layout: download
board_id: "raspberry_pi_3bplus"
title: "Raspberry Pi 3 Model B+ Download"
name: "Pi 3 Model B+"
manufacturer: "Raspberry Pi"
name: "Raspberry Pi 3 Model B+"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/"
board_image: "raspberry_pi_3bplus.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- HDMI
- 40-pin GPIO
---
@ -38,3 +37,7 @@ The Raspberry Pi 3 Model B+ is the latest product in the Raspberry Pi 3 range, b
## Purchase
* [Adafruit](https://www.adafruit.com/product/3775)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,40 +0,0 @@
---
layout: download
board_id: "raspberry_pi_400"
title: "Raspberry Pi 400 Desktop Download"
name: "Pi 400 Desktop"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-400-unit"
board_image: "raspberry_pi_400.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2020-11-2
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
- USB 3.0
---
Raspberry Pi 400 is your complete personal computer, built into a compact keyboard. Featuring a quad-core 64-bit processor, 4GB of RAM, wireless networking, dual-display output, and 4K video playback, as well as a 40-pin GPIO header, it's the most powerful and easy-to-use Raspberry Pi computer yet.
- Broadcom BCM2711 quad-core Cortex-A72 (ARM v8) 64-bit SoC @ 1.8GHz
- 4GB LPDDR4-3200
- Dual-band (2.4GHz and 5.0GHz) IEEE 802.11b/g/n/ac wireless LAN
- Bluetooth 5.0, BLE
- Gigabit Ethernet
- 2 × USB 3.0 and 1 × USB 2.0 ports
- Horizontal 40-pin GPIO header
- 2 × micro HDMI ports (supports up to 4Kp60)
- H.265 (4Kp60 decode); H.264 (1080p60 decode, 1080p30 encode); OpenGL ES 3.0 graphics
- MicroSD card slot for operating system and data storage
- 78- or 79-key compact keyboard (depending on regional variant)
- 5V DC via USB connector
- Operating temperature: 0°C to +50°C ambient
- Maximum dimensions 286 mm × 122 mm × 23 mm
## Purchase
* [Adafruit](https://www.adafruit.com/product/4796)

View file

@ -2,21 +2,19 @@
layout: download
board_id: "raspberry_pi_4b"
title: "Raspberry Pi 4 Model B Download"
name: "Pi 4 Model B"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-4-model-b/"
name: "Raspberry Pi 4 Model B"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-4-model-b/"
board_image: "raspberry_pi_4b.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-24
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- Dual micro-HDMI
- 40-pin GPIO
- USB 3.0
---
The Raspberry Pi 4 Model B is the newest Raspberry Pi computer made, and the Pi Foundation knows you can always make a good thing better! And what could make the Pi 4 better than the 3? How about a faster processor, USB 3.0 ports, and updated Gigabit Ethernet chip with PoE capability? Good guess - that's exactly what they did!
@ -44,3 +42,7 @@ The Raspberry Pi 4 is the latest product in the Raspberry Pi range, boasting an
## Purchase
* [Adafruit](https://www.adafruit.com/product/4295)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,19 @@
layout: download
board_id: "raspberry_pi_cm1"
title: "Raspberry Pi Compute Module 1 Download"
name: "Compute Module 1"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/compute-module-1/"
name: "Raspberry Pi Compute Module 1"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/compute-module-1/"
board_image: "raspberry_pi_cm1.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-24
features:
- HDMI/DisplayPort
- HDMI
- eMMC Flash
- SD Card Interface
- Modular
- 46 GPIO Pins
---
The Compute Module is a Raspberry Pi in a more flexible form factor, intended for industrial application.
@ -24,3 +27,7 @@ The original Compute Module was replaced by CM3 in January 2017 but is compatibl
## Purchase
* [Raspberry Pi Foundation](https://www.raspberrypi.org/products/compute-module-io-board-v3/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,19 @@
layout: download
board_id: "raspberry_pi_cm3"
title: "Raspberry Pi Compute Module 3 Download"
name: "Compute Module 3"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/compute-module-3/"
name: "Raspberry Pi Compute Module 3"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/compute-module-3/"
board_image: "raspberry_pi_cm3.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-24
features:
- HDMI/DisplayPort
- HDMI
- eMMC Flash
- SD Card Interface
- Modular
- 46 GPIO Pins
---
The Compute Module 3 contains the guts of a Raspberry Pi 3 (the BCM2837 processor and 1GB RAM) as well as an optional 4GB eMMC Flash device (which is the equivalent of the SD card in the Pi). The Pi 3 has a processor speed of 1.2GHz and runs at roughly 10 times the speed of the Pi 1 due to its quad-core CPU. This is all integrated on to a small 67.6mm x 31mm board which fits into a standard DDR2 SODIMM connector (the same type of connector as used for laptop memory). The Flash memory is connected directly to the processor on the board, but the remaining processor interfaces are available to the user via the connector pins. You get the full flexibility of the BCM2837 SoC (which means that many more GPIOs and interfaces are available as compared to the Raspberry Pi), and designing the Module into a custom system should be relatively straightforward as weve put all the tricky bits onto the Module itself.
@ -20,3 +23,7 @@ The Compute Module is available for purchase in single units, or in batches of h
## Purchase
* [Raspberry Pi Foundation](https://www.raspberrypi.org/products/compute-module-io-board-v3/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,18 @@
layout: download
board_id: "raspberry_pi_cm3lite"
title: "Raspberry Pi Compute Module 3 Lite Download"
name: "Compute Module 3 Lite"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/compute-module-3/"
name: "Raspberry Pi Compute Module 3 Lite"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/compute-module-3/"
board_image: "raspberry_pi_cm3lite.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-24
features:
- HDMI/DisplayPort
- HDMI
- SD Card Interface
- Modular
- 46 GPIO Pins
---
The Compute Module 3 contains the guts of a Raspberry Pi 3 (the BCM2837 processor and 1GB RAM) as well as an optional 4GB eMMC Flash device (which is the equivalent of the SD card in the Pi). The Pi 3 has a processor speed of 1.2GHz and runs at roughly 10 times the speed of the Pi 1 due to its quad-core CPU. This is all integrated on to a small 67.6mm x 31mm board which fits into a standard DDR2 SODIMM connector (the same type of connector as used for laptop memory). The Flash memory is connected directly to the processor on the board, but the remaining processor interfaces are available to the user via the connector pins. You get the full flexibility of the BCM2837 SoC (which means that many more GPIOs and interfaces are available as compared to the Raspberry Pi), and designing the Module into a custom system should be relatively straightforward as weve put all the tricky bits onto the Module itself.
@ -22,3 +24,7 @@ The Compute Modules 3 Lite brings the SD card interface to the Module pins so a
## Purchase
* [Raspberry Pi Foundation](https://www.raspberrypi.org/products/compute-module-io-board-v3/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,19 @@
layout: download
board_id: "raspberry_pi_cm3plus"
title: "Raspberry Pi Compute Module 3+ Download"
name: "Compute Module 3+"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/compute-module-3-plus/"
name: "Raspberry Pi Compute Module 3+"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/compute-module-3-plus/"
board_image: "raspberry_pi_cm3plus.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-24
features:
- HDMI/DisplayPort
- HDMI
- eMMC Flash
- SD Card Interface
- Modular
- 46 GPIO Pins
---
The Compute Module is a Raspberry Pi in a more flexible form factor, intended for industrial application. CM3+ (Compute Module 3+) is the Raspberry Pi 3 B+-based revision of the original Compute Module. The big update to the CM3+ compared to the CM3 series is more eMMC Flash memory and the new heat spreader on the main processor which will let it run at full speed much faster without overheating.
@ -22,3 +25,7 @@ The Flash memory is connected directly to the processor on the board, but the re
## Purchase
* [Adafruit](https://www.adafruit.com/product/4094)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -2,16 +2,19 @@
layout: download
board_id: "raspberry_pi_cm3pluslite"
title: "Raspberry Pi Compute Module 3+ Lite Download"
name: "Compute Module 3+ Lite"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/compute-module-3-plus/"
name: "Raspberry Pi Compute Module 3+ Lite"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/compute-module-3-plus/"
board_image: "raspberry_pi_cm3pluslite.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-24
features:
- HDMI/DisplayPort
- HDMI
- eMMC Flash
- SD Card Interface
- Modular
- 46 GPIO Pins
---
The Compute Module is a Raspberry Pi in a more flexible form factor, intended for industrial application. CM3+ (Compute Module 3+ Lite) is the Raspberry Pi 3 B+-based revision of the original Compute Module. The big update to the CM3+ compared to the CM3 series is the new heat spreader on the main processor which will let it run at full speed much faster without overheating.
@ -24,3 +27,7 @@ This version is intended for users who will be adding and using an SD card inter
## Purchase
* [Adafruit](https://www.adafruit.com/product/4093)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,55 +0,0 @@
---
layout: download
board_id: "raspberry_pi_cm4io"
title: "Raspberry Pi Compute Module 4 IO Board Download"
name: "Compute Module 4 IO Board"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/compute-module-4-io-board/"
board_image: "raspberrypi_cm4io.jpg"
download_instructions:
downloads_display: true
blinka: true
date_added: 2020-12-10
features:
- HDMI/DisplayPort
- Ethernet
- Wi-Fi
- 40-pin GPIO
- Bluetooth/BLE
---
Compute Module 4
The power of Raspberry Pi 4 in a compact form factor for deeply embedded applications. Raspberry Pi Compute Module 4 incorporates a quad-core ARM Cortex-A72 processor, dual video output, and a wide selection of other interfaces. Available in 32 variants, with a range of RAM and eMMC Flash options, and with or without wireless connectivity.
* Broadcom BCM2711 quad-core Cortex-A72 (ARM v8) 64-bit SoC @ 1.5GHz
* H.265 (HEVC) (up to 4Kp60 decode), H.264 (up to 1080p60 decode, 1080p30 encode)
* OpenGL ES 3.0 graphics
* Options for 1GB, 2GB, 4GB or 8GB LPDDR4-3200 SDRAM (depending on variant)
* Options for 0GB ("Lite"), 8GB, 16GB or 32GB eMMC Flash memory (depending on variant)
* Option for fully certified radio module:
* 2.4 GHz, 5.0 GHz IEEE 802.11 b/g/n/ac wireless;
* Bluetooth 5.0, BLE;
* On-board electronic switch to select either external or PCB trace antenna
Compute Module 4 IO Board
Exposing every interface from Raspberry Pi Compute Module 4, the Compute Module 4 IO Board provides a development platform and reference base-board design for our most powerful Compute Module yet.
* External power connector (+12V, +5V)
* 2 x full-size HDMI 2.0 connectors
* 2 x USB 2.0 connectors, with header for two additional connectors
* Gigabit Ethernet RJ45 with PoE support
* Micro USB socket for updating Compute Module 4
* MicroSD card socket for Compute Module 4 Lite (without eMMC) variants
* PCIe Gen 2 x1 socket
* Standard fan connector
* 2 x MIPI DSI display FPC connectors (22-pin 0.5 mm pitch cable)
* 2 x MIPI CSI-2 camera FPC connectors (22-pin 0.5 mm pitch cable)
* Standard Raspberry Pi HAT connectors
* Real-time clock with battery socket and ability to wake Compute Module 4
* Various jumpers to disable specific features, e.g. wireless connectivity, EEPROM writing
## Purchase
* [Adafruit - CM4](https://www.adafruit.com/product/4782)
* [Adafruit - IO Board](https://www.adafruit.com/product/4787)

View file

@ -1,56 +0,0 @@
---
layout: download
board_id: "raspberry_pi_pico"
title: "Pico Download"
name: "Pico"
manufacturer: "Raspberry Pi"
board_url: "https://www.adafruit.com/product/4883"
board_image: "raspberry_pi_pico.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-micropython-using-the-raspberry-pi-pico"
downloads_display: true
blinka: true
date_added: 2021-5-20
---
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.
The Pico is 0.825" x 2" and can have headers soldered in for use in a breadboard or perfboard, or can be soldered directly onto a PCB with the castellated pads. 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 of 25 GPIO pins (technically there are 26 but IO #15 has a special purpose and should not be used by projects), 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, 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 create custom hardware logic and data processing blocks that 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.
**At the time of launch, there is no Arduino core support for this board. There is [great C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/micropython), and a CircuitPython port!** We of course [recommend CircuitPython because we think its the easiest way to get started](https://learn.adafruit.com/welcome-to-circuitpython) and it has support with most our drivers, displays, sensors, and more, supported out of the box so you can follow along with our CircuitPython projects and tutorials.
While the RP2040 has lots of onboard RAM (264KB), it does not have built in FLASH memory. Instead that is provided by the external QSPI flash chip. On this board there is 2MB, which is shared between the program its 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 1 MB remaining for code, files, images, fonts, etc.
**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 for the Raspberry Pi documentation.](https://raspberrypi.org/documentation/pico/getting-started/)
[Click here for CircuitPython Libraries on MicroPython using the Raspberry Pi Pico.](https://learn.adafruit.com/circuitpython-libraries-on-micropython-using-the-raspberry-pi-pico)
[Click here for CircuitPython Libraries on any Computer with Raspberry Pi Pico.](https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico)
## Purchase
* [Adafruit](https://www.adafruit.com/product/4883)

View file

@ -2,16 +2,15 @@
layout: download
board_id: "raspberry_pi_zero"
title: "Raspberry Pi Zero Download"
name: "Zero"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-zero/"
name: "Raspberry Pi Zero"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-zero/"
board_image: "raspberry_pi_zero.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- HDMI/DisplayPort
- Mini HDMI
- 40-pin GPIO
---
@ -30,3 +29,7 @@ This is the slimmest, most pared down Raspberry Pi to date. It's kind of like t
## Purchase
* [Adafruit](https://www.adafruit.com/product/2885)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,27 +0,0 @@
---
layout: download
board_id: "raspberry_pi_zero_2_w"
title: "Raspberry Pi Zero 2 W Download"
name: "Zero 2 W"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-zero-2-w/"
board_image: "raspberry_pi_zero_2_w.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2021-11-1
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- 40-pin GPIO
---
**Raspberry Pi Zero 2 W** is the latest product in Raspberry Pi's most affordable range of single-board computers. The successor to the breakthrough Raspberry Pi Zero W, **Raspberry Pi Zero 2 W** is a form factorcompatible drop-in replacement for the original board.
The board incorporates a quad-core 64-bit Arm Cortex-A53 CPU, clocked at 1GHz. At its heart is a Raspberry Pi RP3A0 system-in-package (SiP), integrating a Broadcom BCM2710A1 die with 512MB of LPDDR2 SDRAM. The upgraded processor provides Raspberry Pi Zero 2 W with 40% more single-threaded performance, and five times more multi-threaded performance, than the original single-core Raspberry Pi Zero. Raspberry Pi Zero 2 W offers 2.4GHz 802.11 b/g/n wireless LAN and Bluetooth 4.2, along with support for Bluetooth Low Energy (BLE), and modular compliance certification.
The board has a microSD card slot, a CSI-2 camera connector, a USB On-The-Go (OTG) port, and an unpopulated footprint for a HAT-compatible 40-pin GPIO header. It is powered via a micro USB socket. Video output is via a mini HDMI port; composite video output can easily be made available via test points, if needed. Sharing the same form factor as the original Raspberry Pi Zero, Raspberry Pi Zero 2 W fits inside most existing Raspberry Pi Zero cases.
## Purchase
* [Adafruit](https://www.adafruit.com/product/5291)

View file

@ -2,18 +2,17 @@
layout: download
board_id: "raspberry_pi_zerow"
title: "Raspberry Pi Zero W Download"
name: "Zero W"
manufacturer: "Raspberry Pi"
board_url: "https://www.raspberrypi.com/products/raspberry-pi-zero-w/"
name: "Raspberry Pi Zero W"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/products/raspberry-pi-zero-w/"
board_image: "raspberry_pi_zerow.jpg"
download_instructions: "https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi"
downloads_display: true
blinka: true
date_added: 2019-6-17
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI/DisplayPort
- Mini HDMI
- 40-pin GPIO
---
@ -34,3 +33,7 @@ More specifically, this giant upgrade is the addition of a BCM43143 WiFi chip BU
## Purchase
* [Adafruit](https://www.adafruit.com/product/3400)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).

View file

@ -1,39 +0,0 @@
---
layout: download
board_id: "rock_pi_4c"
title: "Rock Pi 4C Download"
name: "Rock Pi 4C"
manufacturer: "Radxa Limited"
board_url: "https://wiki.radxa.com/Rockpi4"
board_image: "rock_pi_4c.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2021-4-6
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI/DisplayPort
- 40-pin GPIO
- USB 3.0
---
- Powerful Rockchip RK3399 64-bit Hexa-core processor for better multithread application performance
- Mali T860MP4 Quad-core GPU for AI capabilities
- Better IO performance with multiple storage options
- Faster wireless connectivity with 2.4/5GHz Wi-Fi and Bluetooth 5.0
- GbE LAN to work without latency under heavy load
- Dual Display output with mirror or extended modes
- Color-coded 40-pin GPIO header to interface with a range of sensors
ROCK Pi 4 Model C is a Rockchip RK3399 based SBC(Single Board Computer) by [Radxa](https://wiki.radxa.com/Special:SpecialContact/). It can run android or some Linux distributions. It features a six-core ARM processor, 64bit dual channel 3200Mb/s 4GB LPDDR4, up to 4K@60 HDMI, MIPI DSI, MIPI CSI, 3.5mm jack with mic, 2.4/5GHz WIFI, Bluetooth 5.0, USB Ports, GbE LAN, 40-pin color-coded expansion header, RTC. Also, ROCK Pi 4 model C supports USB PD and QC powering.
ROCK Pi has a modern and powerful hexa-core ARM-based processor, RK3399 inside, it offers significantly improved performance versus other popular SBC boards. All models are equipped with LPDDR4 3200Mb/s RAM. Furthermore, you can add high-performance [eMMC modules](https://www.seeedstudio.com/tag/EMMC.html), to boost all applications performance.
ROCK Pi features maker friendly expansion options, including a 40-pin GPIO interface that allows for interfacing with range inputs from buttons, switches, sensors, LEDs, and much more. ROCK Pi also features a Gbit LAN for the network, with dedicated bus and controller, it works without latency under heavy load network applications. Onboard 802.11 ac wifi offers 2.4G&5G WLAN connectivity. With Bluetooth 5.0, ROCK Pi benefits-improved Bluetooth speed and greater range. ROCK Pi also features one USB 3.0 host and one USB 3.0 OTG ports, each 5Gbps/s, working independently. The USB 3.0 OTG can work as a USB device such as Android ADB or USB gadgets. A hardware switch is provided for OTG mode switch.
ROCK Pi supports mainstream AI stack with GPU acceleration. Furthermore, a dedicated hardware NPU accelerator coming up next for ROCK Pi will boosts complex Machine Learning algorithm and reduce the power. Industrial standard MIPI CSI connector makes it easy to connect existing cameras to ROCK Pi and ROCK Pi also supports industrial standard MIPI DSI for LCD and touch screen. With the hardware-accelerated algorithm, it's great for Computer Vision application, Robotics and much more
## Purchase
* [seeedstudio](https://www.seeedstudio.com/ROCK-PI-4-Model-C-p-4658.html)

Some files were not shown because too many files have changed in this diff Show more