Compare commits

..

No commits in common. "feather-can-info" and "master" have entirely different histories.

977 changed files with 7919 additions and 29054 deletions

View file

@ -1,60 +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.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Versions
run: |
python3 --version
- uses: actions/checkout@v1
with:
submodules: true
- name: Install deps
run: |
pip install -r adabot/requirements.txt
- 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 }}
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,56 +0,0 @@
name: Jekyll site CI
on:
push:
branches:
- master
schedule:
- cron: 0 10 * * *
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
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.x'
- name: Install Dependencies
run: |
gem install bundler:1.17.3
bundle install
- name: Build site with jekyll
run: |
bundle exec jekyll build -d build
- name: Commit and Push to gh-pages
run: |
# https://github.com/helaili/jekyll-action/blob/master/entrypoint.sh#L49
cd build
touch .nojekyll
git init
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m 'jekyll build from Action'
git push --force https://${ADABOT_PAT}@github.com/${GITHUB_REPOSITORY}.git HEAD:gh-pages
rm -fr .git
cd ..
env:
ADABOT_PAT: ${{ secrets.ADABOT_PAT }}

View file

@ -1,12 +0,0 @@
name: Compress images
on: pull_request
jobs:
build:
name: calibreapp/image-actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: calibreapp/image-actions
uses: docker://calibreapp/github-image-actions
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2
.gitignore vendored
View file

@ -3,5 +3,3 @@ _site
.jekyll-metadata
.DS_Store
_drafts/
.bundle
vendor

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

View file

@ -8,24 +8,21 @@ source "https://rubygems.org"
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "jekyll", "~> 3.8.4"
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
# 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", "~> 0.0.1"
end
group :development do
gem 'rake'
gem 'image_processing'
end

View file

@ -1,276 +1,80 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (6.0.3.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.11.1)
addressable (2.5.2)
public_suffix (>= 2.0.2, < 4.0)
colorator (1.1.0)
commonmarker (0.17.13)
ruby-enum (~> 0.5)
concurrent-ruby (1.1.6)
deep_merge (1.2.1)
dnsruby (1.61.4)
simpleidn (~> 0.1)
concurrent-ruby (1.0.5)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
ethon (0.12.0)
ffi (>= 1.3.0)
eventmachine (1.2.7)
execjs (2.7.0)
faraday (1.0.1)
multipart-post (>= 1.2, < 3)
ffi (1.13.1)
ffi (1.9.25)
forwardable-extended (2.6.0)
gemoji (3.0.1)
github-pages (207)
github-pages-health-check (= 1.16.1)
jekyll (= 3.9.0)
jekyll-avatar (= 0.7.0)
jekyll-coffeescript (= 1.1.1)
jekyll-commonmark-ghpages (= 0.1.6)
jekyll-default-layout (= 0.1.4)
jekyll-feed (= 0.13.0)
jekyll-gist (= 1.5.0)
jekyll-github-metadata (= 2.13.0)
jekyll-mentions (= 1.5.1)
jekyll-optional-front-matter (= 0.3.2)
jekyll-paginate (= 1.1.0)
jekyll-readme-index (= 0.3.0)
jekyll-redirect-from (= 0.15.0)
jekyll-relative-links (= 0.6.1)
jekyll-remote-theme (= 0.4.1)
jekyll-sass-converter (= 1.5.2)
jekyll-seo-tag (= 2.6.1)
jekyll-sitemap (= 1.4.0)
jekyll-swiss (= 1.0.0)
jekyll-theme-architect (= 0.1.1)
jekyll-theme-cayman (= 0.1.1)
jekyll-theme-dinky (= 0.1.1)
jekyll-theme-hacker (= 0.1.1)
jekyll-theme-leap-day (= 0.1.1)
jekyll-theme-merlot (= 0.1.1)
jekyll-theme-midnight (= 0.1.1)
jekyll-theme-minimal (= 0.1.1)
jekyll-theme-modernist (= 0.1.1)
jekyll-theme-primer (= 0.5.4)
jekyll-theme-slate (= 0.1.1)
jekyll-theme-tactile (= 0.1.1)
jekyll-theme-time-machine (= 0.1.1)
jekyll-titles-from-headings (= 0.5.3)
jemoji (= 0.11.1)
kramdown (= 2.3.0)
kramdown-parser-gfm (= 1.1.0)
liquid (= 4.0.3)
mercenary (~> 0.3)
minima (= 2.5.1)
nokogiri (>= 1.10.4, < 2.0)
rouge (= 3.19.0)
terminal-table (~> 1.4)
github-pages-health-check (1.16.1)
addressable (~> 2.3)
dnsruby (~> 1.60)
octokit (~> 4.0)
public_suffix (~> 3.0)
typhoeus (~> 1.3)
html-pipeline (2.13.0)
activesupport (>= 2)
nokogiri (>= 1.4)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
image_processing (1.11.0)
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
jekyll (3.9.0)
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 (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (>= 1.17, < 3)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-avatar (0.7.0)
jekyll (>= 3.0, < 5.0)
jekyll-coffeescript (1.1.1)
coffee-script (~> 2.2)
coffee-script-source (~> 1.11.1)
jekyll-commonmark (1.3.1)
commonmarker (~> 0.14)
jekyll (>= 3.7, < 5.0)
jekyll-commonmark-ghpages (0.1.6)
commonmarker (~> 0.17.6)
jekyll-commonmark (~> 1.2)
rouge (>= 2.0, < 4.0)
jekyll-default-layout (0.1.4)
jekyll (~> 3.0)
jekyll-feed (0.13.0)
jekyll (>= 3.7, < 5.0)
jekyll-get-json (0.0.2)
deep_merge (~> 1.2)
jekyll (>= 3.0)
jekyll-gist (1.5.0)
octokit (~> 4.2)
jekyll-github-metadata (2.13.0)
jekyll (>= 3.4, < 5.0)
octokit (~> 4.0, != 4.4.0)
jekyll-mentions (1.5.1)
html-pipeline (~> 2.3)
jekyll (>= 3.7, < 5.0)
jekyll-optional-front-matter (0.3.2)
jekyll (>= 3.0, < 5.0)
jekyll-paginate (1.1.0)
jekyll-readme-index (0.3.0)
jekyll (>= 3.0, < 5.0)
jekyll-redirect-from (0.15.0)
jekyll (>= 3.3, < 5.0)
jekyll-relative-links (0.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-remote-theme (0.4.1)
addressable (~> 2.0)
jekyll (>= 3.5, < 5.0)
rubyzip (>= 1.3.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-swiss (1.0.0)
jekyll-theme-architect (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-cayman (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-dinky (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-hacker (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-leap-day (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-merlot (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-midnight (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-minimal (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-modernist (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-primer (0.5.4)
jekyll (> 3.5, < 5.0)
jekyll-github-metadata (~> 2.9)
jekyll-seo-tag (~> 2.0)
jekyll-theme-slate (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-tactile (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-theme-time-machine (0.1.1)
jekyll (~> 3.5)
jekyll-seo-tag (~> 2.0)
jekyll-titles-from-headings (0.5.3)
jekyll (>= 3.3, < 5.0)
jekyll-watch (2.2.1)
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)
jemoji (0.11.1)
gemoji (~> 3.0)
html-pipeline (~> 2.2)
jekyll (>= 3.0, < 5.0)
kramdown (2.3.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.2.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
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.10.1)
mini_portile2 (2.4.0)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
minitest (5.14.1)
multipart-post (2.1.1)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
octokit (4.18.0)
faraday (>= 0.9)
sawyer (~> 0.8.0, >= 0.5.3)
pathutil (0.16.2)
mini_magick (4.9.5)
pathutil (0.16.1)
forwardable-extended (~> 2.6)
public_suffix (3.1.1)
rake (13.0.1)
rb-fsevent (0.10.4)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.4)
rouge (3.19.0)
ruby-enum (0.8.0)
i18n
ruby-vips (2.0.17)
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)
rubyzip (2.3.0)
safe_yaml (1.0.5)
sass (3.7.4)
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)
sawyer (0.8.2)
addressable (>= 2.3.5)
faraday (> 0.8, < 2.0)
simpleidn (0.1.1)
unf (~> 0.1.4)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
thread_safe (0.3.6)
typhoeus (1.4.0)
ethon (>= 0.9.0)
tzinfo (1.2.7)
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.7)
unicode-display_width (1.7.0)
zeitwerk (2.4.0)
PLATFORMS
ruby
DEPENDENCIES
github-pages
image_processing
jekyll-get-json (~> 0.0.1)
jekyll (~> 3.8.4)
jekyll-paginate
jekyll-redirect-from
jekyll-seo-tag
jekyll-sitemap
rake
BUNDLED WITH
2.1.4
1.17.3

View file

@ -9,14 +9,3 @@ and a larger image (700 px width) in each respective directory (assets/images/bo
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.
**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

View file

@ -1,42 +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
- 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)
## 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,41 +0,0 @@
---
layout: download
board_id: "banana_pi_m2_zero"
title: "Banana Pi M2 Zero Download"
name: "Banana Pi M2 Zero"
manufacturer: "Sinovoip"
board_url: "http://www.banana-pi.org/m2z.html"
board_image: "banana_pi_m2_zero.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-11-5
features:
- Wi-Fi
- Bluetooth/BLE
- HDMI
- 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)
## 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,54 +0,0 @@
---
layout: download
board_id: "beaglebone_black"
title: "BeagleBone Black"
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
---
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)
## 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: "beaglebone_black_industrial"
title: "BeagleBone Black Industrial"
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
---
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)
## 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: "beaglebone_black_wireless"
title: "BeagleBone Black Wireless"
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
---
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)
## 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,47 +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-5
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)
## 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,46 +0,0 @@
---
layout: download
board_id: "beaglebone_green_wireless"
title: "BeagleBone Green Wireless"
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)
## 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,43 +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/)
## 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,26 +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-11-5
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)
## 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: "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
---
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)
## 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

@ -9,9 +9,8 @@ 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
- WiFi
- HDMI
- 40-pin GPIO
- GPS

View file

@ -1,27 +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)
## 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: "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)
## 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

@ -9,7 +9,6 @@ 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

View file

@ -1,41 +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)
## 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,32 +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)
## 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

@ -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
- USB 3.0
- DisplayPort
- 4 x USB 3.0 Ports
- 40-pin GPIO
---

View file

@ -1,42 +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
- 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)
## 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,46 +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
- 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)
## 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,46 +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
- 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)
## 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,36 +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)
## 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: "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)
## 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

@ -9,7 +9,6 @@ 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

View file

@ -1,42 +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
- 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/)
## 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,47 +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
- 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/)
## 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,42 +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
- 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/)
## 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,45 +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
- 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/)
## 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,32 +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)
## 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,57 +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
- 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)
## 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,71 +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
- 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)
## 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,53 +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
- 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)
## 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

@ -9,7 +9,6 @@ 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

View file

@ -1,59 +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
- 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)
## 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,76 +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
- 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)
## 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

@ -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.

View file

@ -1,44 +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)
## 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,70 +0,0 @@
---
layout: download
board_id: "orange_pi_zero_plus2"
title: "Orange Pi Zero Plus2 Download"
name: "Orange Pi Zero Plus2"
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
board_url: "http://www.orangepi.org/OrangePiZeroPlus2/"
board_image: "orange_pi_zero_plus2.jpg"
download_instructions: ""
downloads_display: true
blinka: true
date_added: 2020-11-5
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI
- 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)
## 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,51 +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: false
blinka: true
date_added: 2020-1-9
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI
- 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)
## 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,46 +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: false
blinka: true
date_added: 2020-11-5
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI
- 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/)
## 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: "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
---
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)
## 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

@ -9,9 +9,10 @@ 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
- 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+

View file

@ -9,7 +9,6 @@ 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
- 40-pin GPIO

View file

@ -9,10 +9,11 @@ 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
- 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+

View file

@ -9,7 +9,6 @@ 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

View file

@ -9,7 +9,6 @@ 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

View file

@ -9,7 +9,6 @@ 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

View file

@ -9,7 +9,6 @@ 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

View file

@ -9,7 +9,6 @@ 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

View file

@ -1,44 +0,0 @@
---
layout: download
board_id: "raspberry_pi_400"
title: "Raspberry Pi 400 Desktop Download"
name: "Raspberry Pi 400 Desktop"
manufacturer: "Raspberry Pi Foundation"
board_url: "https://www.raspberrypi.org/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-5
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI
- 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)
## 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

@ -9,14 +9,12 @@ 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
- 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!

View file

@ -9,9 +9,12 @@ 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
- 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.

View file

@ -9,9 +9,12 @@ 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
- 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.

View file

@ -9,9 +9,11 @@ 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
- 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.

View file

@ -9,9 +9,12 @@ 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
- 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.

View file

@ -9,9 +9,12 @@ 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
- 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.

View file

@ -9,9 +9,8 @@ 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
- Mini HDMI
- 40-pin GPIO
---

View file

@ -9,11 +9,10 @@ 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
- Mini HDMI
- 40-pin GPIO
---

View file

@ -1,40 +0,0 @@
---
layout: download
board_id: "rock_pi_s"
title: "Rock Pi S Download"
name: "Rock Pi S"
manufacturer: "Radxa Limited"
board_url: "https://wiki.radxa.com/RockpiS"
board_image: "rock_pi_s.jpg"
download_instructions: ""
downloads_display: false
blinka: true
date_added: 2020-4-29
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
---
S is for Small Square.
ROCK Pi S is a Rockchip RK3308 based SBC(Single Board Computer) by Radxa. It equips a 64bits quad core processor, USB, ethernet, wireless connectivity and voice detection engine at the size of 1.7 inch, make it perfect for IoT and voice applications. ROCK Pi S comes in two ram sizes 256MB or 512MB DDR3, and uses uSD card for OS and storage. Optionally, ROCK Pi S can provide on board storage version with 1Gb/2Gb/4Gb/8Gb NAND flash.
The Rockchip RK3308 Soc used in ROCK Pi S RK3308 is a high-performance Quad-core application processor designed for intelligent voice interaction, audio input/output processing, and other digital multimedia applications. Embedded rich audio interfaces, such as I2S, PCM, TDM, PDM, SPDIF, HDMI ARC and so on, can meet different audio application development, reduce hardware development complexity and development cost.
* Quad-core ARM Cortex-A35CPU
* Full implementation of the ARM architecture v8-A instruction set
* ARM Neon Advanced SIMD (single instruction, multiple data) support for accelerated media and signal processing computation
* ARMv8 Cryptography Extensions
* In-order pipeline with symmetric dual-issue of most instructions
* 256KB unified system L2 cache
* Includes VFP v3 hardware to support single and double-precision operations
* Integrated 32KB L1 instruction cache, 32KB L1 data cache with 4-way set associative
TrustZone technology support
## Purchase
* [seeedstudio](https://www.seeedstudio.com/ROCK-PI-S-Mini-Computer-with-Rockchip-RK3308-512MB-RAM-4Gb-NAND-Flash-p-4282.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,51 +0,0 @@
---
layout: download
board_id: "stm32mp157c_dk2"
title: "STM32MP1 Discovery Kit 2 Download"
name: "STM32MP1 Discovery Kit 2"
manufacturer: "STMicroelectronics"
board_url: "https://www.st.com/en/evaluation-tools/stm32mp157c-dk2.html"
board_image: "stm32mp157c_dk2.jpg"
download_instructions: ""
downloads_display: false
blinka: true
date_added: 2020-11-5
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI
- 40-pin GPIO
---
The STM32MP157A-DK1 and STM32MP157C-DK2 Discovery kits leverage the capabilities of STM32MP1 Series microprocessors to allow users easily develop applications using STM32 MPU OpenSTLinux Distribution software for the main processor and STM32CubeMP1 software for the co-processor.
They include an ST-LINK embedded debug tool, LEDs, push-buttons, one Ethernet 1-Gbps connector, one USB Type-CTM OTG connector, four USB Type-A Host connectors, one HDMI® transceiver, one stereo headset jack with analog microphone, and one microSDTM connector.
To expand the functionality of the STM32MP157A-DK1 and STM32MP157C-DK2 Discovery kits, two GPIO expansion connectors are also available for ARDUINO® and Raspberry Pi® shields.
Additionally, the STM32MP157C-DK2 Discovery kit features an LCD display with a touch panel, and Wi-Fi® and Bluetooth® Low Energy capability.
- STM32MP157 Arm®-based dual Cortex®-A7 32 bits + Cortex®-M4 32 bits MPU in TFBGA361 package
- ST PMIC STPMIC1
- 4-Gbit DDR3L, 16 bits, 533 MHz
- 1-Gbps Ethernet (RGMII) compliant with IEEE-802.3ab
- USB OTG HS
- Audio codec
- 4 user LEDs
- 2 user and reset push-buttons, 1 wake-up button
- 5 V / 3 A USB Type-CTM power supply input (not provided)
- Board connectors:Ethernet RJ454 × USB Host Type-AUSB Type-CTM DRPMIPI DSISMHDMI®Stereo headset jack including analog microphone inputmicroSDTM cardGPIO expansion connector (Raspberry Pi® shields capability)ARDUINO® Uno V3 expansion connectors
- On-board ST-LINK/V2-1 debugger/programmer with USB re-enumeration capability: Virtual COM port and debug port
- STM32CubeMP1 and full mainline open-source Linux® STM32 MPU OpenSTLinux Distribution (such as STM32MP1Starter) software and examples
- Support of a wide choice of Integrated Development Environments (IDEs) including IARTM, Keil®, GCC-based IDEs
- 4" TFT 480×800 pixels with LED backlight, MIPI DSISM interface, and capacitive touch panel
- Wi-Fi® 802.11b/g/n
- Bluetooth® Low Energy 4.1
## Purchase
* [STMicroelectronics](https://estore.st.com/en/products/evaluation-tools/product-evaluation-tools/mcu-mpu-eval-tools/stm32-mcu-mpu-eval-tools/stm32-discovery-kits/stm32mp157c-dk2.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,50 +0,0 @@
---
layout: download
board_id: "udoo_x86_ii_ultra"
title: "X86 II ULTRA Download"
name: "X86 II ULTRA"
manufacturer: "UDOO"
board_url: "https://shop.udoo.org/udoo-x86-ii-ultra.html"
board_image: "udoo_x86_ii_ultra.jpg"
download_instructions: ""
downloads_display: false
blinka: true
date_added: 2020-11-5
features:
- Wi-Fi
- Bluetooth/BLE
- Ethernet
- HDMI
- USB 3.0
---
UDOO X86 II is the New PC: the most powerful x86 maker board ever and an Arduino™ Leonardo-compatible platform, all embedded on the same board.
On UDOO X86 II you can run all the software available for the PC world, from gaming to video streaming, from graphical editors to professional development platforms, plus all the software or the Arduino™ Leonardo world, including all the sketches, libraries and the official Arduino™ Leonardo IDE.
You wont ever worry about lack of drivers or stuff like that. This is a true next-generation computer.
It is based on Quad Core 64-bit new-generation x86 processors made by Intel®, designed for the PC domain. Prodigious processors concentrated in 14 nm, with an amount of energy consumption of 5 or 6 Watt.
The board can be powered by a DC-jack with a standard 5.5mm/2.1mm barrel jack, internal positive, Voltage 12V ± 5%. This is not included. Alternatively, power can be provided though the VIN pin located on the header.
Screw/Spacers for M.2 SSD and Wifi/BT already included.
- CPU Intel Pentium N3710 2.56 GHZ
- 8 GB DDR3L Dual Channel
- Intel HD Graphics 405. Up to 700 MHz
- 32GB eMMC storage
- Standard SATA connector
- M.2 Key B SSD slot
- Micro SD card slot
- Gigabit Ethernet connector
- M.2 Key E slot for optional Wireless modules
- 3 x USB 3.0 type-A sockets
## Purchase
* [UDOO](https://shop.udoo.org/udoo-x86-ii-ultra.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,27 +0,0 @@
---
layout: download
board_id: "8086_commander"
title: "Commander Download"
name: "Commander"
manufacturer: "8086 Consultancy"
board_url: "https://8086.net/p/commander"
board_image: "8086_commander.jpg"
date_added: 2020-3-24
---
The Commander is a handheld button and LED board supplied with the UF2 bootloader and CircuitPython.
## Specifications
- Dimensions: 83 x 52 x 7 mm
- Atmel ATSAMD21G18A (32-bit ARM Cortex M0)
- 48 Mhz
- 32 KB SRAM / 256 KB FLASH
- Accelerometer (ADXL345)
- Micro SD socket
- 16 MB SPI FLASH
## Purchase
* [8086 Consultancy](https://www.tindie.com/products/8086net/commander/)

View file

@ -1,12 +0,0 @@
---
layout: download
board_id: "unknown"
title: "Unknown Board Download"
name: "Unknown Board"
manufacturer: "Unknown"
board_url: ""
board_image: "unknown.jpg"
downloads_display: false
---
Oops! Looks like we don't know anything about this board. This means it's likely very new.

View file

@ -1,31 +0,0 @@
---
layout: download
board_id: "TG-Watch02A"
title: "TG-Watch02A Download"
name: "TG-Watch02A"
manufacturer: "TG-Techie"
board_url: "https://github.com/TG-Techie/TG-Watch02-PCB"
board_image: "TG-Watch02A.jpg"
date_added: 2020-3-31
features:
- Display
- Bluetooth/BTLE
- Battery Charging
---
Why buy an apple watch when you can spend your weekends building a microcontroller based "smart" watch instead? the TG-Watch is an open source, not-dumb watch meant for makers who want to hack on their watch or as great starting point to learn about programming.
Some of its features include:
* a 240x240, 1.54" lcd
* capacitive touchscreen
* USB Type-C port (2.0)
* Step counter and pedometer
* vibration motor and haptic motor driver
* Bluetooth 5, Bluetooth mesh, Thread, ZigBee
## Learn More
[Github](https://github.com/TG-Techie/TG-Watch02-PCB)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,47 +0,0 @@
---
layout: download
board_id: "adafruit_magtag_2.9_grayscale"
title: "MagTag - 2.9\" Grayscale E-Ink WiFi Display Download"
name: "MagTag - 2.9\" Grayscale E-Ink WiFi Display"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4800"
board_image: "adafruit_magtag_2.9_grayscale.jpg"
date_added: 2020-11-10
features:
- Wi-Fi
- Battery Charging
- STEMMA QT/QWIIC
- Speaker
- Display
---
The Adafruit MagTag combines the new ESP32-S2 wireless module and a 2.9" grayscale E-Ink display to make a low-power IoT display that can show data on its screen even when power is removed! The ESP32-S2 is great because it builds on the years of code and support for the ESP32 and also adds native USB support so you can use this board with Arduino _or_ CircuitPython!
We designed this board to be low-power friendly - with a spot for a 350 or 420 mAh battery and built in battery charging over USB C. During deep sleep, with the NeoPixels and speaker amplifier disabled, we measured 250uA power draw so you can run for a few weeks between charges.
And of course, the Mag in MagTag stands for _magnetic_. [We have four M3 standoffs that will work perfectly with these mini magnet feet](https://www.adafruit.com/product/4631). (Originally they're designed for RGB Matrices but they'll do an excellent job here as well). Screw on the feet and you can attach this display to a metallic shelf, fridge, or bench.
Here's the cool hardware we put together:
**Features:**
* **ESP32-S2 240MHz Tensilica processor** - the next generation of ESP32, now with native USB so it can act like a keyboard/mouse, MIDI device, disk drive, etc!
* **WROVER module** has FCC/CE certification and comes with 4 MByte of Flash and 2 MByte of PSRAM - you can have huge data buffers
* **2.9" grayscale display with 296x128 pixels**. Each pixel can be white, light gray, dark gray or black. Compared to 'tri-color' displays with a red pigment, this display takes a lot less time to update, only about a second instead of 15 seconds!
* **USB C** power and data connector
* **Four RGB side-emitting NeoPixels** so you can light up the display with any color or pattern
* **Four buttons** can be used to wake up the ESP32 from deep-sleep, or select different modes
* **Triple-axis accelerometer** (LIS3DH) can be used to detect orientation of the display
* **Speaker/Buzzer** with mini class D amplifier on DAC output A0 can play tones or lo-fi audio clips.
* Front facing **light sensor**
* **STEMMA QT** port for [attaching all sorts of I2C devices](https://www.adafruit.com/stemma)
* Two **STEMMA 3 pin JST** connectors for attaching [NeoPixels](https://www.adafruit.com/product/3919), [speakers](https://www.adafruit.com/product/3885), [servos](https://www.adafruit.com/product/4326) or [relays](https://www.adafruit.com/product/4409).
* **On/Off switch**
* **Boot** and **Reset buttons** for re-programming
## Purchase:
* [Adafruit](https://www.adafruit.com/product/4800)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "adafruit_metro_esp32s2"
title: " Metro ESP32-S2 Download"
name: "Metro ESP32-S2"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4775"
board_image: "adafruit_metro_esp32s2.jpg"
date_added: 2020-10-2
features:
- Wi-Fi
- Battery Charging
- STEMMA QT/QWIIC
---
What's Metro shaped and has an ESP32-S2 WiFi module? What has a STEMMA QT connector for I2C devices, and a Lipoly charger circuit? What's finishing up testing and nearly ready for fabrication? That's right - its the new Adafruit Metro ESP32-S2! With native USB and a load of PSRAM this board is perfect for use with CircuitPython or Arduino, to add low-cost WiFi while keeping shield-compatibility
**Features:**
* **ESP32-S2 240MHz Tensilica processor** - the next generation of ESP32, now with native USB so it can act like a keyboard/mouse, MIDI device, disk drive, etc!
* **WROVER module** has FCC/CE certification and comes with 4 MByte of Flash and 2 MByte of PSRAM - you can have huge data buffers
* **Lotsa power options** - 6-12VDC barrel jack or USB type C or Lipoly battery
* **Built in battery charging** when powered over DC or USB
* UNO-shape so shields can plug in
* **Reset and DFU** (BOOT0) buttons to get into the ROM bootloader (which is a USB serial port so you don't need a separate cable!)
* **Serial debug pins** (optional, for checking the hardware serial debug console)
* **JTAG pads** for advanced debugging access.
* **On/Off switch**
* **STEMMA QT** connector for I2C devices
* **On/Charge/User** LEDs + status **NeoPixel**
* **Works with Arduino or CircuitPython**
## Purchase:
* [Adafruit](https://www.adafruit.com/product/4775)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,55 +0,0 @@
---
layout: download
board_id: "aloriumtech_evo_m51"
title: "AloriumTech Evo M51 Download"
name: "AloriumTech Evo M51"
manufacturer: "Alorium Technology, LLC"
board_url: "https://www.aloriumtech.com/evom51"
board_image: "aloriumtech_evo_m51.jpg"
date_added: 2020-5-21
downloads_display: true
blinka: false
features:
- Feather-Compatible
- Battery Charging
- STEMMA QT/QWIIC
---
The Evo M51 is an FPGA-enhanced Feather compatible compute module from Alorium Technology that features a 32-bit SAMD51 microcontroller along with an Intel MAX 10 FPGA.
Designed for use as an embeddable system-on-module, all of the standard Feather I/O are also routed to castellated vias along the edge of the board. There are 34 additional castellated digital I/O connected to the FPGA and accessible via the SAMD51.
Most digital I/O connections are routed through the FPGA to and from the primary and castellated I/O. This provides the opportunity for developers to immediately capture inputs or drive outputs from the FPGA without requiring direct interaction with the SAMD controller.
Evo M51 will support Alorium Technology-supplied pre-built FPGA images that target specific application use cases. In addition, designers will have the option to develop their own custom logic blocks and integrate them into the top-level MAX 10 FPGA design.
Evo was specifically designed to support running CircuitPython. It is also programmable with Arduino just like many other boards based upon the SAMD51. So, writing and uploading firmware to the microcontroller is easy and familiar.
__Features__
- Atmel SAMD51 32-bit ARM Cortex-M4 Microcontroller
- Intel MAX 10 FPGA
- 512KB FLASH / 192KB RAM
- 2MB External QSPI FLASH
- 6 Analog Inputs
- 2 Analog Outputs
- 55 Digital I/O
- 21 Through-Hole/Castellated
- 34 Additional Castellated-Only
- STEMMA QT (QWIIC Compatible)
- Feather Footprint
- 0.9 in. x 2.2 in.
__Evo M51 CircuitPython Library Bundle__
In order to take full advantage of the additional I/O on Evo M51 using CircuitPython, we have created a custom library bundle that can be found on the Alorium Technology GitHub page:
- [AloriumTech_CircuitPython_EvoM51](https://github.com/AloriumTechnology/AloriumTech_CircuitPython_EvoM51)
- Download the .ZIP file here: [Download .ZIP](https://github.com/AloriumTechnology/AloriumTech_CircuitPython_EvoM51/archive/master.zip)
## Purchase
Add any links to purchase the board
* [Alorium Technology](https://www.aloriumtech.com/evom51-buy/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,37 +0,0 @@
---
layout: download
board_id: "aramcon_badge_2019"
title: "ARAMCON Badge 2019 Download"
name: "ARAMCON Badge 2019"
manufacturer: "ARAMCON Badge Team"
board_url: "https://github.com/aramcon-badge/"
board_image: "aramcon_badge_2019.jpg"
date_added: 2020-1-25
features:
- Display
- Bluetooth/BTLE
- Wi-Fi
---
nRF52840-Based Smart Badge with Bluetooth, Thread Mesh Network, 2.9" ePaper Display, Neopixels, built-in MP3 Sound decoder and more!
**Features:**
* Nordic nRF52840 Cortex M4 Module(E73-2G4M08S1C)
* 2.9 inch e-paper glass display(GDEW029T5)
* I²C Accelerometer(LIS2DH12)
* 16MBit Serial Flash(GD25Q16C)
* MP3/WMA Audio Codec(VS1003)
* 3 x CHERRY MX Keyboard Switches
* 4 x NeoPixels
* SAO Connector v1.0
## Purchase
Not available for direct purchase. The badge was given to all attendees of the ARAMCON 2019 conference.
## Learn More
* [Github](https://github.com/aramcon-badge/)
* [Medium](https://medium.com/@urish/the-smart-conference-badge-we-almost-failed-shipping-edb2b1ae85b6)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -6,7 +6,6 @@ name: "MKR WAN 1300"
manufacturer: "Arduino"
board_url: "https://www.arduino.cc/en/Guide/MKRWAN1300"
board_image: "arduino_mkr1300_01.jpg"
date_added: 2018-12-13
---
Arduino MKR WAN 1300 has been designed to offer a practical and cost effective solution for makers seeking to add Lo-Ra connectivity to their projects with minimal previous experience in networking. It is based on the Microchip SAMD21 and a Murata CMWX1ZZABZ Lo-Ra module.

View file

@ -6,7 +6,6 @@ name: "MKR Zero"
manufacturer: "Arduino"
board_url: "https://www.arduino.cc/en/Guide/ArduinoMKRZero"
board_image: "arduino_mkr_zero.jpg"
date_added: 2019-3-9
features:
- Battery Charging
---

View file

@ -1,22 +0,0 @@
---
layout: download
board_id: "arduino_nano_33_ble"
title: "NANO 33 BLE Download"
name: "NANO 33 BLE"
manufacturer: "Arduino"
board_url: "https://www.arduino.cc/en/Guide/NANO33BLE"
board_image: "arduino_nano_33_ble.jpg"
date_added: 2019-10-26
---
This compact and reliable NANO board is built around the NINA B306 module, based on Nordic nRF 52840 and containing a powerful Cortex M4F. Its architecture, fully compatible with Arduino IDE Online and Offline, has a 9 axis Inertial Measurement Unit (IMU) and a reduced power consumption compared to other same size boards.
This allows the design of wearable devices and movement sensing projects that need to communicate to other devices at a close range. Arduino NANO 33 BLE is also ideal for automation projects thanks to the multiprotocol BT 5.0 radio.
To use this board with CircuitPython you must [replace the existing bootloader](https://forums.adafruit.com/viewtopic.php?f=60&t=158279) with the Adafruit UF2 bootloader. You need to restore the original bootloader to use the board again with Arduino.
## Purchase
* [Arduino](https://store.arduino.cc/usa/nano-33-ble)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,23 +0,0 @@
---
layout: download
board_id: "arduino_nano_33_iot"
title: "NANO 33 IoT Download"
name: "NANO 33 IoT"
manufacturer: "Arduino"
board_url: "https://www.arduino.cc/en/Guide/NANO33IoT"
board_image: "arduino_nano_33_iot.jpg"
date_added: 2020-2-27
---
Arduino NANO 33 IoT board has been designed to offer a practical and cost effective solution for makers seeking to add Wi-Fi connectivity to their projects (using Arduino) with minimal previous experience in networking. Learn how to set up the programming environment and get the hardware up and running, ready for your projects, in minutes.
### NOTE: Not all on-board hardware is supported by CircuitPython
WiFi is not supported. The LSM9DS6 and ATECC chips are supported in CircuitPython by libraries that may use more RAM than is available on the SAMD21.
## Purchase
* [Arduino](https://store.arduino.cc/usa/nano-33-iot)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -6,7 +6,6 @@ name: "Zero"
manufacturer: "Arduino"
board_url: "https://www.arduino.cc/en/Guide/ArduinoZero"
board_image: "arduino_zero.jpg"
date_added: 2019-3-9
---
The Arduino Zero is a simple and powerful 32-bit extension of the platform established by the UNO. The Zero board expands the family by providing increased performance, enabling a variety of project opportunities for devices, and acts as a great educational tool for learning about 32-bit application development.

View file

@ -3,19 +3,19 @@ layout: download
board_id: "bast_pro_mini_m0"
title: "bast_pro_mini_m0 Download"
name: "bast_pro_mini_m0"
manufacturer: "Electronic Cats"
board_url: "https://electroniccats.com/store/bast-pro-mini-m0/"
board_image: "bast_pro_mini_m0.jpg"
date_added: 2019-4-13
manufacturer: "unknown"
board_url: ""
board_image: "unknown.jpg"
downloads_display: false
features:
---
Is she the goddess of cats?
This board hasn't been fully documented yet. Please make a pull request adding more info to this file.
Its Bast Pro Mini M0! With a powerful SAMD21E chip, an ARM Cortex-M0 based microcontroller with low power consumption and high performance, makes it ideal for endless applications.
The description should be written to inform a CircuitPython user what makes the board unique and link to relevant info about it.
## Purchase
* [Electronic Cats](https://electroniccats.com/store/bast-pro-mini-m0/)
Add any links to purchase the board
## Contribute

View file

@ -1,26 +0,0 @@
---
layout: download
board_id: "bastble"
title: "BAST BLE Download"
name: "BAST BLE"
manufacturer: "Electronic Cats"
board_url: "https://electroniccats.com/store/bast-ble/"
board_image: "bastble.jpg"
date_added: 2020-11-05
features:
- Feather-Compatible
- Bluetooth/BTLE
- Battery Charging
---
The Bast BLE is the new Feather family member with Bluetooth Low Energy and native USB-C support featuring the nRF52840!
Its our take on an all-in-one Arduino-compatible + Bluetooth Low Energy with built in USB plus battery charging.
With native USB its even ready to join the CircuitPython party.
## Purchase
* [Electronic Cats](https://electroniccats.com/store/bast-ble/)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,31 +0,0 @@
---
layout: download
board_id: "bdmicro_vina_d21"
title: "Vina-D21 Download"
name: "Vina-D21"
manufacturer: "BDMICRO, LLC"
board_url: "https://bdmicro.com/products/vina-d21"
board_image: "bdmicro_vina_d21.jpg"
date_added: 2020-9-28
features:
- Battery Charging
---
The VINA-D21 is a powerful, robust, pluggable control module designed for modular control applications. Built with all-industrial grade components and features, it is well-suited for a wide variety of automation and control requirements, including harsh environments.
The VINA-D21 Control Module saves time and money by providing a proven, modular design, that enables custom application-specific solutions to move from the drawing board to the finished product quickly.
VINA-D21 enables you to develop your application-specific board independently of the controller section. This simplifies your design, saves CAD time during the design phase, reduces errors that can cost weeks of PCB re-manufacture to correct, and saves debug time during the prototype and testing phases. By starting with VINA-D21, you start from a known-good foundation, reducing complexity and risk.
Incorporate the VINA-D21 in your designs over and over again and multiply your savings. Useful for custom applications, one-off projects, breadboarded prototypes, and even standalone projects. VINA-D21 has all of the common essentials built-in, on-board.
To get you started even more quickly, BDMICRO provides the Autodesk Eagle CAD part for VINA-D21. Getting started is as easy as downloading the part and adding it to your application specific design, allowing you to focus on your custom application's needs, with all the right connectors, headers, and other circuitry needed for your project solution.
Capable of running standalone, modular piggy back on application-specific boards, or breadboarded, the VINA-D21 is a great choice for your next project.
## Purchase
* [BDMICRO](https://bdmicro.com/products/vina-d21)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,30 +0,0 @@
---
layout: download
board_id: "bdmicro_vina_d51"
title: "Vina-D51 Download"
name: "Vina-D51"
manufacturer: "BDMICRO, LLC"
board_url: "https://bdmicro.com/collections/frontpage/products/vina-d51"
board_image: "bdmicro_vina_d51.jpg"
date_added: 2020-10-16
features:
---
The VINA-D51 is a powerful, robust, pluggable control module designed for modular control applications. Built with all-industrial grade components and features, it is well-suited for a wide variety of automation and control requirements, including harsh environments.
The VINA-D51 Control Module saves time and money by providing a proven, modular design, that enables custom application-specific solutions to move from the drawing board to the finished product quickly.
VINA-D51 enables you to develop your application-specific board independently of the controller section. This simplifies your design, saves CAD time during the design phase, reduces errors that can cost weeks of PCB re-manufacture to correct, and saves debug time during the prototype and testing phases. By starting with VINA-D51, you start from a known-good foundation, reducing complexity and risk.
Incorporate the VINA-D51 in your designs over and over again and multiply your savings. Useful for custom applications, one-off projects, breadboarded prototypes, and even standalone projects. VINA-D51 has all of the common essentials built-in, on-board.
To get you started even more quickly, BDMICRO provides the Autodesk Eagle CAD part for VINA-D51. Getting started is as easy as downloading the part and adding it to your application specific design, allowing you to focus on your custom application's needs, with all the right connectors, headers, and other circuitry needed for your project solution.
Capable of running standalone, modular piggy back on application-specific boards, or breadboarded, the VINA-D51 is a great choice for your next project.
## Purchase
* [BDMICRO](https://bdmicro.com/collections/frontpage/products/vina-d51)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,37 +0,0 @@
---
layout: download
board_id: "bdmicro_vina_m0"
title: "Vina M0 Download"
name: "Vina M0"
manufacturer: "BDMICRO, LLC"
board_url: "https://bdmicro.com/products/vina-m0"
board_image: "bdmicro_vina_m0.jpg"
date_added: 2020-4-16
downloads_display: false
features:
- Battery Charging
---
ARM Cortex-M0+, 64MB Filesystem Flash, I2C, UART, A/D Input, Digital I/O, High Accuracy Battery-Backed Real Time Clock, Lithium Ion Polymer Battery Charger
Based on ATSAMD21G18A MCU
On board:
* 64MB SPI flash for data and file system
* High Accuracy battery backed Real-Time-Clock
* USB Device port for PC or Mac connection
* I2C Connector on-board for convenient connection to sensors, displays, and other devices
* External Lithium Ion Polymer Battery connection and charger
* External power through battery, USB, or Molex Latch-Lock connector
* ARM Cortex header for debugging and programming
* UF2 Bootloader to load your application without additional hardware; provides easy drag-and-drop programming from Mac or PC
* CircuitPython loaded for immediate use without the need for additional development tools; utilizes the virtual comm port instantiated when the board is connected to Mac or PC, and provides USB mass storage device to drag and drop programs onto, or edit directly on the device
Can run standalone or piggy back on an application-specific board solution.
## Purchase
* [BDMICRO](https://bdmicro.com/products/vina-m0)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,37 +0,0 @@
---
layout: download
board_id: "bless_dev_board_multi_sensor"
title: "BLE-SS Dev Board Multi Sensor Download"
name: "BLE-SS Dev Board Multi Sensor"
manufacturer: "Switch Science, Inc."
board_url: "http://ssci.to/6250"
board_image: "bless_dev_board_multi_sensor.jpg"
downloads_display: true
date_added: 2020-07-27
features:
---
This development board includes a Bluetooth Low Energy-enabled ISP1807 from Insight SiP (based on the nRF52840) and six sensors: acceleration, magnetism, gyro, temperature, humidity and air pressure.
The development board is programmed with a bootloader. You can use the Arduino IDE or Circuit Python to develop your program. It has two switches and two LEDs each that can be used programmatically, and it also has a piezoelectric speaker.
It features a TPS63030 high-efficiency step-up/down converter and runs on CR2025 or CR2032 coin cell batteries. The board outline is the same as the Raspberry Pi Zero, so it can be used in a Raspberry Pi Zero case.
**Features:**
* ISP1807 based on the nRF52840
* 9-Axis Sensor (BXM055)
* Humidity and Temperature Sensor (HDC2010)
* Pressure Sensor (LPS22HB)
* Buzzer
* 2 LEDs (Green and Red)
* 2 Push buttons
* CR2032 Coin Battery supports
* Raspberry Pi Zero compatible board dimensions
## Purchase
* [Switch Science, Inc.](http://ssci.to/6250)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,16 +0,0 @@
---
layout: download
board_id: "blm_badge"
title: "BLM Badge Download"
name: "BLM Badge"
manufacturer: "Adafruit"
board_url: "https://github.com/adafruit/BLM-Badge-PCB"
board_image: "blmbadge.jpg"
date_added: 2020-9-1
features:
- STEMMA QT/QWIIC
---
Black Lives Matter interactive electronic learning kit.
https://www.adafruit.com/blacklivesmatter

View file

@ -6,9 +6,6 @@ name: "Programmable USB Hub"
manufacturer: "Capable Robot Components"
board_url: "https://www.crowdsupply.com/capable-robot-components/programmable-usb-hub"
board_image: "capablerobot_usbhub.jpg"
date_added: 2019-5-25
features:
- STEMMA QT/QWIIC
---
In addition to being a 4-port USB 2 High-Speed hub, this Programmable USB hub is also:

View file

@ -4,9 +4,8 @@ board_id: "catwan_usbstick"
title: "CatWAN USB Stick Download"
name: "CatWAN USB Stick"
manufacturer: "Electronic Cats"
board_url: "https://electroniccats.com/producto/catwan_usb-stick/"
board_url: ""
board_image: "catwan_usbstick.jpg"
date_added: 2019-4-2
features:
- LoRa/Radio
---

View file

@ -1,39 +0,0 @@
---
layout: download
board_id: "circuitbrains_basic_m0"
title: "CircuitBrains Basic Download"
name: "CircuitBrains Basic"
manufacturer: "Null Byte Labs LLC"
board_url: ""
board_image: "circuitbrains_basic.jpg"
date_added: 2020-2-27
downloads_display: true
blinka: false
download_instructions: ""
---
CircuitPython on an ARM Cortex M0 in 1 square inch! This "Just Add Solder" castellated module is perfect for incorporating into your own project. The CircuitBrains Basic board footprint is small enough to fit into narrow spaces and wearable projects.
**NOTE:** This board does not have a USB connector for the native USB. Native USB is broken out on the header/castellations and therefore requires a non-standard USB connection such as mounting to a motherboard PCB.
## Technical Specs
- Dimensions: 25 x 25 x 3.5 millimeters / 1 x 1 x 0.15 inches
- Atmel ATSAMD21E18 Microcontroller (32-bit ARM Cortex M0)
- 48 MHz
- 32 KB SRAM
- 256 KB Flash
- 4 MB QSPI Flash
- Onboard 3.3V LDO Regulator
- Power and Status LEDs
- Breakouts for SPI and I2C
- Breakouts for 4 Analog and 8 Digital Inputs/Outputs
## Purchase
Coming soon. Follow the below links for manufacturing updates:
* [CircuitBrains Basic Project Page](https://kevinneubauer.com/portfolio/circuitbrains-basic/)
* [Kevin Neubauer Twitter](https://twitter.com/kevinneubauer)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,39 +0,0 @@
---
layout: download
board_id: "circuitbrains_deluxe_m4"
title: "CircuitBrains Deluxe Download"
name: "CircuitBrains Deluxe"
manufacturer: "Null Byte Labs LLC"
board_url: ""
board_image: "circuitbrains_deluxe.jpg"
date_added: 2020-2-27
downloads_display: true
blinka: false
download_instructions: ""
---
CircuitPython on an ARM Cortex M4 in almost 1 square inch! This "Just Add Solder" castellated module is perfect for incorporating into your own project. The CircuitBrains Deluxe board footprint is small enough to fit into narrow spaces and wearable projects.
**NOTE:** This board does not have a USB connector for the native USB. Native USB is broken out on the header/castellations and therefore requires a non-standard USB connection such as mounting to a motherboard PCB.
## Technical Specs
- Dimensions: 29 x 29 x 3.5 millimeters / 1.15 x 1.15 x 0.15 inches
- Atmel ATSAMD51J19A Microcontroller (32-bit ARM Cortex M4)
- 120 MHz
- 192 KB SRAM
- 512 KB Flash
- 8 MB QSPI Flash
- Onboard 3.3V LDO Regulator
- Power and Status LEDs
- Breakouts for SPI and I2C
- Breakouts for 14 Analog and 19 Digital Inputs/Outputs
## Purchase
Coming soon. Follow the below links for manufacturing updates:
* [CircuitBrains Deluxe Project Page](https://kevinneubauer.com/portfolio/circuitbrains-deluxe/)
* [Kevin Neubauer Twitter](https://twitter.com/kevinneubauer)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -6,10 +6,9 @@ name: "Circuit Playground Bluefruit"
manufacturer: "Adafruit"
board_url: ""
board_image: "circuitplayground_bluefruit.jpg"
date_added: 2019-8-30
features:
- Speaker
- Solder-Free Alligator Clip
- Solder-free Alligator Cip
- Bluetooth/BTLE
---
@ -49,13 +48,7 @@ on the go!
* MicroUSB port for programming and debugging
* USB port can act like serial port, keyboard, mouse, joystick or MIDI!
## Tutorials
* [Circuit Playground Bluefruit Overview](https://learn.adafruit.com/adafruit-circuit-playground-bluefruit)
* [Projects and Guides](https://learn.adafruit.com/products/4333/guides)
## Purchase
* [Adafruit](https://www.adafruit.com/product/4333)
## Contribute

View file

@ -6,10 +6,9 @@ name: "Circuit Playground Express"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com"
board_image: "circuitplayground_express.jpg"
date_added: 2018-12-13
features:
- Speaker
- Solder-Free Alligator Clip
- Solder-free Alligator clip
---
The Circuit Playground Express is Adafruit's flagship educational board designed for CircuitPython.
@ -41,7 +40,6 @@ Here's some of the great goodies baked in to each Circuit Playground Express:
## Tutorials
* [Circuit Playground Express Overview](https://learn.adafruit.com/adafruit-circuit-playground-express)
* [Projects and Guides](https://learn.adafruit.com/products/3333/guides)
## Purchase
* [Adafruit](https://www.adafruit.com/product/3333)

View file

@ -6,10 +6,9 @@ name: "Circuit Playground Express 4-H"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com"
board_image: "circuitplayground_express_4h.jpg"
date_added: 2019-4-13
features:
- Speaker
- Solder-Free Alligator Clip
- Solder-free Alligator clip
---
The Circuit Playground Express is Adafruit's flagship educational board designed for CircuitPython.

View file

@ -6,11 +6,10 @@ name: "Circuit Playground Express + Crickit"
manufacturer: "Adafruit"
board_url: ""
board_image: "circuitplayground_express_crickit.jpg"
date_added: 2019-3-9
features:
- Speaker
- Robotics
- Solder-Free Alligator Clip
- Solder-free Alligator clip
---
**Crickit** is a **C**reative **R**obotics & **I**nteractive **C**onstruction **Kit**. It's an add-on for the popular Circuit Playground Express that lets you **#MakeRobotFriend** using CircuitPython (and more).
@ -31,10 +30,6 @@ Includes:
All are powered via 5V DC, so you can use any 5V-powered servos, DC motors, steppers, solenoids, relays etc. To keep things simple and safe, CRIKIT does not support mixing voltages, use only 5V - not for use with 9V or 12V robotic components.
## Tutorial
- [Circuit Playground Express + Crickit](https://learn.adafruit.com/adafruit-crickit-creative-robotic-interactive-construction-kit)
## Purchase
* [Circuit Playground Express - Adafruit](https://www.adafruit.com/product/3333)

View file

@ -6,10 +6,9 @@ name: "Circuit Playground Express Digi-Key"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com"
board_image: "circuitplayground_express_digikey_pycon2019.jpg"
date_added: 2019-4-13
features:
- Speaker
- Solder-Free Alligator Clip
- Solder-free Alligator clip
---
The Circuit Playground Express is Adafruit's flagship educational board designed for CircuitPython.

View file

@ -1,35 +0,0 @@
---
layout: download
board_id: "circuitplayground_express_displayio"
title: "Circuit Playground Express + Displayio Download"
name: "Circuit Playground Express + Displayio"
manufacturer: "Adafruit"
board_url: ""
board_image: "circuitplayground_express_displayio.jpg"
date_added: 2019-10-17
features:
- Speaker
- Display
- Solder-Free Alligator Clip
---
Extend and expand your Circuit Playground projects with a bolt on TFT Gizmo that lets you add a lovely color display in a sturdy and reliable fashion. This PCB looks just like a round TFT breakout but has permanently affixed M3 standoffs that act as mechanical and electrical connections.
Once attached you'll get a 1.54" 240x240 IPS display with backlight control, two 3-pin STEMMA connectors for attaching NeoPixel strips or servos, and a Class D audio amplifier with a Molex PicoBlade connector that can plug one of our lil speakers.
This is a great companion for our Circuit Playground Express or Bluefruit boards thanks to their fast SPI hardware speeds, and works in Arduino and CircuitPython. You can use it with the Circuit Playground Classic but it won't be very fast, as you have to bitbang the SPI - and the display has a lot of pixels - so it's not recommended.
Comes with a PCB that has pre-soldered standoffs attached, and 12x M3 screws for attachment. Fits all Circuit Playgrounds but like we mentioned earlier, the Express and Bluefruit are recommended.
## Tutorials
* [Circuit Playground Express Overview](https://learn.adafruit.com/adafruit-circuit-playground-express)
* [Adafruit Circuit Playground TFT Gizmo](https://learn.adafruit.com/adafruit-tft-gizmo)
## Purchase
* [Circuit Playground Express - Adafruit](https://www.adafruit.com/product/3333)
* [TFT Gizmo for CircuitPlayground Express - Adafruit](https://www.adafruit.com/product/4367)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -1,38 +0,0 @@
---
layout: download
board_id: "clue_nrf52840_express"
title: "CLUE NRF52840 Express Download"
name: "CLUE NRF52840 Express"
manufacturer: "Adafruit"
board_url: "https://www.adafruit.com/product/4500"
board_image: "clue_nrf52840_express.jpg"
date_added: 2019-12-30
features:
- Display
- Bluetooth/BTLE
- Solder-Free Alligator Clip
- STEMMA QT/QWIIC
---
We wanted to build some projects that have a small screen and a lot of sensors. This board has a 1.3″ 240×240 IPS TFT display, two buttons, and a ton of sensors:
LSM series 9-DoF motion - LSM6DS33 Accel/Gyro + LIS3MDL magnetometer
APDS9960 Proximity, Light, RGB, and Gesture Sensor
PDM Microphone sound sensor
Humidity, temperature and barometric environmental sensing
Theres a Qwiic / STEMMA QT connector for adding more sensors, like PM2.5 air quality and others that were too big to fit on the board.
Well be primarily using CircuitPython for programming it, but it will also work in Arduino. And of course, wed love to see MakeCode on it!
After designing it, the board was close enough to micro:bit-shape-size that we moved a few parts to make it fit in micro:bit robots and some projects the nrf52840 is a big upgrade chip and can do stuff like Tensorflow Lite for Microcontrollers, BLE central and peripheral, and more.
## Tutorials
* [CLUE Overview](https://learn.adafruit.com/adafruit-clue)
* [Projects and Guides](https://learn.adafruit.com/products/4500/guides)
## Purchase
* [Adafruit CLUE](https://www.adafruit.com/product/4500)
## Contribute
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_board/{{ page.board_id }}.md).

View file

@ -7,7 +7,6 @@ manufacturer: "unknown"
board_url: ""
board_image: "unknown.jpg"
downloads_display: false
date_added: 2019-4-5
features:
---

View file

@ -1,41 +0,0 @@
---
layout: download
board_id: "cp_sapling_m0"
title: "CP Sapling M0 Download"
name: "CP Sapling"
manufacturer: "Oak Development Technologies"
board_url: "https://www.oakdev.tech/store/p7/CP-Sapling-m0-development-board.html#/"
board_image: "cp_sapling_m0.jpg"
date_added: 2020-11-23
features:
- STEMMA QT/QWIIC
---
Finally, a tree that runs CircuitPython? YEP! Now you can get working in CircuitPython fast with our new CircuitPython compatible development board featuring the popular Microchip AT SAM D21 microcontroller.
Providing quick and easy access to SPI and I2C (pins + Stemma/Qwiic connector) so you can get your project off the ground in no time.
This board also comes with the SOIC-8 pads available on the bottom of the board to enable it to expand storage with SPI FLASH!
* **ATSAMD21E18** 32-bit Cortex M0+ - 48 MHz 32 bit processor with **256KB Flash** and **32 KB RAM**
* Native USB supported by every OS - can be used in CircuitPython as USB serial console, MIDI, Keyboard/Mouse HID, even a little disk drive for storing Python scripts.
* Can be used with **CircuitPython** (Arduino coming soon!)
* **Built in BIG 3535 RGB NeoPixel LED**
* **8 GPIO pins**:
* 2 x 12-bit analog inputs (SDA/SCL do not have analog inputs)
* 8 x PWM outputs
* Hardware I2C port with STEMMA QT plug-n-play connector
* Hardware SPI
* 3.3V regulator with [500mA peak output]()
* [Optional SOIC-8 SPI Flash chip on bottom]
* **Reset switch** for starting your project code over or entering bootloader mode
## Purchase
* [Oak Dev Tech](https://www.oakdev.tech/store/p7/CP-Sapling-m0-development-board.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/_board/{{ page.board_id }}.md).

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