Compare commits
No commits in common. "create-pull-request/patch-1719792716" and "master" have entirely different histories.
create-pul
...
master
2462 changed files with 9189 additions and 136379 deletions
65
.github/workflows/adabot_cron.yml
vendored
65
.github/workflows/adabot_cron.yml
vendored
|
|
@ -1,65 +0,0 @@
|
|||
name: Update Libraries/Contributing Info
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: 15 9 * * *
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
check-repo-owner:
|
||||
# This job is so the entire workflow will end successfully and give some
|
||||
# output to explain why it hasn't run on a non-Adafruit fork.
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: repository
|
||||
env:
|
||||
OWNER_IS_ADAFRUIT: ${{ startswith(github.repository, 'adafruit/') }}
|
||||
run: |
|
||||
echo "This workflow will only run if Adafruit is the repository owner."
|
||||
echo "Repository owner is Adafruit: $OWNER_IS_ADAFRUIT"
|
||||
update-bundles:
|
||||
runs-on: ubuntu-latest
|
||||
# Only run the build on Adafruit's repository. Forks won't have the secrets.
|
||||
# Its necessary to do this here, since 'schedule' events cannot (currently)
|
||||
# be limited (they run on all forks' default branches).
|
||||
if: startswith(github.repository, 'adafruit/')
|
||||
steps:
|
||||
- name: Dump GitHub context
|
||||
env:
|
||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
run: echo "$GITHUB_CONTEXT"
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Versions
|
||||
run: |
|
||||
python3 --version
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
show-progress: false
|
||||
submodules: true
|
||||
- name: Install deps
|
||||
run: |
|
||||
pip install -r adabot/requirements.txt
|
||||
- name: Pip install pylint
|
||||
run: |
|
||||
pip install --force-reinstall pylint==2.7.1
|
||||
- name: Make Directory For Report Files
|
||||
run: mkdir -p bin/adabot
|
||||
- name: Run adabot.update_cp_org_libraries
|
||||
env:
|
||||
ADABOT_GITHUB_USER: ${{ secrets.ADABOT_GITHUB_USER }}
|
||||
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.ADABOT_GITHUB_ACCESS_TOKEN }}
|
||||
RTD_TOKEN: ${{ secrets.RTD_TOKEN }}
|
||||
run: |
|
||||
cd adabot
|
||||
python3 -u -m adabot.update_cp_org_libraries -o $GITHUB_WORKSPACE/bin/adabot/libraries.v2.json
|
||||
- name: Check For Files
|
||||
run: |
|
||||
ls bin/adabot
|
||||
- name: Upload Reports To AWS S3
|
||||
env:
|
||||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/adabot/ s3://adafruit-circuit-python/adabot/web/ --recursive --no-progress --region us-east-1"
|
||||
77
.github/workflows/build.yml
vendored
77
.github/workflows/build.yml
vendored
|
|
@ -1,77 +0,0 @@
|
|||
name: Jekyll site CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
schedule:
|
||||
- cron: 0 10 * * *
|
||||
pull_request:
|
||||
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"
|
||||
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@v3
|
||||
with:
|
||||
submodules: true
|
||||
- name: Update Awesome CircuitPython
|
||||
run: |
|
||||
(cd awesome-circuitpython && git fetch origin main:main && git checkout main)
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: '3'
|
||||
bundler-cache: true
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
gem install bundler:2.2.26
|
||||
bundle install --full-index
|
||||
pip install python-frontmatter pillow python-dateutil
|
||||
- name: Check feature names and other data
|
||||
run: python3 tools/check-boards.py
|
||||
- name: Check Image Dimensions
|
||||
run: python3 tools/check-images.py
|
||||
- name: Make Directory For Report Files
|
||||
run: mkdir -p json
|
||||
- name: Generate ESP32 Boards JSON
|
||||
run: python3 tools/generate-board-info.py -o json/esp32_boards.json
|
||||
- name: Check For Files
|
||||
run: |
|
||||
ls json
|
||||
- name: Upload ESP32 Boards JSON 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 json/esp32_boards.json s3://adafruit-circuit-python/esp32_boards.json --no-progress --region us-east-1"
|
||||
- name: Build site with jekyll
|
||||
run: |
|
||||
bundle exec jekyll build -d build
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./build
|
||||
cname: circuitpython.org
|
||||
user_name: ${{ secrets.ADABOT_GITHUB_USER }}
|
||||
user_email: ${{ secrets.ADABOT_GITHUB_EMAIL }}
|
||||
if: github.event_name != 'pull_request'
|
||||
29
.github/workflows/images.yml
vendored
29
.github/workflows/images.yml
vendored
|
|
@ -1,29 +0,0 @@
|
|||
name: Compress Images
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 1 * *'
|
||||
jobs:
|
||||
build:
|
||||
name: calibreapp/image-actions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
show-progress: false
|
||||
|
||||
- name: Compress Images
|
||||
id: calibre
|
||||
uses: calibreapp/image-actions@main
|
||||
with:
|
||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
compressOnly: true
|
||||
- name: Create New Pull Request If Needed
|
||||
if: steps.calibre.outputs.markdown != ''
|
||||
uses: peter-evans/create-pull-request@v4
|
||||
with:
|
||||
title: Compressed Images Nightly
|
||||
branch-suffix: timestamp
|
||||
commit-message: Compressed Images
|
||||
body: ${{ steps.calibre.outputs.markdown }}
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,9 +1,5 @@
|
|||
_site
|
||||
.sass-cache
|
||||
.jekyll-metadata
|
||||
.jekyll-cache
|
||||
.DS_Store
|
||||
_drafts/
|
||||
.bundle
|
||||
vendor
|
||||
.idea
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
ruby 3.2.2
|
||||
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# TravisCI config for circuitpython.org
|
||||
|
||||
# only run if triggered by a cron
|
||||
if: type = cron
|
||||
|
||||
dist: xenial
|
||||
language: python
|
||||
python: "3.6"
|
||||
|
||||
install:
|
||||
- pip install -r adabot/requirements.txt
|
||||
|
||||
script:
|
||||
- cd adabot
|
||||
- python -u -m adabot.update_cp_org_libraries
|
||||
12
Gemfile
12
Gemfile
|
|
@ -8,21 +8,21 @@ source "https://rubygems.org"
|
|||
#
|
||||
# This will help ensure the proper Jekyll version is running.
|
||||
# Happy Jekylling!
|
||||
gem "jekyll", "~> 4.2"
|
||||
gem "jekyll", "~> 3.8.4"
|
||||
|
||||
|
||||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
||||
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
||||
# gem "github-pages", group: :jekyll_plugins
|
||||
|
||||
# If you have any plugins, put them here!
|
||||
group :jekyll_plugins do
|
||||
gem 'jekyll-sitemap'
|
||||
gem 'jekyll-seo-tag'
|
||||
gem 'jekyll-paginate'
|
||||
gem 'jekyll-redirect-from'
|
||||
gem "jekyll-get-json", "~> 1"
|
||||
end
|
||||
|
||||
group :development do
|
||||
gem 'rake'
|
||||
gem 'image_processing'
|
||||
end
|
||||
|
||||
|
||||
gem "webrick", "~> 1.7"
|
||||
|
|
|
|||
118
Gemfile.lock
118
Gemfile.lock
|
|
@ -1,98 +1,80 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
addressable (2.8.1)
|
||||
public_suffix (>= 2.0.2, < 6.0)
|
||||
addressable (2.5.2)
|
||||
public_suffix (>= 2.0.2, < 4.0)
|
||||
colorator (1.1.0)
|
||||
concurrent-ruby (1.2.2)
|
||||
deep_merge (1.2.2)
|
||||
em-websocket (0.5.3)
|
||||
concurrent-ruby (1.0.5)
|
||||
em-websocket (0.5.1)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0)
|
||||
http_parser.rb (~> 0.6.0)
|
||||
eventmachine (1.2.7)
|
||||
ffi (1.15.5)
|
||||
ffi (1.9.25)
|
||||
forwardable-extended (2.6.0)
|
||||
google-protobuf (3.22.0)
|
||||
http_parser.rb (0.8.0)
|
||||
i18n (1.12.0)
|
||||
http_parser.rb (0.6.0)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
image_processing (1.12.2)
|
||||
mini_magick (>= 4.9.5, < 5)
|
||||
ruby-vips (>= 2.0.17, < 3)
|
||||
jekyll (4.3.3)
|
||||
image_processing (1.9.0)
|
||||
mini_magick (>= 4.9.3, < 5)
|
||||
ruby-vips (>= 2.0.13, < 3)
|
||||
jekyll (3.8.4)
|
||||
addressable (~> 2.4)
|
||||
colorator (~> 1.0)
|
||||
em-websocket (~> 0.5)
|
||||
i18n (~> 1.0)
|
||||
jekyll-sass-converter (>= 2.0, < 4.0)
|
||||
i18n (~> 0.7)
|
||||
jekyll-sass-converter (~> 1.0)
|
||||
jekyll-watch (~> 2.0)
|
||||
kramdown (~> 2.3, >= 2.3.1)
|
||||
kramdown-parser-gfm (~> 1.0)
|
||||
kramdown (~> 1.14)
|
||||
liquid (~> 4.0)
|
||||
mercenary (>= 0.3.6, < 0.5)
|
||||
mercenary (~> 0.3.3)
|
||||
pathutil (~> 0.9)
|
||||
rouge (>= 3.0, < 5.0)
|
||||
rouge (>= 1.7, < 4)
|
||||
safe_yaml (~> 1.0)
|
||||
terminal-table (>= 1.8, < 4.0)
|
||||
webrick (~> 1.7)
|
||||
jekyll-get-json (1.0.0)
|
||||
deep_merge (~> 1.2)
|
||||
jekyll (>= 3.0)
|
||||
jekyll-paginate (1.1.0)
|
||||
jekyll-redirect-from (0.16.0)
|
||||
jekyll (>= 3.3, < 5.0)
|
||||
jekyll-sass-converter (3.0.0)
|
||||
sass-embedded (~> 1.54)
|
||||
jekyll-seo-tag (2.8.0)
|
||||
jekyll (>= 3.8, < 5.0)
|
||||
jekyll-sitemap (1.4.0)
|
||||
jekyll (>= 3.7, < 5.0)
|
||||
jekyll-watch (2.2.1)
|
||||
jekyll-sass-converter (1.5.2)
|
||||
sass (~> 3.4)
|
||||
jekyll-seo-tag (2.5.0)
|
||||
jekyll (~> 3.3)
|
||||
jekyll-sitemap (1.2.0)
|
||||
jekyll (~> 3.3)
|
||||
jekyll-watch (2.1.2)
|
||||
listen (~> 3.0)
|
||||
kramdown (2.4.0)
|
||||
rexml
|
||||
kramdown-parser-gfm (1.1.0)
|
||||
kramdown (~> 2.0)
|
||||
liquid (4.0.4)
|
||||
listen (3.8.0)
|
||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||
rb-inotify (~> 0.9, >= 0.9.10)
|
||||
mercenary (0.4.0)
|
||||
mini_magick (4.12.0)
|
||||
pathutil (0.16.2)
|
||||
kramdown (1.17.0)
|
||||
liquid (4.0.1)
|
||||
listen (3.1.5)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
mercenary (0.3.6)
|
||||
mini_magick (4.9.5)
|
||||
pathutil (0.16.1)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (5.0.1)
|
||||
rake (13.0.6)
|
||||
rb-fsevent (0.11.2)
|
||||
rb-inotify (0.10.1)
|
||||
ffi (~> 1.0)
|
||||
rexml (3.2.5)
|
||||
rouge (4.1.0)
|
||||
ruby-vips (2.1.4)
|
||||
ffi (~> 1.12)
|
||||
safe_yaml (1.0.5)
|
||||
sass-embedded (1.58.3)
|
||||
google-protobuf (~> 3.21)
|
||||
rake (>= 10.0.0)
|
||||
terminal-table (3.0.2)
|
||||
unicode-display_width (>= 1.1.1, < 3)
|
||||
unicode-display_width (2.4.2)
|
||||
webrick (1.8.1)
|
||||
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)
|
||||
ruby_dep (1.5.0)
|
||||
safe_yaml (1.0.4)
|
||||
sass (3.6.0)
|
||||
sass-listen (~> 4.0.0)
|
||||
sass-listen (4.0.0)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
image_processing
|
||||
jekyll (~> 4.2)
|
||||
jekyll-get-json (~> 1)
|
||||
jekyll (~> 3.8.4)
|
||||
jekyll-paginate
|
||||
jekyll-redirect-from
|
||||
jekyll-seo-tag
|
||||
jekyll-sitemap
|
||||
rake
|
||||
webrick (~> 1.7)
|
||||
|
||||
BUNDLED WITH
|
||||
2.2.26
|
||||
1.17.3
|
||||
|
|
|
|||
34
README.md
34
README.md
|
|
@ -1,35 +1,11 @@
|
|||
|
||||
# CircuitPython organization site
|
||||
A more detailed gude for adding a board to CircuitPython can be found in the
|
||||
following Adafruit Learn guide: [How to add a New Board to the circuitpython.org website](https://learn.adafruit.com/how-to-add-a-new-board-to-the-circuitpython-org-website)
|
||||
|
||||
**To add a new board to the site:**
|
||||
|
||||
1. Duplicate `template.md` to `_board/<board id>.md`.
|
||||
2. Edit `_board/<board id>.md` according to the template's instructions.
|
||||
3. In your `_board/<board id>.md` you will specify a `board_image`. Create 3
|
||||
versions of this file, in the following sizes and folder locations:
|
||||
|
||||
|Size|File|Dimensions (px)|
|
||||
|--|--|--|
|
||||
|Original|assets/images/orignal/{board_image}|900px+ width and 4:3 ratio width|
|
||||
|||example: 900 x 675|
|
||||
|Large|assets/images/large/{board_image}|800 x 600|
|
||||
|Small|assets/images/small/{board_image}|300 x 225|
|
||||
|
||||
> For more information on preferred images or if you prefer or must use 13:10 see
|
||||
> [Preparing the Images](https://learn.adafruit.com/how-to-add-a-new-board-to-the-circuitpython-org-website/preparing-the-images)
|
||||
> in the Adafruit Learn guide
|
||||
|
||||
4. Create a pull request with the file changes.
|
||||
|
||||
**To test your changes locally:**
|
||||
|
||||
1. You need "ruby" and "ruby-bundler" installed locally. These instructions
|
||||
were tested with ruby 2.5 and ruby-bundler 1.17.3 on a Debian Stretch system.
|
||||
2. As needed, `git submodule update --init --recursive` to fetch the submodules
|
||||
3. One time, run `bundle config set path 'vendor/bundle' && bundle install`
|
||||
4. Run `bundle exec jekyll serve` to generate the site locally
|
||||
5. Visit the displayed "server address"
|
||||
6. After most local edits, the content will be updated. You will need to
|
||||
reload (ctrl-r or F5) your browser
|
||||
3. Provide 3 images. An original high-quality image. A smaller image (300 px width),
|
||||
and a larger image (700 px width) in each respective directory (assets/images/boards/{small large original})
|
||||
and process them in something like https://squoosh.app/ to reduce file size. If
|
||||
you only have one image, place it in the 'original' folder.
|
||||
3. Create a pull request with the file changes.
|
||||
|
|
|
|||
|
|
@ -1,78 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_feather_rp2040"
|
||||
title: "Feather RP2040 Download"
|
||||
name: "Feather RP2040"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/4884"
|
||||
board_image: "adafruit_feather_rp2040.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
- Feather-Compatible
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
A new chip means a new Feather, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the Feather Treatment" and so we did! This Feather features the **RP2040**, and all niceties you know and love about Feather.
|
||||
|
||||
## Technical details
|
||||
|
||||
* Measures 2.0" x 0.9" x 0.28" (50.8 mm x 22.8 mm x 7 mm) without headers soldered in
|
||||
* Light as a (large?) feather - 5 grams
|
||||
* RP2040 32-bit Cortex M0+ dual core running at ~125 MHz @ 3.3 V logic and power
|
||||
* 264 KB RAM
|
||||
* **8 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
|
||||
* **21 GPIO pins with following capabilities:**
|
||||
* **Four** 12 bit ADCs (one more than Pico)
|
||||
* Two I2C, Two SPI and two UART peripherals, we label one for the 'main' interface in standard Feather locations
|
||||
* 16 PWM outputs - for servos, LEDs, etc
|
||||
* The 8 digital 'non-ADC/non-peripheral' GPIO are consecutive for maximum PIO compatibility
|
||||
* **Built in 200 mA lipoly charger** with charging status indicator LED
|
||||
* **Pin #13 red LED** for general purpose blinking
|
||||
* **RGB NeoPixel** with power pin on GPIO so you can depower it for low power usages.
|
||||
* On-board **STEMMA QT connector** that lets you quickly connect any Qwiic, STEMMA QT or Grove I2C devices with no soldering!
|
||||
* **Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)**
|
||||
* 3.3 V Power/enable pin
|
||||
* [Optional SWD debug port can be soldered in for debug access](https://www.adafruit.com/product/752)
|
||||
* 4 mounting holes
|
||||
* 24 MHz crystal for perfect timing.
|
||||
* 3.3 V regulator with 500 mA peak current output
|
||||
* **USB-C connector** lets you access built-in ROM USB bootloader and serial port debugging
|
||||
|
||||
**Inside the RP2040 is a 'permanent ROM' USB UF2 bootloader.** What that means is when you want to program new firmware, you can hold down the BOOTSEL button while plugging it into USB (or pulling down the RUN/Reset pin to ground) and it will appear as a USB disk drive you can drag the firmware onto. Folks who have been using Adafruit products will find this very familiar - we use the technique on all our native-USB boards. Just note you don't double-click reset, instead hold down BOOTSEL during boot to enter the bootloader!
|
||||
|
||||
The RP2040 is a powerful chip, which has the clock speed of our M4 (SAMD51), and two cores that are equivalent to our M0 (SAMD1). Since it is an M0 chip, it does not have a floating point unit, or DSP hardware support - so if you're doing something with heavy floating-point math, it will be done in software and thus not as fast as an M4. For many other computational tasks, you'll get close-to-M4 speeds!
|
||||
|
||||
For peripherals, there are two I2C controllers, two SPI controllers, and two UARTs that are multiplexed across the GPIO - check the pinout for what pins can be set to which. There are 16 PWM channels, each pin has a channel it can be set to (ditto on the pinout).
|
||||
|
||||
You'll note there's no I2S peripheral, or SDIO, or camera, what's up with that? Well instead of having specific hardware support for serial-data-like peripherals like these, the RP2040 comes with the PIO state machine system which is a unique and powerful way to create custom hardware logic and data processing blocks that run on their own without taking up a CPU. For example, NeoPixels - often we bitbang the timing-specific protocol for these LEDs. For the RP2040, we instead use PIO object that reads in the data buffer and clocks out the right bitstream with perfect accuracy. Same with I2S audio in or out, LED matrix displays, 8-bit or SPI based TFTs, even VGA! In MicroPython and CircuitPython you can create PIO control commands to script the peripheral and load it in at runtime. There are 2 PIO peripherals with 4 state machines each.
|
||||
|
||||
**At the time of launch, there is no Arduino core support for this board. There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/micropython), and a [CircuitPython port](/downloads)!** We of course [recommend CircuitPython because we think it's the easiest way to get started](https://learn.adafruit.com/welcome-to-circuitpython) and it has support with most of our drivers, displays, sensors, and more, supported out of the box so you can follow along with our CircuitPython projects and tutorials.
|
||||
|
||||
While the RP2040 has lots of onboard RAM (264 KB), it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. **On this board there is 8 MB**, which is shared between the program it's running and any file storage used by MicroPython or CircuitPython. When using C/C++ you get the whole flash memory, if using Python you will have about 7 MB remaining for code, files, images, fonts, etc.
|
||||
|
||||
**RP2040 Chip features:**
|
||||
* Dual ARM Cortex-M0+ @ 133 MHz
|
||||
* 264 kB on-chip SRAM in six independent banks
|
||||
* Support for up to 16MB of off-chip Flash memory via dedicated QSPI bus
|
||||
* DMA controller
|
||||
* Fully-connected AHB crossbar
|
||||
* Interpolator and integer divider peripherals
|
||||
* On-chip programmable LDO to generate core voltage
|
||||
* 2 on-chip PLLs to generate USB and core clocks
|
||||
* 30 GPIO pins, 4 of which can be used as analog inputs
|
||||
* Peripherals
|
||||
* 2 UARTs
|
||||
* 2 SPI controllers
|
||||
* 2 I2C controllers
|
||||
* 16 PWM channels
|
||||
* USB 1.1 controller and PHY, with host and device support
|
||||
* 8 PIO state machines
|
||||
|
||||
Comes fully assembled and tested, with the UF2 USB bootloader. We also toss in some header, so you can solder it in and plug it into a solderless breadboard.
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/4884)
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_feather_rp2040_can"
|
||||
title: "Feather RP2040 CAN Bus Download"
|
||||
name: "Feather RP2040 CAN Bus"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5724"
|
||||
board_image: "adafruit_feather_rp2040_can.jpg"
|
||||
blinka: true
|
||||
date_added: 2023-05-02
|
||||
tags:
|
||||
- CAN Bus Feather
|
||||
- Feather CAN Bus
|
||||
features:
|
||||
- Feather-Compatible
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
If you'd like quickly get started with CAN bus interfacing, with no soldering required, our **Adafruit RP2040 CAN Bus Feather** comes ready-to-rock with a microcontroller, CAN chipset and terminal blocks for instant gratification. [The controller used is the MCP26525 (aka a MCP2515 with built-in transciever), an extremely popular and well-supported chipset](https://www.microchip.com/en-us/product/MCP2515) that has drivers in Arduino and [CircuitPython](https://github.com/adafruit/Adafruit_CircuitPython_MCP2515) and only requires an SPI port and two pins for chip-select and IRQ. Use it to send and receive messages in either standard or extended format at up to 1 Mbps.
|
||||
|
||||
Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. [We have other boards in the Feather family, check'em out here](https://www.adafruit.com/feather).
|
||||
|
||||
[CAN Bus is a small-scale networking standard](https://en.wikipedia.org/wiki/CAN_bus), originally designed for cars and, yes, busses, but is now used for many robotics or sensor networks that need better range and addressing than I2C and don't have the pins or computational ability to talk on Ethernet. CAN is 2 wire differential, which means it's good for long distances and noisy environments.
|
||||
|
||||
Messages are sent at about 1Mbps rate - you set the frequency for the bus and then all 'joiners' must match it, and have an address before the packet so that each node can listen in to messages just for it. New nodes can be attached easily because they just need to connect to the two data lines anywhere in the shared net. Each CAN device sends messages whenever it wants, and thanks to some clever data encoding, can detect if there's a message collision and retransmit later.
|
||||
|
||||
We've added a few nice extras to this Feather to make it useful in many common CAN scenarios:
|
||||
|
||||
- [**5V charge-pump voltage generator**](https://www.adafruit.com/product/3661), so even though you are running 3.3V on a Feather board, it will generate a nice clean 5V as required by the interal transceiver.
|
||||
- **[3.5mm soldered terminal block](https://www.adafruit.com/product/725)** quick access to the High and Low data lines as well as a ground pin, without any soldering.
|
||||
- **120-ohm termination resistor on board**, you can remove the termination easily by cutting the jumper marked TERM on the top of the board.
|
||||
- **CAN control CS, Reset, Int, standby pins** connected internally so you can use any FeatherWing without pin conflicts.
|
||||
|
||||
At the Feather's heart is an RP2040 chip, clocked at 133 MHz and at 3.3V logic, the same one used in the [Raspberry Pi Pico](https://www.adafruit.com/product/4864). This chip has a whopping 8 MB of onboard QSPI FLASH and 264K of RAM! There's even room left over for a STEMMA QT connector for plug-and-play of I2C devices.
|
||||
|
||||
To make it easy to use for portable projects, we added a connector for any of our 3.7V Lithium polymer batteries and built-in battery charging. You don't need a battery, it will run just fine straight from the USB Type C connector. But, if you do have a battery, you can take it on the go, then plug in the USB to recharge. The Feather will automatically switch over to USB power when it's available.
|
||||
|
||||
**Here're some handy specs! You get:**
|
||||
|
||||
- Measures 2.0" x 0.9" x 0.28" (50.8mm x 22.8mm x 7mm) without headers soldered in
|
||||
- Light as a (large?) feather - 6.3 grams
|
||||
- RP2040 32-bit Cortex M0+ dual core running at ~133 MHz @ 3.3V logic and power
|
||||
- 264 KB RAM
|
||||
- **8 MB SPI FLASH** chip for storing files, images and CircuitPython/MicroPython code storage. No EEPROM
|
||||
- Tons of GPIO! 21 x GPIO pins with following capabilities:
|
||||
- **Four** 12-bit ADCs (one more than Pico)
|
||||
- Two I2C, Two SPI, and two UART peripherals, we label one for the 'main' interface in standard Feather locations
|
||||
- 16 x PWM outputs - for servos, LEDs, etc
|
||||
- **Built-in 200mA+ lipoly charger** with charging status indicator LED
|
||||
- **Pin #13 red LED** for general purpose blinking
|
||||
- **RGB NeoPixel** for full-color indication.
|
||||
- On-board **STEMMA QT connector** that lets you quickly connect any Qwiic, STEMMA QT or Grove I2C devices with no soldering!
|
||||
- **Both Reset button and Bootloader select button for quick restarts** (no unplugging-replugging to relaunch code)
|
||||
- **USB Type C connector** lets you access built-in ROM USB bootloader and serial port debugging
|
||||
- 3.3V regulator with 500mA peak current output and power enable pin
|
||||
- 4 mounting holes
|
||||
- 12 MHz crystal for perfect timing.
|
||||
- **Support circuitry for CAN Bus using SPI interface**
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5724)
|
||||
|
|
@ -1,60 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_feather_rp2040_rfm"
|
||||
title: "Feather RP2040 RFM9x Board Download"
|
||||
name: "Feather RP2040 RFM9x"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5714"
|
||||
board_image: "adafruit_feather_rp2040_rfm9x.jpg"
|
||||
blinka: true
|
||||
date_added: 2023-04-04
|
||||
features:
|
||||
- Feather-Compatible
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
This is the Adafruit Feather RP2040 RFM9x. We call these RadioFruits, our take on a microcontroller with packet radio transceiver with built-in USB and battery charging. It's an Adafruit Feather RP2040 with a radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi.
|
||||
|
||||
Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here.
|
||||
|
||||
It's kinda like we took our RP2040 Feather and an RFM9x breakout board and glued them together. You get all the pins for use on the Feather, the LiPoly battery support, USB C power / data, onboard NeoPixel, 8MB of FLASH for storing code and files, and then with the 8 unused pins, we wired up all the DIO pins on the RFM module. There's even room left over for a STEMMA QT connector and a uFL connector for connecting larger antennas.
|
||||
|
||||
At the Feather's heart is an RP2040 chip, clocked at 133 MHz and at 3.3V logic, the same one used in the Raspberry Pi Pico. This chip has a whopping 8MB of onboard QSPI FLASH and 264K of RAM! This makes it great for making wireless sensor nodes that can send to each other without a lot of software configuration.
|
||||
|
||||
To make it easy to use for portable projects, we added a connector for any of our 3.7V Lithium polymer batteries and built-in battery charging. You don't need a battery, it will run just fine straight from the USB Type C connector. But, if you do have a battery, you can take it on the go, then plug in the USB to recharge. The Feather will automatically switch over to USB power when it's available.
|
||||
|
||||
## Technical Details
|
||||
|
||||
* Measures approximately 2.0" x 0.9" x 0.28" (50.8mm x 22.8mm x 7mm) without headers soldered in
|
||||
* Light as a (large?) feather - approximately 6 grams
|
||||
* RP2040 32-bit Cortex M0+ dual core running at ~133 MHz @ 3.3V logic and power
|
||||
* 264 KB RAM
|
||||
* 8 MB SPI FLASH chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
|
||||
* Tons of GPIO! 21 x GPIO pins with following capabilities:
|
||||
* Four 12-bit ADCs (one more than Pico)
|
||||
* Two I2C, Two SPI, and two UART peripherals, we label one for the 'main' interface in standard Feather locations
|
||||
* 16 x PWM outputs - for servos, LEDs, etc
|
||||
* Built-in 200mA+ lipoly charger with charging status indicator LED
|
||||
* Pin #13 red LED for general purpose blinking
|
||||
* RGB NeoPixel for full-color indication.
|
||||
* On-board STEMMA QT connector that lets you quickly connect any Qwiic, STEMMA QT or Grove I2C devices with no soldering!
|
||||
* Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)
|
||||
* USB Type C connector lets you access built-in ROM USB bootloader and serial port debugging
|
||||
* 3.3V Power/enable pin
|
||||
* 4 mounting holes
|
||||
* 12 MHz crystal for perfect timing.
|
||||
* 3.3V regulator with 500mA peak current output
|
||||
* SX127x LoRa® based module with SPI interface
|
||||
* Packet radio with ready-to-go Arduino libraries
|
||||
* Uses the license-free ISM bands (ITU "Europe" @ 433MHz and ITU "Americas" @ 900MHz)
|
||||
* +5 to +20 dBm up to 100 mW Power Output Capability (power output selectable in software)
|
||||
* ~300uA during full sleep, ~120mA peak during +20dBm transmit, ~40mA during active radio listening.
|
||||
* Simple wire antenna can be soldered into a solder pad, there's also a uFL connector that can be used with uFL-to-SMA adapters for attaching bigger antennas.
|
||||
|
||||
## Tutorials
|
||||
|
||||
* Guide is coming soon!
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5714)
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_feather_rp2040_rfm"
|
||||
title: "Feather RP2040 RFM69 Board Download"
|
||||
name: "Feather RP2040 RFM69"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5712"
|
||||
board_image: "adafruit_feather_rp2040_rfm69.jpg"
|
||||
blinka: true
|
||||
date_added: 2023-04-04
|
||||
features:
|
||||
- Feather-Compatible
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
This is the Adafruit Feather RP2040 RFM69. We call these RadioFruits, our take on a microcontroller with packet radio transceiver with built-in USB and battery charging. It's an Adafruit Feather RP2040 with a radio module cooked in! Great for making wireless networks that are more flexible than Bluetooth LE and without the high power requirements of WiFi.
|
||||
|
||||
Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here.
|
||||
|
||||
It's kinda like we took our RP2040 Feather and an RFM69 breakout board and glued them together. You get all the pins for use on the Feather, the LiPoly battery support, USB C power / data, onboard NeoPixel, 8MB of FLASH for storing code and files, and then with the 8 unused pins, we wired up all the DIO pins on the RFM module. There's even room left over for a STEMMA QT connector and a uFL connector for connecting larger antennas.
|
||||
|
||||
At the Feather's heart is an RP2040 chip, clocked at 133 MHz and at 3.3V logic, the same one used in the Raspberry Pi Pico. This chip has a whopping 8MB of onboard QSPI FLASH and 264K of RAM! This makes it great for making wireless sensor nodes that can send to each other without a lot of software configuration.
|
||||
|
||||
To make it easy to use for portable projects, we added a connector for any of our 3.7V Lithium polymer batteries and built-in battery charging. You don't need a battery, it will run just fine straight from the USB Type C connector. But, if you do have a battery, you can take it on the go, then plug in the USB to recharge. The Feather will automatically switch over to USB power when it's available.
|
||||
|
||||
## Technical Details
|
||||
* Measures approximately 2.0" x 0.9" x 0.28" (50.8mm x 22.8mm x 7mm) without headers soldered in
|
||||
* Light as a (large?) feather - approximately 6 grams
|
||||
* RP2040 32-bit Cortex M0+ dual core running at ~133 MHz @ 3.3V logic and power
|
||||
* 264 KB RAM
|
||||
* 8 MB SPI FLASH chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
|
||||
* Tons of GPIO! 21 x GPIO pins with following capabilities:
|
||||
* Four 12-bit ADCs (one more than Pico)
|
||||
* Two I2C, Two SPI, and two UART peripherals, we label one for the 'main' interface in standard Feather locations
|
||||
* 16 x PWM outputs - for servos, LEDs, etc
|
||||
* Built-in 200mA+ lipoly charger with charging status indicator LED
|
||||
* Pin #13 red LED for general purpose blinking
|
||||
* RGB NeoPixel for full-color indication.
|
||||
* On-board STEMMA QT connector that lets you quickly connect any Qwiic, STEMMA QT or Grove I2C devices with no soldering!
|
||||
* Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)
|
||||
* USB Type C connector lets you access built-in ROM USB bootloader and serial port debugging
|
||||
* 3.3V Power/enable pin
|
||||
* 4 mounting holes
|
||||
* 12 MHz crystal for perfect timing.
|
||||
* 3.3V regulator with 500mA peak current output
|
||||
* SX1231 based module with SPI interface
|
||||
* +13 to +20 dBm up to 100 mW Power Output Capability (power output selectable in software)
|
||||
* 50mA (+13 dBm) to 150mA (+20dBm) current draw for transmissions, ~30mA during active radio listening.
|
||||
* Range of approx. 500 meters, depending on obstructions, frequency, antenna and power output
|
||||
* Create multipoint networks with individual node addresses
|
||||
* Encrypted packet engine with AES-128
|
||||
* Packet radio with ready-to-go Arduino & CircuitPython libraries
|
||||
* Uses the license-free ISM band: "European ISM" @ 868MHz or "American ISM" @ 915MHz
|
||||
* Simple wire antenna can be soldered into a solder pad, there's also a uFL connector that can be used with uFL-to-SMA adapters for attaching bigger antennas.
|
||||
|
||||
## Tutorials
|
||||
|
||||
* Guide is coming soon!
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5712)
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_feather_rp2040_thinkink"
|
||||
title: "Feather RP2040 ThinkInk Download"
|
||||
name: "Feather RP2040 ThinkInk"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5727"
|
||||
board_image: "adafruit_feather_rp2040_thinkink.jpg"
|
||||
blinka: true
|
||||
date_added: 2023-05-02
|
||||
tags:
|
||||
- ThinkInk Feather
|
||||
- Feather ThinkInk
|
||||
features:
|
||||
- Feather-Compatible
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
Easy e-paper and RP2040 finally come to your Feather with this Adafruit RP2040 Feather Think Ink that's designed to make it a breeze to add almost any common e-Ink/e-Paper display. Chances are you've seen one of those new-fangled 'e-readers' like the Kindle or Nook. They have gigantic electronic paper 'static' displays - that means the image stays on the display even when power is completely disconnected. The image is also high contrast and very daylight readable. It really does look just like printed paper!
|
||||
|
||||
We've liked these displays for a long time, and we've got Arduino/CircuitPython drivers for tons of the various display chipsets, so wouldn't an e-paper RP2040 Feather make a ton of sense? Luckily for us, just about every small-medium size EInk display made these days has a standard 24-pin connection. This Feather will add all the power supply support circuitry and level shifting so you can attach your favorite display - we've tested it with up to 5.6" sized 7-color ACeP displays.
|
||||
|
||||
Since all ePaper displays with the 24-pin interface require you to buffer the layers of data and write them all out at once over SPI, the RP2040 chip is an excellent driver. It has 264K of internal SRAM so even with the largest displays, there's plenty of memory to store all the image data plus run your own code. We also put the display on it's own SPI port so that the Feather's main SPI port can be used for other peripheral devices.
|
||||
|
||||
Feather is the development board specification from Adafruit, and like its namesake, it is thin, light, and lets you fly! We designed Feather to be a new standard for portable microcontroller cores. We have other boards in the Feather family, check'em out here.
|
||||
|
||||
At the Feather's heart is an RP2040 chip, clocked at 133 MHz and at 3.3V logic, the same one used in the Raspberry Pi Pico. This chip has a whopping MB of onboard QSPI FLASH and 264K of RAM! There's even room left over for a STEMMA QT connector for plug-and-play of I2C devices.
|
||||
|
||||
To make it easy to use for portable projects, we added a connector for any of our 3.7V Lithium polymer batteries and built-in battery charging. You don't need a battery, it will run just fine straight from the USB Type C connector. But, if you do have a battery, you can take it on the go, then plug in the USB to recharge. The Feather will automatically switch over to USB power when it's available. While the RP2040 is not designed for low power usage - you can get down to about 1.5mA of power draw in sleep mode.
|
||||
|
||||
Here're some handy specs! You get:
|
||||
|
||||
* Measures 2.0" x 0.9" x 0.28" (50.8mm x 22.8mm x 7mm) without headers soldered in
|
||||
* Light as a (large?) feather - 6.3 grams
|
||||
* RP2040 32-bit Cortex M0+ dual core running at ~133 MHz @ 3.3V logic and power
|
||||
* 264 KB RAM
|
||||
* 8 MB SPI FLASH chip for storing files, images and CircuitPython/MicroPython code storage. No EEPROM
|
||||
* Tons of GPIO! 21 x GPIO pins with following capabilities:
|
||||
* Four 12-bit ADCs (one more than Pico)
|
||||
* Two I2C, Two SPI, and two UART peripherals, we label one for the 'main' interface in standard Feather locations
|
||||
* 16 x PWM outputs - for servos, LEDs, etc
|
||||
* Built-in 200mA+ lipoly charger with charging status indicator LED
|
||||
* Pin #13 red LED for general purpose blinking
|
||||
* RGB NeoPixel for full-color indication.
|
||||
* On-board STEMMA QT connector that lets you quickly connect any Qwiic, STEMMA QT or Grove I2C devices with no soldering!
|
||||
* Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)
|
||||
* USB Type C connector lets you access built-in ROM USB bootloader and serial port debugging
|
||||
* 3.3V regulator with 500mA peak current output and power enable pin
|
||||
* 4 mounting holes
|
||||
* 12 MHz crystal for perfect timing.
|
||||
* Support circuitry for common 24-pin e-Paper/e-Ink displays. These tend to be 1.54" to 7" diagonal and designed for 'smart labels'. No soldering required, simply plug in the display to the FPC connector on the end and load up your code. Not for use with the larger resolution displays on e-Readers like Kindles. Those use a different interface!
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5727)
|
||||
|
|
@ -1,81 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_itsybitsy_rp2040"
|
||||
title: "ItsyBitsy RP2040 Download"
|
||||
name: "ItsyBitsy RP2040"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/4888"
|
||||
board_image: "adafruit_itsybitsy_rp2040.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
|
||||
---
|
||||
|
||||
A new chip means a new ItsyBitsy, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the ItsyBitsy teensy-weensy Treatment" and so we did! This Itsy' features the RP2040, and all niceties you know and love about the [ItsyBitsy family](https://www.adafruit.com/category/1008).
|
||||
|
||||
What's smaller than a Feather but larger than a Trinket? It's an Adafruit ItsyBitsy RP2040 featuring the Raspberry Pi RP2040! Small, powerful, with a ultra fast duel Cortex M0+ processor running at 125 MHz - this microcontroller board is perfect when you want something very compact, with lots of horsepower and a bunch of pins. This Itsy has sports car speed, but SUV roominess with 4 MB of FLASH and 264 KB of SRAM.
|
||||
|
||||
ItsyBitsy RP2040 is only 1.4" long by 0.7" wide, but has 6 power pins, 23 digital GPIO pins (4 of which can be analog in and 16 x PWM out). It's the same chip as the [Feather RP2040](https://www.adafruit.com/products/4884) and [Raspberry Pi Pico](https://www.adafruit.com/products/4883) *but really really small*. So it's great once you've finished up a prototype, and want to make the project much smaller. It even comes with 4MB of SPI Flash built in, for data logging, file storage, or CircuitPython/MicroPython code
|
||||
|
||||
## Technical details
|
||||
|
||||
- Same size and form-factor as the rest of the [ItsyBitsy family](https://www.adafruit.com/category/1008) and nearly-identical pinout
|
||||
- Measures 1.4" x 0.7" x 0.2" (36 mm x 18 mm x 4 mm) without headers soldered in
|
||||
- RP2040 32-bit Cortex M0+ dual core running at ~125 MHz @ 3.3V logic and power
|
||||
- 264 KB RAM
|
||||
- **4 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
|
||||
- 23 GPIO pins with following capabilities:
|
||||
- 4 12-bit ADCs (one more than Pico)
|
||||
- 2 I2C, 2 SPI and 2 UART peripherals, we label one for the 'main' interface in standard ItsyBitsy locations
|
||||
- 16 PWM outputs - for servos, LEDs, etc
|
||||
- The 10 digital 'non-ADC/non-peripheral' GPIO are consecutive for maximum PIO compatibility
|
||||
- **Pin #13 red LED** for general purpose blinking
|
||||
- **RGB NeoPixel** with power pin on GPIO so you can depower it for low power usages.
|
||||
- **Both Reset button and Bootloader select button for quick restarts (no unplugging-replugging to relaunch code)**
|
||||
- 3.3 V regulator with 500mA peak current output
|
||||
- 3.3 V Power/enable pin
|
||||
- Power with either USB or external output (such as a battery) - it'll automatically switch over
|
||||
- Broken-out SWD pins for debug access
|
||||
- 24 MHz crystal for perfect timing.
|
||||
- Special **Vhigh** output pin gives you the higher voltage from VBAT or VUSB, for driving NeoPixels, servos, and other 5V-logic devices. **Digital 5** level-shifted output for high-voltage logic level output.
|
||||
- **USB Micro B connector** lets you access built-in ROM USB bootloader and serial port debugging
|
||||
|
||||
**Inside the RP2040 is a 'permanent ROM' USB UF2 bootloader**. What that means is when you want to program new firmware, you can hold down the BOOTSEL button while plugging it into USB (or pulling down the RUN/Reset pin to ground) and it will appear as a USB disk drive you can drag the firmware onto. Folks who have been using Adafruit products will find this very familiar - we use the technique on all our native-USB boards. Just note you don't double-click reset, instead hold down BOOTSEL during boot to enter the bootloader!
|
||||
|
||||
The RP2040 is a powerful chip, which has the clock speed of our M4 (SAMD51), and two cores that are equivalent to our M0 (SAMD21). Since it is an M0 chip, it does not have a floating point unit or DSP hardware support - so if you're doing something with heavy floating point math, it will be done in software and thus not as fast as an M4. For many other computational tasks, you'll get close-to-M4 speeds!
|
||||
|
||||
For peripherals, there are two I2C controllers, two SPI controllers, and two UARTs that are multiplexed across the GPIO - check the pinout for what pins can be set to which. There are 16 PWM channels, each pin has a channel it can be set to (ditto on the pinout).
|
||||
|
||||
You'll note there's no I2S peripheral, or SDIO, or camera, what's up with that? Well instead of having specific hardware support for serial-data-like peripherals like these, the RP2040 comes with the PIO state machine system which is a unique and powerful way to create *custom hardware logic and data processing blocks* that run on their own without taking up a CPU. For example, NeoPixels - often we bitbang the timing-specific protocol for these LEDs. For the RP2040, we instead use PIO object that reads in the data buffer and clocks out the right bitstream with perfect accuracy. [Same with I2S audio in or out, LED matrix displays, 8-bit or SPI based TFTs, even VGA](https://github.com/raspberrypi/pico-examples/tree/master/pio)! In MicroPython and CircuitPython you can create PIO control commands to script the peripheral and load it in at runtime. There are 2 PIO peripherals with 4 state machines each.
|
||||
|
||||
**At the time of launch, there is no Arduino core support for this board. There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/micropython), and a [CircuitPython port](https://circuitpython.org/downloads)!** We of course [recommend CircuitPython because we think it's the easiest way to get started](https://learn.adafruit.com/welcome-to-circuitpython) and it has support with most of our drivers, displays, sensors, and more, supported out of the box so you can follow along with our CircuitPython projects and tutorials.
|
||||
|
||||
This Itsy comes with loose 0.1" headers you can solder in for breadboard use!
|
||||
|
||||
While the RP2040 has lots of onboard RAM (264KB), it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. On this board there is 2MB, which is shared between the program it's running and any file storage used by MicroPython or CircuitPython. When using C/C++ you get the whole flash memory, if using Python you will have about 1 MB remaining for code, files, images, fonts, etc.
|
||||
|
||||
**RP2040 Chip features:**
|
||||
|
||||
- Dual ARM Cortex-M0+ @ 133MHz
|
||||
- 264kB on-chip SRAM in six independent banks
|
||||
- Support for up to 16MB of off-chip Flash memory via dedicated QSPI bus
|
||||
- DMA controller
|
||||
- Fully-connected AHB crossbar
|
||||
- Interpolator and integer divider peripherals
|
||||
- On-chip programmable LDO to generate core voltage
|
||||
- 2 on-chip PLLs to generate USB and core clocks
|
||||
- 30 GPIO pins, 4 of which can be used as analog inputs
|
||||
- Peripherals
|
||||
- 2 UARTs
|
||||
- 2 SPI controllers
|
||||
- 2 I2C controllers
|
||||
- 16 PWM channels
|
||||
- USB 1.1 controller and PHY, with host and device support
|
||||
- 8 PIO state machines
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/4888)
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_kb2040"
|
||||
title: "Adafruit KB2040 Download"
|
||||
name: "Adafruit KB2040"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5302"
|
||||
board_image: "adafruit_kb2040.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
|
||||
blinka: true
|
||||
date_added: 2023-09-06
|
||||
features:
|
||||
- STEMMA QT/QWIIC
|
||||
|
||||
---
|
||||
|
||||
A wild Kee Boar appears! It’s a shiny **KB2040**! An Arduino Pro Micro-shaped board for Keebs with RP2040. (#keeblife 4 evah) A lot of folks like using Adafruit parts for their Keeb builds – but with the ItsyBitsy not being pin-compatible with the Pro Micro pinout, it really wasn't very easy without some sort of adapter plate.
|
||||
|
||||
Now we’re seeing lots of people use CircuitPython for keebs, which is awesome! So why not try our hands at spinning up a pro-micro-compatible RP2040 board? The RP2040 is plenty powerful, low-cost, and makes for an excellent keeb driver chip.
|
||||
|
||||
We mixed together what we liked most about the SparkFun Pro Micro RP2040 (**Qwiic / STEMMA QT I2C port on the end**, so good!) and Elite-C (**castellated pads & pins for D+ and D-**) and our existing RP2040 boards (**boot button can be used for user, 8MB QSPI flash, onboard NeoPixel, jumper for skipping the diode/fuse for high power RGB LEDs or USB hosting**). We even got it to all fit on a 2-layer PCB with 7/7 routing – just needed to make the smallest caps and resistors 0402.
|
||||
|
||||
With 20 GPIO available (18 on castellated pins, 2 on STEMMA QT port) you can easily make up to 100-keys matrices, or common 65% 5x15 layouts. [Use a plug-and-play QT cable to connect to the last two pins](https://www.adafruit.com/product/4209) without having to do any desoldering/rework.
|
||||
|
||||
## Technical details
|
||||
|
||||
- [Same size and form-factor as a Pro Micro breakout](https://www.sparkfun.com/products/12640) and nearly-identical pinout (this board has fewer analog pins, for example)
|
||||
- Measures 1.3" x 0.7" without headers soldered in
|
||||
- RP2040 32-bit Cortex M0+ dual core running at ~125 MHz @ 3.3 V logic and power. 264 KB RAM, No EEPROM. 12 MHz crystal for perfect timing.
|
||||
- **8 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage.
|
||||
- 20 GPIO pins with following capabilities:
|
||||
- 18 GPIO on castellated/pin breakout pads. 2 GPIO on QT port that can be easily accessed for 5x15 keyboard layouts.
|
||||
- 4 12 bit ADCs
|
||||
- 2 I2C, 2 SPI and 2 UART peripherals, we label one of for the 'main' interface in standard Pro Micro locations
|
||||
- 16 PWM outputs - for servos, LEDs, etc
|
||||
- The 10 digital non-ADC GPIO are consecutive for maximum PIO compatibility
|
||||
- **RGB NeoPixel** for colorful status indiction
|
||||
- Classic **green power LED**
|
||||
- Both Reset button and Bootloader select button for quick restarts. Bootloader button is also available as a generic GPIO input button.
|
||||
- [STEMMA QT connector](https://learn.adafruit.com/introducing-adafruit-stemma-qt/what-is-stemma-qt) on the end is compatible with the [SparkFun Qwiic](https://www.sparkfun.com/qwiic) I2C connector, and can be used to plug and play I2C devices, or just as 2 extra GPIO pins.
|
||||
- 3.3 V regulator with 500 mA peak current output
|
||||
- **RAW** output, for powering NeoPixels or other 5 V devices. Jumper on bottom lets you skip over the 500 mA fuse, for up to 2 A from USB ports.
|
||||
- **USB-C connector** lets you access built-in ROM USB bootloader and serial port debugging
|
||||
- **Extra D- and D+ breakouts** for alternative USB connection options.
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5302)
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_macropad_rp2040"
|
||||
title: "MacroPad RP2040 Download"
|
||||
name: "MacroPad RP2040"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5128"
|
||||
board_image: "adafruit_macropad_rp2040.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
Strap yourself in, we're launching in T-minus 10 seconds...Destination? A new Class M planet called MACROPAD! M here, stands for Microcontroller because this 3x4 keyboard controller features the newest technology from the Raspberry Pi sector: say hello to the RP2040. It's speedy little microcontroller with lots of GPIO pins and a 64 times more RAM than the Apollo Guidance Computer. We added 8 MB of flash memory for plenty of storage.
|
||||
|
||||
Get ready to upgrade your desk's mission control station with a CircuitPython or Arduino powered Macropad - complete with 12 buttons, OLED display, speaker and rotary encoder. Customize it for your spacecraft to help guide you through the great reaches of the unknown. (Or just have it type out your favorite emojis.)
|
||||
|
||||
Each of the 12 sockets can accept a Cherry MX-compatible key switch. No soldering required, just snap it in! Use any key switch you like - but we recommend ones with slots that will allow the matching twelve NeoPixels underneath to shine through.
|
||||
|
||||
This space-ship is also fitted with a 128x64 monochome OLED for a crisp heads-up display that can be used in Arduino or CircuitPython to display keymaps, stats, computer performance, etc. There's also a rotary encoder with push-button soldered in. Twist and turn it or push to change volume or monitor brightness or scroll: whatever you like! A tiny speaker can give audio feedback or play fun bleepy tunes.
|
||||
|
||||
Want to add more hardware? No worries - [a STEMMA QT port on the side lets you connect any I2C add-on peripherals from the massive STEMMA QT / Qwiic family of plug in boards](https://www.adafruit.com/category/1018).
|
||||
|
||||
**Please note, the RP2040 chip does not currently have QMK support** - this macropad is designed to be programmed in Arduino or CircuitPython! If QMK eventually does add RP2040 as a supported chipset (no ETA and no plans that we know of), we'll update this page.
|
||||
|
||||
## Technical details
|
||||
|
||||
- **Raspberry Pi RP2040 Chip + 8MB Flash memory** - Dual core Cortex M0+ at ~130MHz with 264KB or RAM. Runs CircuitPython, Arduino or MicroPython with ease and lots of space for development code and files
|
||||
- **USB C Connector for Power/Data** - of course this can act as an HID device but also can be MIDI, UART, etc.
|
||||
- **3x4 Mechanical key switch sockets** - accepts any Cherry MX-compatible switches. Individually tied to GPIO pins (not matrix wired)
|
||||
- **One NeoPixel RGB LED per switch**, on north side
|
||||
- **Rotary encoder**, 20 detents per rotation, with push-switch on GPIO pin. Push switch is also used for entering bootloader mode when held down on power-up or reset.
|
||||
- **128x64 SH1106 Monochrome OLED display** - On high speed hardware SPI port for quick updates
|
||||
- **8mm Speaker/Buzzer** - With Class D amplifier and RC filter, can be used to make simple beeps and sounds effects.
|
||||
- **STEMMA QT Connector** - Allows adding any I2C sensors/displays/devices with plug-and-play cables.
|
||||
- **Reset button -** On the side, for quick restarting of code
|
||||
- **Four M3 mounting bosses** - Make custom enclosures easily
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5128)
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_qt2040_trinkey"
|
||||
title: "Trinkey QT2040 Download"
|
||||
name: "Trinkey QT2040"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/5056"
|
||||
board_image: "adafruit_qt2040_trinkey.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
- STEMMA QT/QWIIC
|
||||
|
||||
---
|
||||
|
||||
It's half USB Key, half Adafruit QT Py, and a lotta RP2040*...*it's **Trinkey QT2040**, the circuit board with an RP2040 heart and Stemma QT legs. Folks are loving the [QT Py 2040](https://www.adafruit.com/product/4900) we made, but maybe you want something plug-and-play. So we thought, hey what if we made something like that plugs right into your computer's USB port? And this is what we came up with!
|
||||
|
||||
The PCB is designed to slip into any USB A port on a computer or laptop. There's an RP2040 microcontroller on board with just enough circuitry to keep it happy. There's an RGB NeoPixel, a reset and bootloader or user button and a STEMMA QT Port on the end. That's it!
|
||||
|
||||
With the body of the board being 1.0" x 0.7" and four mounting holes, you can attach just about any of our QT boards right on (some are a little larger so just check that has the holes in the same locations). [Use M2.5 sized standoffs and screws](https://www.adafruit.com/product/3658) to do so, you could use 2 diagonal at a minimum. Then use a [shorty QT cable](https://www.adafruit.com/product/4399) and you've got a custom sensor Trinkey for any sensor purpose.
|
||||
|
||||
The board comes with 8 MB of QSPI flash memory so you can put *all* of our CircuitPython drivers on the disk!
|
||||
|
||||
## Technical details
|
||||
|
||||
* Main body is same size/mounting holes as most of our Stemma QT boards (1.0" x 0.7" with M2.5 holes)
|
||||
* USB Type A connector with extra-thick PCB to fit into a USB host port
|
||||
* RP2040 32-bit Cortex M0+ dual-core running at ~125 MHz @ 3.3 V logic and power
|
||||
* 264 KB RAM
|
||||
* 8 MB SPI FLASH chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
|
||||
* Native USB supported by every OS - can be used as USB serial console, MIDI, Keyboard/Mouse HID, even a little disk drive for storing Python scripts.
|
||||
* Built-in RGB NeoPixel LED
|
||||
* STEMMA QT/Qwiic port for I2C connectivity
|
||||
* 3.3 V regulator with 600 mA peak output
|
||||
* 12 MHz crystal
|
||||
* Both Reset button and Bootloader select buttons for quick restarts (no unplugging-replugging to relaunch code)
|
||||
* Bootloader button can also be safely used in 'user' code
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/5056)
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "adafruit_qtpy_rp2040"
|
||||
title: "QT Py RP2040 Download"
|
||||
name: "QT Py RP2040"
|
||||
manufacturer: "Adafruit"
|
||||
board_url:
|
||||
- "https://www.adafruit.com/product/4900"
|
||||
board_image: "adafruit_qtpy_rp2040.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libraries-on-any-computer-with-raspberry-pi-pico"
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
What a cutie pie! Or is it... a QT Py? This diminutive dev board comes with one of our new favorite chip, the RP2040. It's been made famous in the new [Raspberry Pi Pico](https://www.adafruit.com/pico) *and* our [Feather RP2040](http://www.adafruit.com/product/4884) and [ItsyBitsy RP2040](http://www.adafruit.com/product/4888), but what if we wanted something really *smol?*
|
||||
|
||||
A new chip means a new QT Py, and the Raspberry Pi RP2040 is no exception. When we saw this chip we thought "this chip is going to be awesome when we give it the cuuutie QT Py Treatment", and so we did! This QT Py features the RP2040, [and all niceties you know and love about the original QT Py](https://www.adafruit.com/category/4600)
|
||||
|
||||
The star of the QT Py is [our favorite connector - the STEMMA QT](http://adafruit.com/stemma), a chainable I2C port that can be used with [any of our STEMMA QT sensors and accessories](https://www.adafruit.com/category/620). Having this connector means you don't need to do any soldering to get started.
|
||||
|
||||
What can you pop into the QT port? How about [OLEDs](https://www.adafruit.com/?q=qt+oled&main_page=category&cPath=1005&sort=BestMatch)! [Inertial Measurment Units](https://www.adafruit.com/?q=qt+imu&main_page=category&cPath=1005&sort=BestMatch)! [Sensors a-plenty](https://www.adafruit.com/?q=qt+sensor&main_page=category&cPath=1005&sort=BestMatch). All plug-and-play thanks to the innovative chainable design: [SparkFun Qwiic](https://www.sparkfun.com/qwiic)-compatible [STEMMA QT](https://learn.adafruit.com/introducing-adafruit-stemma-qt) connectors for the I2C bus so you don't even need to solder. Just plug in a compatible cable and attach it to your MCU of choice, and you’re ready to load up some software and measure some light.
|
||||
|
||||
Use any [SparkFun Qwiic](http://www.sparkfun.com/qwiic) boards! [Seeed Grove I2C boards](https://www.adafruit.com/product/4528) will also work with this adapter cable.
|
||||
|
||||
**At the time of launch, there is no Arduino core support for the chip on this board. There is great [C/C++ support](https://github.com/raspberrypi/pico-sdk), an official [MicroPython port](https://github.com/raspberrypi/micropython), and a [CircuitPython port](https://circuitpython.org/downloads)!** We of course [recommend CircuitPython because we think it's the easiest way to get started](https://learn.adafruit.com/welcome-to-circuitpython) and it has support with most of our drivers, displays, sensors, and more, supported out of the box so you can follow along with our CircuitPython projects and tutorials.
|
||||
|
||||
Pinout and shape is [Seeed Xiao](https://wiki.seeedstudio.com/Seeeduino-XIAO/) compatible, with castellated pads so you can solder it to a PCB with a cut out to allow the bottom components some breathing room. In addition to the QT connector, we also added an **RGB NeoPixel** (with a controllable power pin to allow for ultra-low-power usage), **and both boot-mode and reset buttons** (great for restarting your program or entering the bootloader). This QT Py comes with loose 0.1" headers you can solder in for breadboard use.
|
||||
|
||||
While the RP2040 has lots of onboard RAM (264 KB), it does not have built-in FLASH memory. Instead, that is provided by the external QSPI flash chip. On this board there is 4MB, which is shared between the program it's running and any file storage used by MicroPython or CircuitPython. When using C/C++ you get the whole flash memory, if using Python you will have about 3 MB remaining for code, files, images, fonts, etc.
|
||||
|
||||
- Same size, form-factor, and pin-out as [our SAMD-based QT Py](https://www.adafruit.com/product/4600)
|
||||
- **USB-C connector** - [If you have only Micro B cables, this adapter will come in handy](https://www.adafruit.com/product/4299)!
|
||||
- **RP2040 32-bit Cortex M0+** dual-core running at ~125 MHz @ 3.3 V logic and power
|
||||
- 264 KB RAM
|
||||
- **8 MB SPI FLASH** chip for storing files and CircuitPython/MicroPython code storage. No EEPROM
|
||||
- Native USB supported by every OS - can be used in Arduino or CircuitPython as USB serial console, MIDI, Keyboard/Mouse HID, even a little disk drive for storing Python scripts.
|
||||
- Can be used with **Arduino IDE** or **CircuitPython**
|
||||
- **Built-in RGB NeoPixel LED**
|
||||
- 13 GPIO pins (11 breakout pads and two QT pads):
|
||||
- **Four** 12 bit ADCs (one more than Pico)
|
||||
- Two I2C ports (one on the QT connector, one on the breakout pads)
|
||||
- SPI and UART peripherals, in standard QT Py locations,
|
||||
- PWM outputs on every IO pin - for servos, LEDs, etc
|
||||
- There are 6 GPIO in consecutive order for PIO compatibility
|
||||
- 3.3 V regulator with [**600 mA peak output**](https://www.diodes.com/assets/Datasheets/AP2112.pdf)
|
||||
- **Both Reset button and Bootloader select buttons** for quick restarts (no unplugging-replugging to relaunch code)
|
||||
- **Really really small**
|
||||
|
||||
**Inside the RP2040 is a 'permanent ROM' USB UF2 bootloader**. What that means is when you want to program new firmware, you can hold down the BOOT button while plugging it into USB (or pulling down the RUN/Reset pin to ground) and it will appear as a USB disk drive you can drag the firmware onto. Folks who have been using Adafruit products will find this very familiar - we use the technique on all our native-USB boards. Just note you don't double-click reset, instead hold down BOOTSEL during boot to enter the bootloader!
|
||||
|
||||
The RP2040 is a powerful chip, which has the clock speed of our M4 (SAMD51), and two cores that are equivalent to our M0 (SAMD21). Since it is an M0 chip, it does not have a floating point unit or DSP hardware support - so if you're doing something with heavy floating point math, it will be done in software and thus not as fast as an M4. For many other computational tasks, you'll get close-to-M4 speeds!
|
||||
|
||||
For peripherals, there are two I2C controllers, two SPI controllers, and two UARTs that are multiplexed across the GPIO - check the pinout for what pins can be set to which. There are 16 PWM channels, each pin has a channel it can be set to (ditto on the pinout).
|
||||
|
||||
You'll note there's no I2S peripheral, or SDIO, or camera, what's up with that? Well, instead of having specific hardware support for serial-data-like peripherals like these, the RP2040 comes with the PIO state machine system which is a unique and powerful way to create *custom hardware logic and data processing blocks* that run on their own without taking up a CPU. For example, NeoPixels - often we bitbang the timing-specific protocol for these LEDs. For the RP2040, we instead use PIO object that reads in the data buffer and clocks out the right bitstream with perfect accuracy. [Same with I2S audio in or out, LED matrix displays, 8-bit or SPI based TFTs, even VGA](https://github.com/raspberrypi/pico-examples/tree/master/pio)! In MicroPython and CircuitPython you can create PIO control commands to script the peripheral and load it in at runtime. There are 2 PIO peripherals with 4 state machines each.
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Adafruit](https://www.adafruit.com/product/4900)
|
||||
|
|
@ -1,39 +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-05-15
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
Gateways can be as varied as the devices they help connect, with each gateway needing different protocols, connection methodologies and energy requirements to bring together the myriad of distributed parts that make up the IoT whole. Gateways serve critical functions such as data filtering and security and up to application code. Whether an app on a mobile device, a demo board, or even a connected sensor, gateways are critical to the functioning of the IoT—and Avnet’s 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)
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "banana_pi_bpi_m2_plus"
|
||||
title: "Banana Pi BPI-M2+ Download"
|
||||
name: "Banana Pi BPI-M2+"
|
||||
manufacturer: "SinoVoip"
|
||||
board_url:
|
||||
- "https://wiki.banana-pi.org/Banana_Pi_BPI-M2%2B"
|
||||
board_image: "banana_pi_bpi_m2_plus.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-10-17
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Ethernet
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
Banana PI BPI-M2+ is the open source hardware platform, use Alliwnner H3 (option H2+ chip and H5 chip ) chip on board. and mini size only 65mm*65mm,
|
||||
|
||||
PBI-M2 hardware: 1Ghz ARM7 quad-core processor, 1GB DDR3 SDRAM, 8G eMMC flash on board,and SDIO wifi&BT 4.0 moodule on board.Gigabit ethrnet.
|
||||
|
||||
BPI-M2+ series run Android,Debian linux,Ubuntu linux, Raspberry Pi image and others image. Banana PI,it can easily run with the game it support 1080P high definition video output and 4K support, the GPIO compatible with Raspberry Pi B+ .
|
||||
|
||||
Banana Pi BPI-M2+ not support sata port, so you need use USB for hardisk
|
||||
|
||||
- Allwinner H3 Quad-core 1.2GHz Cortex-A7 (option H2+ H5).
|
||||
- 1GB DDR3
|
||||
- 8GB eMMC onboard
|
||||
- HDMI out
|
||||
- WiFi and BlueTooth onboard
|
||||
- 10/100/1000Mbps Ethernet Port
|
||||
- CSI camera interface
|
||||
|
||||
## Purchase
|
||||
* [Aliexpress](https://www.aliexpress.us/item/2252799815676798.html)
|
||||
* [Amazon](https://amzn.to/3CFghTl)
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "banana_pi_bpi_m2_zero"
|
||||
title: "Banana Pi BPI-M2 Zero Download"
|
||||
name: "Banana Pi BPI-M2 Zero"
|
||||
manufacturer: "SinoVoip"
|
||||
board_url:
|
||||
- "https://wiki.banana-pi.org/Banana_Pi_BPI-M2_ZERO"
|
||||
board_image: "banana_pi_m2_zero.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2020-10-31
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
The Banana Pi M2 Zero is an ultra compact single board computer which measures only 60mm*30mm. Its external interfaces are the same as the Raspberry Pi Zero W, and it will fit almost all cases and accessories for the Zero W. It uses the quad-core Cortex A7 Allwinner H2+ processor, with 512MB RAM. It's ideal for light-weight systems and space-limited applications. Like other members of the Banana Pi family, it supports both Linux and Android operating systems.
|
||||
|
||||
- H2+ Quad-core Cortex-A7
|
||||
- Mali 400 MP2
|
||||
- 512M DDR3
|
||||
- MicroSD slot
|
||||
- Wi-Fi 802.11 b/g/n
|
||||
- Bluetooth 4.0
|
||||
- Mini HDMI
|
||||
- 1 x USB 2.0 OTG
|
||||
- GPIO (x28)
|
||||
- Power (+5V, +3.3V and GND)
|
||||
- UART, I2C, SPI or PWM
|
||||
- 65mm × 30mm, 15g
|
||||
- Android and Linux
|
||||
|
||||
## Purchase
|
||||
* [Aliexpress](https://www.aliexpress.com/item/33038926185.html)
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "banana_pi_bpi_m5"
|
||||
title: "Banana Pi BPI-M5 Download"
|
||||
name: "Banana Pi BPI-M5"
|
||||
manufacturer: "SinoVoip"
|
||||
board_url:
|
||||
- "https://www.banana-pi.org/en/banana-pi-sbcs/55.html"
|
||||
board_image: "banana_pi_bpi_m5.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-07-22
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- USB 3.0
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
Banana Pi BPI-M5 is the next generation single board computer from Banana Pi in 2020. It is powered by Amlogic S905X3 quad-core Cortex-A55 (2.0 XXGHz) processor.Onboard 4GB LPDDR4 memory and 16GB EMMC storage, and supports 4 USB 3.0 interface, a gigabit network port.
|
||||
|
||||
- CPU: Amlogic S905X3 Quad-Core Cortex-A55 (2.0xxGHz)
|
||||
- GPU: Mali-G31 MP2 GPU with 4 x Execution Engines (650Mhz)
|
||||
- Memory : 4 GB LPDDR4
|
||||
- Storage : MicroSD slot with support for up to 256GB expansion and 16G eMMC flash with support for up to 64GB
|
||||
- Network : 10/100/1000 Mbit/s Ethernet ,Optional WiFi USB dongle
|
||||
- Video Output(s): 1 x HDMI 2.1 (up to 4K@60Hz with HDR, CEC, EDID)
|
||||
- Audio Output(s): 3.5mm jack and 1 x HDMI digital output
|
||||
- USB ports: USB 3.0 PORT (x4)
|
||||
- GPIO: 40 Pin Header : GPIO (x28) and Power (+5V, +3.3V and GND). GPIO pins can be used for UART, I2C, SPI or PWM
|
||||
- Switches: Reset, Power and U-boot
|
||||
- LED: Power Status and Activity status
|
||||
- Power Source: 5 volt @3A via Micro USB (TYPE C)
|
||||
- Size & Weight : 92x60mm, 48g
|
||||
- OS : Android and Linux
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/3CpbK8X)
|
||||
* [Aliexpress](https://www.aliexpress.com/item/3256801685527943.html)
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone"
|
||||
title: "BeagleBone Download"
|
||||
name: "BeagleBone"
|
||||
manufacturer: "BeagleBoard"
|
||||
board_url:
|
||||
- "https://beagleboard.org/bone-original"
|
||||
board_image: "beaglebone.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-04-06
|
||||
features:
|
||||
- Ethernet
|
||||
---
|
||||
|
||||
BeagleBone is an $89 MSRP, credit-card-sized Linux computer that connects to the Internet and runs software such as Android 4.0 and Ubuntu. With plenty of I/O and processing power for real-time analysis provided by an AM335x 720MHz ARM® processor, BeagleBone can be complemented with cape plug-in boards to augment functionality.
|
||||
|
||||
- 256MB DDR2 RAM
|
||||
- 3D graphics accelerator
|
||||
- ARM Cortex-M3 for power management
|
||||
- 2x PRU 32-bit RISC CPUs
|
||||
- USB client: power, debug and device
|
||||
- USB host
|
||||
- Ethernet
|
||||
- 2x 46 pin headers
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone_ai"
|
||||
title: "BeagleBone AI Download"
|
||||
name: "BeagleBone AI"
|
||||
manufacturer: "BeagleBoard"
|
||||
board_url:
|
||||
- "https://beagleboard.org/ai"
|
||||
board_image: "beaglebone_ai.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-01-20
|
||||
features:
|
||||
- Ethernet
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
Built on the proven BeagleBoard.org® open source Linux approach, BeagleBone® AI fills the gap between small SBCs and more powerful industrial computers. Based on the Texas Instruments AM5729, developers have access to the powerful SoC with the ease of BeagleBone® Black header and mechanical compatibility. BeagleBone® AI makes it easy to explore how artificial intelligence (AI) can be used in everyday life via the TI C66x digital-signal-processor (DSP) cores and embedded-vision-engine (EVE) cores supported through an optimized TIDL machine learning OpenCL API with pre-installed tools. Focused on everyday automation in industrial, commercial and home applications.
|
||||
|
||||
- Processor: Sitara AM5729
|
||||
- Dual Arm® Cortex®-A15 microprocessor subsystem
|
||||
- 2 C66x floating-point VLIW DSPs
|
||||
- 2.5MB of on-chip L3 RAM
|
||||
- 2x dual Arm® Cortex®-M4 co-processors
|
||||
- 4x Embedded Vision Engines (EVEs)
|
||||
- 2x dual-core Programmable Real-Time Unit and Industrial Communication SubSystem (PRU-ICSS)
|
||||
- 2D-graphics accelerator (BB2D) subsystem
|
||||
- Dual-core PowerVR® SGX544™ 3D GPU
|
||||
- IVA-HD subsystem (4K @ 15fps encode and decode support for H.264, 1080p60 for others)
|
||||
- BeagleBone Black mechanical and header compatibility
|
||||
- 1GB RAM and 16GB on-board eMMC flash with high-speed interface
|
||||
- USB type-C for power and superspeed dual-role controller; and USB type-A host
|
||||
- Gigabit Ethernet, 2.4/5GHz WiFi, and Bluetooth
|
||||
- microHDMI
|
||||
- Zero-download out-of-box software experience with Debian GNU/Linux
|
||||
|
||||
## Purchase
|
||||
* [DigiKey](https://www.digikey.com/en/products/detail/beagleboard-org/BBONE-AI/10671097)
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone_black"
|
||||
title: "BeagleBone Black Download"
|
||||
name: "BeagleBone Black"
|
||||
manufacturer: "BeagleBoard"
|
||||
board_url:
|
||||
- "https://beagleboard.org/black"
|
||||
board_image: "beaglebone_black.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2019-12-03
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
If you liked the BeagleBone Black Rev B, you will love the Rev C! The Rev C has a blistering 1GHz AM3358 processor and 512MB onboard DDR3 RAM, two 46-pin headers, micro HDMI for audio/video output, USB ports, 10/100 Ethernet and other I/O features. The Rev C is an ultra-powered embedded computer that can fit in a mint tin.
|
||||
|
||||
This model includes 4GB of eMMC built-in storage instead of the Rev B's 2GB. With the doubled storage and faster eMMC, the developers were able to make the Rev C's most significant change: shipping the BeagleBone Black with Debian Linux pre-loaded on the board's flash instead of Angstrom Linux. Debian Linux is a more user-friendly operating system than Angstrom and the switch to Debian is partly the result of consumer demand (especially from Adafruit users, thanks!)
|
||||
|
||||
Of course the BeagleBone Black Rev C is an open board so if you want to load it back up with Angstrom or other Linux-based distributions like Ubuntu or Android, you can.
|
||||
|
||||
The rev C comes with a mini-B cable for powering it up ASAP. No microSD card is included as the BBB has onboard flash storage - and no SD card loading is required to get started. Please note the PCB may say rev B, that's normal! The rev C has more memory which did not affect the PCB revision code.
|
||||
|
||||
- Processor: Sitara AM3358BZCZ100 1GHz, 2000 MIPS
|
||||
- Graphics Engine: SGX530 3D, 20M Polygons/S
|
||||
- SDRAM Memory: 512MB DDR3L 606MHZ
|
||||
- Onboard Flash: 4GB, 8bit Embedded MMC
|
||||
- PMIC: TPS65217C PMIC regulator and one additional LDO.
|
||||
- Debug Support: Optional Onboard 20-pin CTI JTAG, Serial Header
|
||||
- Power Source: miniUSB USB or DC Jack, 5VDC External Via Expansion Header
|
||||
- PCB: 86.44mm x 54.54mm / 3.4” x 2.15” 6 layers
|
||||
- 88.98mm x 54.54mm x 15.41mm / 3.5" x 2.15" x 0.6"
|
||||
- Indicators 1-Power, 2-Ethernet, 4-User Controllable LEDs
|
||||
- HiSpeed USB 2.0 Client Port: Access to USB0, Client mode via miniUSB
|
||||
- HiSpeed USB 2.0 Host Port Access to USB1, Type A Socket, 500mA LS/FS/HS
|
||||
- Serial Port UART0 access via 6 pin 3.3V TTL Header. Header is populated
|
||||
- Ethernet 10/100, RJ45
|
||||
- SD/MMC Connector microSD , 3.3V
|
||||
- User Input: Reset Button, Boot Button, Power Button
|
||||
- Video Out: 16b HDMI, 1280x1024 (MAX), 1024x768,1280x720,1440x900 w/EDID Support
|
||||
- Audio Via HDMI Interface, Stereo
|
||||
- Expansion Connectors:
|
||||
- Power 5V, 3.3V , VDD_ADC(1.8V)
|
||||
- 3.3V I/O on all signals
|
||||
- McASP0, SPI1, I2C, GPIO(65), LCD, GPMC, MMC1, MMC2, 7 AIN(1.8V MAX), 4 Timers, 3 Serial Ports, CAN0, EHRPWM(0,2),XDMA Interrupt, Power button, Expansion Board ID (Up to 4 can be stacked)
|
||||
- Weight 40.55g / 1.43oz
|
||||
|
||||
## Purchase
|
||||
* [Adafruit](https://www.adafruit.com/product/1996)
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone_black_industrial"
|
||||
title: "BeagleBone Black Industrial Download"
|
||||
name: "BeagleBone Black Industrial"
|
||||
manufacturer: "Element14"
|
||||
board_url:
|
||||
- "https://beagleboard.org/e14-bbbi"
|
||||
board_image: "beaglebone_black_industrial.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2019-12-03
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
The element14 BeagleBone Black Industrial (BBONE-BLACK-IND-4G) is a low cost, high-expansion focused BeagleBoard using a low cost industrial temperature grade Sitara™ AM3358 ARM® Cortex™-A8 processor from Texas Instruments. BBONE-BLACK-IND-4G ships with the Debian Linux distribution preinstalled on the onboard FLASH, ready to start evaluation and development.
|
||||
|
||||
- Processor: TI Sitara AM3358BZCZA100, 1GHz, 2000 MIPS 1 GHz ARM®Cortex™-A8
|
||||
- SGX530 Graphics Engine
|
||||
- Programmable Real-Time Unit Subsystem
|
||||
- Operating temperature can span from -40C to +85C
|
||||
- Memory SDRAM: 512MB DDR3L 800MHZ
|
||||
- Onboard Flash: 4GB, 8bit Embedded MMC (eMMC)
|
||||
- SD/MMC Connector for microSD
|
||||
- Power management:TPS65217C PMIC is used along with a separate LDO to provide power to the system
|
||||
- Debug Support: Optional Onboard 20-pin CTI JTAG, Serial Header
|
||||
- Power Source miniUSB USB or DC Jack
|
||||
- 5VDC External Via Expansion Header
|
||||
- Connectivity High speed USB 2.0 Client port: Access to USB0, Client mode via miniUSB
|
||||
- User Input / Output Reset Button
|
||||
- Video/Audio Interfaces HDMI D type interface
|
||||
- Expansion Interfaces LCD, UART, eMMC
|
||||
|
||||
## Purchase
|
||||
* [Newark](https://www.newark.com/element14/bbone-black-ind-4g/beaglebone-black-industrial/dp/76Y2810)
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone_black_wireless"
|
||||
title: "BeagleBone Black Wireless Download"
|
||||
name: "BeagleBone Black Wireless"
|
||||
manufacturer: "BeagleBoard"
|
||||
board_url:
|
||||
- "https://beagleboard.org/black-wireless"
|
||||
board_image: "beaglebone_black_wireless.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2020-03-25
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
Replacing the 10/100 Ethernet port with onboard 802.11 b/g/n 2.4GHz WiFi and Bluetooth, the popular open source BeagleBone® Black computer now comes with built-in wireless networking capability. Leveraging a partnership with Octavo Systems and designed in CadSoft Eagle, BeagleBone® Black Wireless is the easiest to use and modify credit-card sized IoT Linux computer available.
|
||||
|
||||
- Processor: Octavo Systems OSD3358 1GHz ARM Cortex-A8
|
||||
- 512MB DDR3 RAM
|
||||
- 4GB 8-bit eMMC on-board flash storage
|
||||
- 3D graphics accelerator
|
||||
- NEON floating-point accelerator
|
||||
- 2x PRU 32-bit microcontrollers
|
||||
- USB client for power & communications
|
||||
- USB host
|
||||
- 802.11b/g/n and Bluetooth 4.1 plus BLE
|
||||
- HDMI
|
||||
- 2x 46 pin headers
|
||||
|
||||
## Purchase
|
||||
* [Digi-Key](https://www.digikey.com/products/en?lang=en&site=us&KeyWords=BBBWL-SC-562-ND)
|
||||
* [Arrow](https://www.arrow.com/en/products/bbwireless/beagleboardorg)
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone_blue"
|
||||
title: "BeagleBone Blue Download"
|
||||
name: "BeagleBone Blue"
|
||||
manufacturer: "BeagleBoard"
|
||||
board_url:
|
||||
- "https://beagleboard.org/blue"
|
||||
board_image: "beaglebone_blue.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-05-04
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
BeagleBone® Blue is an all-in-one Linux-based computer for robotics, integrating onto a single small (3.5" x 2.15") board the Octavo OSD3358 microprocessor together with wifi/bluetooth, IMU/barometer, power regulation and state-of-charge LEDs for a 2-cell LiPo, H-Bridges, and discrete connectors for 4 DC motors+encoders, 8 servos, and all of the commonly-needed buses for additional peripherals in embedded applications. Fully open source and actively supported by a strong community, the real-time performance, flexible networking, and rich set of robotics-oriented capabilities make building mobile robots with the Blue fast, streamlined, affordable, and fun.
|
||||
|
||||
- AM335x 1GHz ARM® Cortex-A8 processor
|
||||
- 512MB DDR3 RAM
|
||||
- 4GB 8-bit eMMC flash storage
|
||||
- Integrated power management
|
||||
- 2×32-bit 200-MHz programmable real-time units (PRUs)
|
||||
- NEON floating-point accelerator
|
||||
- ARM Cortex-M3
|
||||
- USB2 client for power & communications, USB2 host
|
||||
- Battery support: 2-cell LiPo with balancing, LED state-of-charge monitor
|
||||
- Charger input: 9-18V
|
||||
- Wireless: 802.11bgn, Bluetooth 4.1 and BLE
|
||||
- Motor control: 8 6V servo out, 4 bidirectional DC motor out, 4 quadrature encoder in
|
||||
- Sensors: 9 axis IMU (accels, gyros, magnetometer), barometer, thermometer
|
||||
- User interface: 11 user programmable LEDs, 2 user programmable buttons
|
||||
- Easy connect JST interfaces for adding additional buses and peripherals including: GPS, DSM2 radio, UARTs, SPI, I2C, 1.8V analog, 3.3V GPIOs
|
||||
|
||||
## Purchase
|
||||
* [Newark](https://www.newark.com/beagleboard/bbone-blue/beaglebone-blue-robotics-platform/dp/95Y0640)
|
||||
|
|
@ -1,44 +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-01
|
||||
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)
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglebone_green_wireless"
|
||||
title: "BeagleBone Green Wireless Download"
|
||||
name: "BeagleBone Green Wireless"
|
||||
manufacturer: "SeeedStudio"
|
||||
board_url:
|
||||
- "https://beagleboard.org/green-wireless"
|
||||
board_image: "beaglebone_green_wireless.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2019-12-03
|
||||
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)
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "beaglev_starlight"
|
||||
title: "BeagleV Starlight Beta Prototype Download"
|
||||
name: "BeagleV Starlight Beta Prototype"
|
||||
manufacturer: "BeagleV"
|
||||
board_url:
|
||||
- "https://github.com/beagleboard/beaglev-starlight#readme"
|
||||
board_image: "beaglev_starlight.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-07-17
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
**The BeagleV™ - Starlight project has concluded and no units beyond the beta prototypes will be produced. This design was never sold as a product.**
|
||||
|
||||
[BeagleV Starlight](https://beagleboard.org/beaglev) is a Linux-capable RISC-V 64-bit dev board.
|
||||
|
||||
A [beta prototype version](https://wiki.seeedstudio.com/BeagleV-Getting-Started/#faq) was sent to a limited number of upstream developers for software enablement. This beta prototype used the StarFive JH7100 SoC.
|
||||
|
||||
|
||||
## Learn More
|
||||
* [GitHub](https://github.com/beagleboard/beaglev-starlight#readme)
|
||||
|
|
@ -1,40 +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-03
|
||||
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 you’ll 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/)
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "clara_agx_xavier"
|
||||
title: "Clara AGX Xavier Download"
|
||||
name: "Clara AGX Xavier"
|
||||
manufacturer: "NVIDIA"
|
||||
board_url:
|
||||
- "https://developer.nvidia.com/clara-agx-devkit"
|
||||
board_image: "clara_agx_xavier.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2020-10-06
|
||||
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, it’s 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)
|
||||
|
|
@ -1,32 +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-04-16
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
New clockworkPi v3.1 development board:
|
||||
* Allwinner R16-J Quad-core Cortex-A7 CPU @1.2GHz
|
||||
* Mali-400 MP2 GPU
|
||||
* 1GB DDR3 memory
|
||||
* WI-FI 802.11b/g/n & Bluetooth v4.0
|
||||
* Micro HDMI output (720P)
|
||||
* Micro SD card slot (Support up to 128GB)
|
||||
* PMU (Power Management Unit)
|
||||
* USB OTG supported
|
||||
* Ultra-small size (67.6 * 47.6 * 6.8mm)
|
||||
|
||||
## Purchase
|
||||
* [ClockworkPi](https://www.clockworkpi.com/product-page/cpi-v3-1)
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "diodes_delight_piunora"
|
||||
title: "Piunora Download"
|
||||
name: "Piunora"
|
||||
manufacturer: "Diodes Delight"
|
||||
board_url:
|
||||
- "https://www.crowdsupply.com/diodes-delight/piunora"
|
||||
board_image: "diodes_delight_piunora.jpg"
|
||||
download_instructions:
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- STEMMA QT/QWIIC
|
||||
---
|
||||
|
||||
Piunora is a compact, easy-to-use development board for electronics prototyping with Linux. It has a familiar form factor, legible pin labels, and a design that’s well suited to space-constrained applications.
|
||||
|
||||
As a carrier board for the [Raspberry Pi Compute Module 4](https://www.raspberrypi.org/products/compute-module-4/?variant=raspberry-pi-cm4001000) (CM4), Piunora is essentially a tiny version of the Raspberry Pi 4 Single Board Computer (SBC) with added flexibility to accommodate custom form factors. CM4-based devices like Piunora are fully compatible with software that was written for the Raspberry Pi 4, as long as that software accounts for the hardware peripherals in use. There are also versions of the CM4 that include eMMC memory, which is more reliable than a traditional SD card.
|
||||
|
||||
It may be small, but Piunora is packed with powerful peripherals that will come in handy for rapid prototyping and embedded machine-learning applications. Examples include an HDMI port, camera-input connectors, and PCI-e support, which is not present on a standard Raspberry Pi 4. Finally, the M.2 B-Key port on the rear of the board is not only useful for SSD storage, it can also host a diverse range of PCI-e expansion boards.
|
||||
|
||||
## Purchase
|
||||
* [Crowd Supply](https://www.crowdsupply.com/diodes-delight/piunora)
|
||||
|
|
@ -4,16 +4,14 @@ board_id: "dragonboard_410c"
|
|||
title: "Dragonboard 410c Download"
|
||||
name: "Dragonboard 410c"
|
||||
manufacturer: "Arrow Electronics"
|
||||
board_url:
|
||||
- "https://www.96boards.org/product/dragonboard410c/"
|
||||
board_url: "https://www.96boards.org/product/dragonboard410c/"
|
||||
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-06-29
|
||||
features:
|
||||
- Wi-Fi
|
||||
- HDMI/DisplayPort
|
||||
- WiFi
|
||||
- HDMI
|
||||
- 40-pin GPIO
|
||||
- GPS
|
||||
---
|
||||
|
|
@ -53,3 +51,7 @@ This DragonBoard™ 410c based on 96Boards™ specification features the Qualcom
|
|||
|
||||
## Purchase
|
||||
* [Arrow Electronics](https://www.arrow.com/en/products/dragonboard410c/arrow-development-tools)
|
||||
|
||||
## Contribute
|
||||
|
||||
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).
|
||||
|
|
|
|||
|
|
@ -1,24 +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-09-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)
|
||||
|
|
@ -1,36 +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-03
|
||||
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)
|
||||
|
|
@ -4,44 +4,43 @@ board_id: "google_coral"
|
|||
title: "Google Coral Dev Board"
|
||||
name: "Google Coral Dev Board"
|
||||
manufacturer: "Google"
|
||||
board_url:
|
||||
- "https://coral.withgoogle.com/products/dev-board"
|
||||
board_url: "https://coral.withgoogle.com/products/dev-board"
|
||||
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-05-13
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- HDMI
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
A development board to quickly prototype on-device ML products. Scale from prototype to production with a removable system-on-module (SOM).
|
||||
|
||||
### Edge TPU Module
|
||||
Edge TPU Module
|
||||
- CPU NXP i.MX 8M SOC (quad Cortex-A53, Cortex-M4F)
|
||||
- GPU Integrated GC7000 Lite Graphics
|
||||
- ML accelerator Google Edge TPU coprocessor
|
||||
- RAM 1 GB LPDDR4
|
||||
- Flash memory 8 GB eMMC
|
||||
- Wireless Wi-Fi 2x2 MIMO (802.11b/g/n/ac 2.4/5GHz) Bluetooth 4.1
|
||||
- Dimensions 48mm x 40mm x 5mm
|
||||
|
||||
- CPU: NXP i.MX 8M SOC (quad Cortex-A53, Cortex-M4F)
|
||||
- GPU: Integrated GC7000 Lite Graphics
|
||||
- ML accelerator: Google Edge TPU coprocessor
|
||||
- RAM: 1 GB LPDDR4
|
||||
- Flash memory: 8 GB eMMC
|
||||
- Wireless: Wi-Fi 2x2 MIMO (802.11b/g/n/ac 2.4/5 GHz) Bluetooth 4.1
|
||||
- Dimensions: 48 mm x 40 mm x 5 mm
|
||||
|
||||
### Baseboard
|
||||
|
||||
- Flash memory MicroSD slot
|
||||
- USB: USB-C OTG, USB-C power, Type-A 3.0 host, Micro-B serial console
|
||||
- LAN: Gigabit Ethernet port
|
||||
- Audio: 3.5 mm audio jack (CTIA compliant) Digital PDM microphone (x2) 2.54 mm 4-pin terminal for stereo speakers
|
||||
- Video: HDMI 2.0a (full size) 39-pin FFC connector for MIPI-DSI display (4-lane) 24-pin FFC connector for MIPI-CSI2 camera (4-lane)
|
||||
- GPIO: 3.3 V power rail 40 - 255 ohm programmable impedance ~82 mA max current
|
||||
- Power: 5 V DC (USB-C)
|
||||
- Dimensions: 88 mm x 60 mm x 24mm
|
||||
Baseboard
|
||||
- Flash memory MicroSD slot
|
||||
- USB Type-C OTG Type-C power Type-A 3.0 host Micro-B serial console
|
||||
- LAN Gigabit Ethernet port
|
||||
- Audio 3.5mm audio jack (CTIA compliant) Digital PDM microphone (x2) 2.54mm 4-pin terminal for stereo speakers
|
||||
- Video HDMI 2.0a (full size) 39-pin FFC connector for MIPI-DSI display (4-lane) 24-pin FFC connector for MIPI-CSI2 camera (4-lane)
|
||||
- GPIO 3.3V power rail 40 - 255 ohms programmable impedance ~82 mA max current
|
||||
- Power 5V DC (USB Type-C)
|
||||
- Dimensions 88 mm x 60 mm x 24mm
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Google](https://coral.withgoogle.com/products/dev-board)
|
||||
|
||||
## Contribute
|
||||
|
||||
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).
|
||||
|
|
|
|||
|
|
@ -1,36 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "google_coral_mini"
|
||||
title: "Google Coral Dev Board Mini"
|
||||
name: "Google Coral Dev Board Mini"
|
||||
manufacturer: "Google"
|
||||
board_url:
|
||||
- "https://coral.ai/products/dev-board-mini/"
|
||||
board_image: "google_coral_mini.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-on-google-coral-linux-blinka"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2020-12-07
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
The Coral Dev Board Mini is a single-board computer that provides fast machine learning (ML) inferencing in a small form factor. It's primarily designed as an evaluation device for the Accelerator Module (a surface-mounted module that provides the Edge TPU), but it's also a fully-functional embedded system you can use for various on-device ML projects.
|
||||
|
||||
- CPU MediaTek 8167s SoC (Quad-core Arm Cortex-A35)
|
||||
- GPU IMG PowerVR GE8300 (integrated in SoC)
|
||||
- ML accelerator Google Edge TPU coprocessor
|
||||
- RAM 2 GB LPDDR3
|
||||
- Flash memory 8 GB eMMC
|
||||
- Wireless Wi-Fi 5 (802.11a/b/g/n/ac); Bluetooth 5.0
|
||||
- Audio 3.5mm audio jack; digital PDM microphone; 2.54mm 2-pin speaker terminal;
|
||||
- Video micro HDMI (1.4); 24-pin FFC connector for MIPI-CSI2 camera (4-lane); 39-pin FFC connector for MIPI-DSI display (4-lane)
|
||||
- Input/output 3.5mm audio jack; digital PDM microphone; 2.54mm 2-pin speaker terminal; micro HDMI (1.4); 24-pin FFC connector for MIPI-CSI2 camera (4-lane); 39-pin FFC connector for MIPI-DSI display (4-lane)
|
||||
|
||||
## Purchase
|
||||
* [Seeed](https://www.seeedstudio.com/Coral-Dev-Board-Mini-p-4682.html)
|
||||
* [Mouser](https://www.mouser.com/new/google-coral/coral-dev-board-mini/)
|
||||
* [Arrow](https://www.arrow.com/en/products/g650-03324-01/google-corporation)
|
||||
|
|
@ -1,38 +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-05-15
|
||||
features:
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
**GreatFET One** from [Great Scott Gadgets](https://greatscottgadgets.com/) is a hardware hacker’s 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)
|
||||
|
|
@ -1,29 +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-03-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, we’re 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 world’s 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)
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "jetson_agx_orin"
|
||||
title: "Jetson AGX Orin"
|
||||
name: "Jetson AGX Orin"
|
||||
manufacturer: "NVIDIA"
|
||||
board_url:
|
||||
- "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/"
|
||||
board_image: "jetson_agx_orin.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-07-27
|
||||
features:
|
||||
- Ethernet
|
||||
- 40-pin GPIO
|
||||
- HDMI/DisplayPort
|
||||
|
||||
---
|
||||
|
||||
Bring your next-gen products to life with the world’s most powerful AI computer for energy-efficient autonomous machines. With up to 275 TOPS and 8X the performance of the last generation for multiple concurrent AI inference pipelines, plus high-speed interface support for multiple sensors, NVIDIA Jetson Orin™ modules provide the ideal solution for a new age of robotics.
|
||||
|
||||
The NVIDIA Jetson AGX Orin Developer Kit makes it easy to get started with the Jetson AGX Orin module. Compact size, lots of connectors, and up to 275 TOPS of AI performance make this developer kit perfect for prototyping advanced AI-powered robots and other autonomous machines.
|
||||
|
||||
Jetson AGX Orin features an NVIDIA Ampere architecture GPU together with next-generation deep learning and vision accelerators, and its high-speed IO and fast memory bandwidth can feed multiple concurrent AI application pipelines. This means you can develop solutions using your largest and most complex AI models to solve problems such as natural language understanding, 3D perception, and multi-sensor fusion.
|
||||
|
||||
NVIDIA JetPack SDK brings the NVIDIA AI software stack to Jetson, along with application development and optimization tools. Software for specific use cases is available, including Isaac for robotics and Metropolis for smart cities, and you can save significant time developing your AI solution when you use your datasets with TAO toolkit to fine-tune pretrained AI models from the NGC catalog.
|
||||
|
||||
Jetson ecosystem partners offer additional AI and system software, developer tools, and custom software development. They can also help with cameras and other sensors, as well as carrier boards and design services for your product.
|
||||
|
||||
With the computing capability of more than 8 Jetson AGX Xavier systems in a developer kit that integrates the latest NVIDIA GPU technology with the world’s most advanced deep learning software stack, you’ll have the flexibility to create tomorrow’s AI solution as well as today’s.
|
||||
|
||||
## Purchase
|
||||
|
||||
* [Amazon](https://amzn.to/3QKDIAt)
|
||||
* [Arrow](https://www.arrow.com/en/products/945-13730-0000-000/nvidia)
|
||||
|
|
@ -4,21 +4,20 @@ board_id: "jetson_nano"
|
|||
title: "Jetson Nano Dev Kit"
|
||||
name: "Jetson Nano Dev Kit"
|
||||
manufacturer: "NVIDIA"
|
||||
board_url:
|
||||
- "https://developer.nvidia.com/embedded/jetson-nano-developer-kit"
|
||||
board_url: "https://developer.nvidia.com/embedded/jetson-nano-developer-kit"
|
||||
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-09-10
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- USB 3.0
|
||||
- HDMI
|
||||
- DisplayPort
|
||||
- 4 x USB 3.0 Ports
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
The NVIDIA® Jetson Nano™ Developer Kit delivers the compute performance to run modern AI workloads at unprecedented size, power, and cost. Developers, learners, and makers can now run AI frameworks and models for applications like image classification, object detection, segmentation, and speech processing.
|
||||
The NVIDIA® Jetson Nano™ Developer Kit delivers the compute performance to run modern AI workloads at unprecedented size, power, and cost. Developers, learners, and makers can now run AI frameworks and models for applications like image classification, object detection, segmentation, and speech processing.
|
||||
|
||||
The developer kit can be powered by micro-USB and comes with extensive I/Os, ranging from GPIO to CSI. This makes it simple for developers to connect a diverse set of new sensors to enable a variety of AI applications. And it is incredibly power-efficient, consuming as little as 5 watts.
|
||||
|
||||
|
|
@ -42,3 +41,7 @@ The developer kit can be powered by micro-USB and comes with extensive I/Os, ran
|
|||
|
||||
## Purchase
|
||||
* [Arrow](https://www.arrow.com/products/945-13450-0000-000/nvidia)
|
||||
|
||||
## Contribute
|
||||
|
||||
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).
|
||||
|
|
|
|||
|
|
@ -1,34 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "jetson_orin_nano"
|
||||
title: "Jetson Orin Nano Dev Kit Download"
|
||||
name: "Jetson Orin Nano Dev Kit"
|
||||
manufacturer: "NVIDIA"
|
||||
board_url:
|
||||
- "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/"
|
||||
board_image: "jetson_orin_nano.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- Ethernet
|
||||
- 40-pin GPIO
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
NVIDIA Jetson Orin™ Nano Developer Kit is a compact edge AI board built with Jetson Orin™ Nano 8GB module which delivers up to 40TOPS AI performance and has a rich set of IOs including USB 3.2 Gen 2 ports, 2x M.2 Key M for SSD, pre-installed Wi-Fi module, and more.
|
||||
|
||||
The NVIDIA Jetson Orin™ Nano Developer Kit sets a new standard for creating entry-level AI-powered robots, smart drones, and intelligent cameras. It also simplifies the process of starting with Jetson Orin Nano series modules. Compact design, lots of connectors, and up to 40 TOPS of AI performance make this the perfect developer kit to bring your AI concepts to life. With up to 80X the performance of Jetson Nano, it can run all modern AI models, including transformer and advanced robotics models.
|
||||
|
||||
The developer kit comprises a Jetson Orin™ Nano 8GB module and a reference carrier board that can accommodate all Orin Nano and Orin NX modules. This provides the ideal platform for prototyping your next-gen edge-AI product. The Jetson Orin™ Nano 8GB module features an Ampere architecture GPU and a 6-core ARM CPU, enabling multiple concurrent AI application pipelines and high-performance inference. The carrier board boasts a wide array of connectors, including two camera connectors that can handle 2-lane and 4-lane cameras.
|
||||
|
||||
**Features**
|
||||
- Excellent AI Performance for production: on-device processing with up to 40 TOPS AI performance with low power and low latency
|
||||
- Hand-size edge AI device: compact size at 100mm x79mm x 21mm, includes Jetson Orin™ Nano 8GB module, a heatsink with a fan and a power adapter.
|
||||
- Expandable with rich I/Os: USB 3.2 Gen 2 ports(4x), DP 1.2, M.2 key E with pre-installed Wi-Fi module, 2x M.2 Key M for SSD, microSD slot, 2x MIPI CSI-2 connectors, Gigabit Ethernet, 40-pin GPIO
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/42Ay4Xf)
|
||||
* [Arrow](https://www.arrow.com/en/products/945-13766-0000-000/nvidia)
|
||||
* [Seeed Studio](https://www.seeedstudio.com/NVIDIAr-Jetson-Orintm-Nano-Developer-Kit-p-5617.html)
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "jetson_orin_nx"
|
||||
title: "Jetson Orin NX AI Dev Kit Download"
|
||||
name: "Jetson Orin NX AI Dev Kit"
|
||||
manufacturer: "NVIDIA"
|
||||
board_url:
|
||||
- "https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/"
|
||||
board_image: "jetson_orin_nx.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- Ethernet
|
||||
- 40-pin GPIO
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
Based on [Jetson Orin NX Module](https://www.nvidia.com/en-us/autonomous-machines/embedded-systems/jetson-orin/), with [JETSON-IO-BASE-B](https://www.waveshare.com/jetson-xavier-nx-dev-kit.htm?sku=22452) base board, providing rich peripheral interfaces such as M.2, HDMI, USB, etc., which is more convenient for users to realize the product performance.
|
||||
|
||||
This kit includes the Orin NX Module with options for 8GB/16GB memory, no built-in storage module, provides up to 70 TOPS/100 TOPS AI Performance. Comes with a Free 128 GB NVMe Solid State Drive, high-speed reading/writing, meet the needs of large AI project development.
|
||||
|
||||
## Purchase
|
||||
* [Waveshare](https://www.waveshare.com/jetson-orin-nx-16g-dev-kit.htm)
|
||||
|
|
@ -1,39 +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-03
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
The world's first supercomputer on a module, Jetson TX1 is capable of delivering the performance and power efficiency needed for the latest visual computing applications. It's built around the revolutionary NVIDIA Maxwell™ architecture with 256 CUDA cores delivering over 1 TeraFLOPs of performance. 64-bit CPUs, 4K video encode and decode capabilities, and a camera interface capable of 1400 MPix/s make this the best system for embedded deep learning, computer vision, graphics, and GPU computing.
|
||||
|
||||
- GPU 256-core NVIDIA Maxwell™ GPU
|
||||
- CPU Quad-Core ARM® Cortex®-A57 MPCore
|
||||
- Memory 4GB 64-bit LPDDR4 Memory
|
||||
- Storage 16GB eMMC
|
||||
- Video: 4K 60 Hz decode | 4K 30 Hz encode
|
||||
- USB USB 3.0 + USB 2.0
|
||||
- Ethernet 1
|
||||
- I2C 4
|
||||
- CAN 1
|
||||
- SPI 3
|
||||
- UART 1
|
||||
- GPIO 1
|
||||
- Display Interface HDMI
|
||||
- Operating Systems Linux Ubuntu
|
||||
- PC Card Interface SD
|
||||
|
||||
## Purchase
|
||||
* [Arrow](https://www.arrow.com/en/products/900-82180-0001-000/nvidia)
|
||||
|
|
@ -1,43 +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-03
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
The Jetson TX2 Developer Kit gives you a fast, easy way to develop hardware and software for the Jetson TX2 AI supercomputer on a module. It exposes the hardware capabilities and interfaces of the developer board, comes with design guides and other documentation, and is pre-flashed with a Linux development environment.
|
||||
|
||||
It also supports NVIDIA Jetpack—a complete SDK that includes the BSP, libraries for deep learning, computer vision, GPU computing, multimedia processing, and much more.
|
||||
|
||||
- GPU NVIDIA Pascal™ Architecture GPU
|
||||
- CPU 2 Denver 64-bit CPUs + Quad-Core A57 Complex
|
||||
- Memory 8 GB L128 bit DDR4 Memory
|
||||
- Storage 32 GB eMMC 5.1 Flash Storage
|
||||
- Connectivity to 802.11ac Wi-Fi and Bluetooth-Enabled Devices
|
||||
- 10/100/1000BASE-T Ethernet
|
||||
- Video: 4K 60 Hz decode | 4K 30 Hz encode
|
||||
- USB USB 3.0 + USB 2.0
|
||||
- Ethernet 1
|
||||
- I2C 1
|
||||
- CAN 1
|
||||
- SPI 1
|
||||
- UART 1
|
||||
- GPIO 1
|
||||
- Display Interface HDMI
|
||||
- Operating Systems Linux Ubuntu 64-bit v14.04
|
||||
- PC Card Interface SD
|
||||
|
||||
## Purchase
|
||||
* [Arrow](https://www.arrow.com/en/products/945-82771-0000-000/nvidia)
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "jetson_tx2_nx"
|
||||
title: "Jetson TX2 Dev Kit"
|
||||
name: "Jetson TX2 Dev Kit"
|
||||
manufacturer: "NVIDIA"
|
||||
board_url:
|
||||
- "https://developer.nvidia.com/embedded/jetson-tx2-nx"
|
||||
board_image: "jetson_tx2_nx.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-02-25
|
||||
features:
|
||||
|
||||
---
|
||||
|
||||
NVIDIA® Jetson™ TX2 NX delivers the next step in AI performance for entry-level embedded and edge products. It provides up to 2.5X the performance of Jetson Nano, and shares form-factor and pin compatibility with Jetson Nano and Jetson Xavier™ NX.
|
||||
|
||||
This small module packs hardware accelerators for the entire AI pipeline, and NVIDIA JetPack™ SDK provides the tools you need to use them for your application. Custom AI network development is easy with pre-trained AI models from NVIDIA NGC™ and the NVIDIA Transfer Learning Toolkit, and containerized deployments make updates for your product flexible and seamless.
|
||||
|
||||
Ease of development and speed of deployment—plus a unique combination of form-factor, performance, and power advantage—make Jetson TX2 NX the ideal mass-market AI product platform.
|
||||
|
||||
- AI Performance: 1.33 TFLOPs
|
||||
- GPU: NVIDIA Pascal™ Architecture GPU with 256 CUDA cores
|
||||
- CPU: Dual-core NVIDIA Denver 2 64-bit CPU and quad-core ARM A57 Complex
|
||||
- Memory: 4GB 128-bit LPDDR4, 1600 MHz - 51.2 GBs
|
||||
- Storage: 16GB eMMC 5.1 Flash Storage
|
||||
|
||||
## Purchase
|
||||
* [Arrow](https://www.arrow.com/en/products/900-13636-0010-000/nvidia)
|
||||
|
|
@ -1,43 +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-03
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
With the NVIDIA Jetson AGX Xavier developer kit, you can easily create and deploy end-to-end AI robotics applications for manufacturing, delivery, retail, agriculture, and more.
|
||||
|
||||
Supported by NVIDIA JetPack and DeepStream SDKs, as well as CUDA®, cuDNN, and TensorRT software libraries, the kit provides all the tools you need to get started right away. And because it’s 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)
|
||||
|
|
@ -1,33 +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-03-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)
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "khadas_vim3"
|
||||
title: "Khadas VIM3 Download"
|
||||
name: "Khadas VIM3"
|
||||
manufacturer: "Khadas"
|
||||
board_url:
|
||||
- "https://www.khadas.com/vim3"
|
||||
board_image: "khadas_vim3.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-04-01
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- Wi-Fi
|
||||
- 40-pin GPIO
|
||||
- USB 3.0
|
||||
- Bluetooth/BLE
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
- High Performance: Amlogic A311D - x4 2.2Ghz Cortex A73, x2 1.8Ghz Cortex A53 12nm SoC fabrication process for low heat 2T2R AC Wi-Fi with RSDB Features Bluetooth 5.0 USB 3.0 Available Gigabit Ethernet with WOL support LPDDR4/X USB-C PD for heavy applications
|
||||
- Neural Network Accelerator: NPU: Supports a maximum frequency of 800MHz at 5.0 TOPS INT8 inference up to 1536 MAC Internal L2 cache (512KB) and system workspace buffer (1MB) Supports all major deep learning frameworks including TensorFlow and Caffe
|
||||
- Maker Friendly: Stackable Design Programmable MCU 3 Programmable LEDs (Blue, Red and White) XPWR for external Power button Onboard SPI Flash Khadas TST Khadas KBI
|
||||
- Business Applications Dual independent displays with GSensor H.264 / H.265 Encoding Supports multi-video decoding up to 4Kx2K@60fps+1x1080P@60fps VIN Power Input
|
||||
- Rich IO: 40 Pin GPIO Header (USB, I2C, I2S, UART, ADC etc) 8-ch I2S for Microphone Array application (over M.2 Connector) MIPI-DSI MIPI-CSI Designed with GPIO Extender Chip
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/3NAK98d)
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lemaker_banana_pro"
|
||||
title: "Banana Pro Download"
|
||||
name: "Banana Pro"
|
||||
manufacturer: "LeMaker"
|
||||
board_url:
|
||||
- "https://en.wikipedia.org/wiki/Banana_Pi#Banana_Pi_Pro"
|
||||
board_image: "lemaker_banana_pro.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-09-06
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Wi-Fi
|
||||
- Ethernet
|
||||
---
|
||||
|
||||
LeMaker Banana Pro is an updated version of its predecessor Banana Pi, a low-cost single-board computer.
|
||||
|
||||
The Banana Pro is a credit card-sized and low-power single-board computer developed in China by the LeMaker Team, with the goal of promoting STEM (science, technology, engineering and mathematics) education in schools.
|
||||
|
||||
Like its smaller sibling the Banana Pi, the Pro concept is heavily influenced by the Raspberry Pi, however the Banana Pro provides various enhancements over prior designs.
|
||||
|
||||
The Banana Pro has an Allwinner A20 system on a chip (SoC), which includes an ARM Cortex-A7 Dual-core (ARMv7-A) 1 GHz, Mali-400 MP2 GPU and 1GB DDR3 SDRAM.
|
||||
|
||||
The Banana Pro uses a microSD card for booting an OS, but also includes a SATA 2.0 interface to allow connection of a hard disk for additional storage, however you cannot boot from the hard disk.
|
||||
|
||||
Other differences from the Banana Pi include on-board Wi-Fi 802.11b/g/n AP6181, integrated composite video and audio output into a 3.5 mm TRRS jack. This makes space for a 40-pin extension header.
|
||||
|
||||
## Purchase
|
||||
* [Tindie](https://www.tindie.com/products/DIGCM/banana-pro-single-board-computer-with-wifi/)
|
||||
|
|
@ -1,39 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "libre_aml-s905x-cc"
|
||||
title: "AML-S905X-CC (Le Potato) Download"
|
||||
name: "AML-S905X-CC (Le Potato)"
|
||||
manufacturer: "Libre Computer"
|
||||
board_url:
|
||||
- "https://libre.computer/products/s905x/"
|
||||
board_image: "libre_aml-s905x-cc.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-10-17
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Ethernet
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
Le Potato is our flagship hardware platform with support for the latest Android 9/TV, upstream Linux, u-boot, Kodi, and more. Based on a long term supported SoC family with a proven record of mass deployments by the largest regional content providers, Google, and Amazon, AML-S905X-CC is the perfect development platform for projects that require highly performant ARM Cortex-A class CPUs, secure and non-secure 4K media delivery and playback, Widevine CAS DRM, high reliability, and low power.
|
||||
|
||||
Libre Computer is the only solutions provider with key expertise in both hardware design and upstream free-open-source software (FOSS) stack for Amlogic's GXL SoC family including S805X, S905D, S905W, S905X, and S912. This SoC family features the Amlogic Video Engine 10 (AVE10) capable of handling H.265, H.264, and VP9 streams with HDR metadata making it ideal for 4K digital signage on mainline Linux and the latest Android 9.0 Pie.
|
||||
|
||||
Features
|
||||
- Form Factor Compatible with Raspberry Pi® 2/3 Model B/B+
|
||||
- Quad 64-bit Low Power Cores
|
||||
- Penta Core 3D GPU with OpenGL ES 2.0
|
||||
- Amlogic Video Engine (AVE10)
|
||||
- H.265
|
||||
- H.264
|
||||
- VP9
|
||||
- HDMI 2.0 with 4K HDR support
|
||||
- Up to 2GB DDR3
|
||||
- Product Family
|
||||
- AML-S805X-AC
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/3EO1FUg)
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "libre_roc-rk3328-cc"
|
||||
title: "ROC-RK3328-CC (Renegade) Download"
|
||||
name: "ROC-RK3328-CC (Renegade)"
|
||||
manufacturer: "Libre Computer"
|
||||
board_url:
|
||||
- "https://libre.computer/products/roc-rk3328-cc/"
|
||||
board_image: "libre_roc-rk3328-cc.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Ethernet
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
The ROC-RK3328-CC platform is built on the Rockchip RK3328 system-on-chip optimized for low cost, low power, and high performance IO. It features a high performance native USB 3.0 interface and Gigabit MAC. Libre Computer is one of the few Linux-based software and hardware solutions provider for this chip.
|
||||
|
||||
**Product Features**
|
||||
- Form Factor Compatible with Raspberry Pi® 2/3 Model B/B+
|
||||
- Quad 64-bit Low Power Cores
|
||||
- Quad Core 3D GPU with OpenGL ES 2.0
|
||||
- Rockchip Multimedia Processor
|
||||
- H.265
|
||||
- H.264
|
||||
- VP9
|
||||
- HDMI 2.0 with 4K HDR support
|
||||
- Up to 4GB DDR4
|
||||
- USB 3.0
|
||||
- Gigabit Ethernet MAC
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/3NYdb3Y)
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lichee_pi_4a"
|
||||
title: "LicheePi 4A Download"
|
||||
name: "LicheePi 4A"
|
||||
manufacturer: "Sipeed"
|
||||
board_url:
|
||||
- "https://sipeed.com/licheepi4a"
|
||||
board_image: "lichee_pi_4a.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2024-01-23
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- USB 3.0
|
||||
---
|
||||
|
||||
Lichee Pi 4A is a high performance RISC-V linux development board using Lichee Module 4A, based on the TH1520 SoC. It contains 4TOPS@int8 AI NPU, supports 16GB LPDDR4X memory and 128G eMMC storage, supports dual 4K resolution screen display, supports 4K mipi camera input, dual POE Gigabit Ethernet ports and multiple USB interfaces. There is an extra RISC-V C906 Core for audio decode.
|
||||
|
||||
|
||||
## Purchase
|
||||
* [AliExpress](https://www.aliexpress.us/item/3256805346421328.html)
|
||||
* [Taobao](https://item.taobao.com/item.htm?id=715508771884)
|
||||
* [Amazon](https://www.amazon.com/Sipeed-LicheePi-Risc-V-TH1520-Development/dp/B0C5MV6991)
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lichee_rv_dock_d1"
|
||||
title: "Lichee RV Dock D1 Download"
|
||||
name: "Lichee RV Dock D1"
|
||||
manufacturer: "Sipeed"
|
||||
board_url:
|
||||
- "https://www.seeedstudio.com/Lichee-RV-Dock-Allwinner-D1-SoC-RISC-V-Linux-dev-kit-High-Integration-Open-Source-p-5380.html"
|
||||
board_image: "lichee_rv_dock_d1.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-10-06
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
---
|
||||
|
||||
Lichee RV Dock is a RISC-V Linux development kit. It expands the module’s usable interfaces by providing an HDMI port with support for up to 4K@30fps output, a 40-pin header with GPIO and power switches, among other things, plus headers and connectors that you can use for speakers, microphones, and more. It supports RGB and MIPI screen interfaces with its screen convert board. There is an onboard 2.4G WIFI+BT module, a 2.4G Patch antenna, an IPEX connector, and a USB Type-A host. The highest network speed is up to 30Mbps (with RTL8723DS), and the average network bandwidth is about 20Mbps.
|
||||
|
||||
For software, Lichee RV Dock supports Tina Linux, Debian Officially, and also Ubuntu/OpenSUSE, RustSBI community.
|
||||
|
||||
The features of high integration, small size, affordable price, and open-source are suitable for developers exploring more interesting Linux applications. No more waiting and soldering, it greatly shortens the developer’s research and development time by just simply connecting the kit to the display devices and input devices such as a keyboard or a mouse(only available on the Debian system).
|
||||
|
||||
## Purchase
|
||||
* [Seeed Studio](https://www.seeedstudio.com/Lichee-RV-Dock-Allwinner-D1-SoC-RISC-V-Linux-dev-kit-High-Integration-Open-Source-p-5380.html)
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat-4"
|
||||
title: "LubanCat-4 Download"
|
||||
name: "LubanCat-4"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat-4.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-10-27
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
LubanCat-4 is equipped with a quad-core A76+quad-core A55 eight-core CPU and a powerful Arm high-performance GPU, and has a built-in NPU with 6T computing power. Equipped with a Gigabit network port, mini-HDMI, USB3.0, MINI PCI-E interface, MIPI and other peripherals. While introducing high-usage interfaces, some low-usage interfaces and peripherals are deleted, significantly reducing the board area, and the reserved universal interfaces such as USB and MINI PCI-E are further expanded. In the usage scenarios of the board, the small body can still burst out great performance.
|
||||
|
||||
This allows LubanCat-4 to be used not only as a high-performance single-board computer, but also as an embedded motherboard for display, control, network transmission, file storage, edge computing and other scenarios.
|
||||
|
||||
The LubanCat-4 board provides a complete SDK driver development package, design schematics and other resources, which helps users further apply the board while greatly reducing the secondary development time based on this board and accelerating product launch.
|
||||
|
||||
**Specifications**
|
||||
- Type-C5V@4A DC input
|
||||
- RK3588S (quad-core A76+quad-core A55, Mali-G610, 6T computing power)
|
||||
- LPDDR4X-4/8GB
|
||||
- eMMC-32/64/128GB
|
||||
- 10/100/1000M adaptive Ethernet port
|
||||
- Type-A interface x3(HOST)
|
||||
- Type-A interface x1(HOST)
|
||||
- Type-C interface x1 (OTG), firmware burning interface, DP display (supports multi-screen differential display with other screens)
|
||||
- One Debug serial port, default parameter 1500000-8-N-1
|
||||
- ON/OFF (power on/off key), MR (MaskRom), REC (Recovery)
|
||||
- Headphone output + microphone input 2-in-1 interface
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I2C, SPI, UART functions
|
||||
- Can be used with full-height or half-height WIFI network cards, 4G modules or other MINI-PCIE interface modules
|
||||
- Need to be used with 4G module
|
||||
- Monitor interface supports multi-screen differential display with other screens
|
||||
- 2xMIPI screen interface, supports multi-screen differential display with other screens
|
||||
- 3x camera interface
|
||||
- Support TF card to start the system, up to 512GB
|
||||
- Support infrared remote control
|
||||
- Support RTC function
|
||||
- Supports installation of fans for cooling
|
||||
|
|
@ -1,43 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat1"
|
||||
title: "LubanCat1 Download"
|
||||
name: "LubanCat1"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat1.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
**Specifications**
|
||||
- 5V@3A DC input, Type-C interface
|
||||
- RK3566 (quad-core Cortex-A55, 1.8GHz, Mali-G52)
|
||||
- 1/2/4/8GB, LPDDR4/4x, 1056MHz
|
||||
- 8/32/64/128GB eMMC
|
||||
- 10/100/1000M adaptive Ethernet port*1
|
||||
- HDMI2.0 display interface
|
||||
- MIPI screen interface, can be plugged into Wildfire MIPI screen
|
||||
- Camera interface, can plug wildfire OV5648 camera
|
||||
- Type-A interface*1 (HOST)
|
||||
- The SIM card function needs to be used with a 4G module
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I²C, SPI, UART functions
|
||||
- Default parameter 1500000-8-N-1
|
||||
- Support Micro SD (TF) card boot system, up to 128GB
|
||||
- Headphone output + microphone input 2 in 1 interface
|
||||
- MaskRom via; Recovery via;
|
||||
- Support infrared remote control function
|
||||
- Support RTC function
|
||||
- Support fan cooling
|
||||
- Type-A interface*3 (HOST);
|
||||
- Type-C interface *1 (OTG), for firmware burning interface, shared with the power interface
|
||||
- It can be used with full-height or half-height WIFI network card, 4G module or
|
||||
- Other Mini-PCIe interface modules use
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat1n"
|
||||
title: "LubanCat1N Download"
|
||||
name: "LubanCat1N"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat1n.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
**Specifications**
|
||||
- 5V@3A DC input, Type-C interface
|
||||
- RK3566 (quad-core Cortex-A55, 1.8GHz, Mali-G52)
|
||||
- 1/2/4/8GB, LPDDR4/4x, 1056MHz
|
||||
- 8/32/64/128GB, eMMC
|
||||
- 802.11ac dual-band wireless network card, up to 433Mbps; Bluetooth supports BT4.2 protocol
|
||||
- 10/100/1000M adaptive Ethernet port*2
|
||||
- HDMI2.0 display interface
|
||||
- MIPI screen interface, can be plugged into Wildfire MIPI screen
|
||||
- Camera interface, can plug wildfire OV5648 camera
|
||||
- Type-A interface*1 (HOST)
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I²C, SPI, UART functions
|
||||
- Default parameter 1500000-8-N-1
|
||||
- Support Micro SD (TF) card boot system, up to 128GB
|
||||
- Headphone output + microphone input 2 in 1 interface
|
||||
- Power button; MaskRom button; Recovery button
|
||||
- Support infrared remote control function
|
||||
- Support fan cooling
|
||||
- Type-A interface*1 (HOST);
|
||||
- Type-C interface *1 (OTG), for firmware burning interface, shared with the power interface
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat2"
|
||||
title: "LubanCat2 Download"
|
||||
name: "LubanCat2"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat2.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
**Specifications**
|
||||
- 5V@3A DC input, DC/Type-C interface
|
||||
- RK3568 (quad-core Cortex-A55, 2.0GHz, Mali-G52)
|
||||
- 1/2/4/8GB, LPDDR4/4x, 1560MHz
|
||||
- 8/32/64/128GB, eMMC
|
||||
- 10/100/1000M adaptive Ethernet port*2
|
||||
- HDMI2.0 display interface, support dual-screen display with MIPI-DSI
|
||||
- MIPI screen interface, wildfire MIPI screen can be plugged in, support dual-screen display with HDMI2.0
|
||||
- Camera interface, can plug wildfire OV5648 camera
|
||||
- Type-A interface*1 (HOST)
|
||||
- M.Key type, PCIe3.0x2Lanes, can insert 2280 specification NVME SSD
|
||||
- SATA cable interface, need to be used with an adapter board, can support SATA interface hard disk with 5V power supply
|
||||
- The SIM card function needs to be used with a 4G module
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I²C, SPI, UART functions
|
||||
- Default parameter 1500000-8-N-1
|
||||
- Support Micro SD (TF) card boot system, up to 128GB
|
||||
- Headphone output + microphone input 2 in 1 interface
|
||||
- 1W power speaker can be connected
|
||||
- Power button; MaskRom button; Recovery button
|
||||
- Support infrared remote control function
|
||||
- Support RTC function
|
||||
- Support fan cooling
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat2n"
|
||||
title: "LubanCat2N Download"
|
||||
name: "LubanCat2N"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat2n.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
**Specifications**
|
||||
- 12V@2A DC input, DC interface
|
||||
- RK3568B2 (quad-core Cortex-A55, 2.0GHz, Mali-G52)
|
||||
- 1/2/4/8GB, LPDDR4/4x, 1560MHz
|
||||
- 8/32/64/128GB, eMMC
|
||||
- 2.5G Ethernet port*2; 10/100/1000M adaptive Ethernet port*2
|
||||
- HDMI2.0 display interface, support dual-screen display with MIPI-DSI
|
||||
- MIPI screen interface, wildfire MIPI screen can be plugged in, support dual-screen display with HDMI2.0
|
||||
- Camera interface, can plug wildfire OV5648 camera
|
||||
- Type-A interface*1 (HOST); Type-C interface*1 (OTG), for firmware burning interface
|
||||
- Type-A interface*1 (HOST)
|
||||
- Standard SATA interface
|
||||
- Support 12V output
|
||||
- The SIM card function needs to be used with a 4G module
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I²C, SPI, UART functions
|
||||
- Default parameter 1500000-8-N-1
|
||||
- Support Micro SD (TF) card boot system, up to 128GB
|
||||
- Headphone output + microphone input 2 in 1 interface
|
||||
- Speaker interface, can be connected to 1W power speaker
|
||||
- Power button; MaskRom button; Recovery button
|
||||
- Support infrared remote control function
|
||||
- Support RTC function
|
||||
- Support fan cooling
|
||||
- Mini-PCIe interface, can be used with full-height or half-height WIFI network card, 4G module
|
||||
- or other Mini-PCIe interface modules to use
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat_i.mx6ull"
|
||||
title: "LubanCat I.MX6ULL Download"
|
||||
name: "LubanCat I.MX6ULL"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://www.seeedstudio.com/NPi-i-MX6ULL-Dev-Board-Industrial-Grade-Linux-SBC-NAND-Version-p-4220.html"
|
||||
board_image: "lubancat_i.mx6ull.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2021-01-15
|
||||
features:
|
||||
- Ethernet
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
Meet the new i.MX6ULL ARM Cortex A7 processor from NXP, it is a high performance and power-efficient processor with a frequency up to 800MHz!
|
||||
|
||||
The NPi i.MX6ULL Dev Board is a low power consumption Linux single board computer built around the powerful i.MX6ULL. You would love the onboard 512MB DDR3L and 512MB NAND, not to mention the rich interfaces and I/O resources.
|
||||
|
||||
The whole board is made by a core module and a breakout board, and the components are all industrial grade.
|
||||
|
||||
The core module is composed of the i.MX6ULL core and 512MB DDR3L, 512MB NAND FLASH(or 8GB eMMC).
|
||||
|
||||
The breakout board mainly includes various peripheral interfaces and input and output, IO expansion. Including but not limited to two 100M ethernet port, one USB Host and one USB OTG port, one 24bit RGB LCD Interface, 2x 40 Pin I/O expansion header, etc. Such a wealth of resources will meet your various control needs. All those features make it a perfect solution for industrial control, rail transit, drone control, and audio output, etc.
|
||||
|
||||
## Learn More
|
||||
* [Seeed Studio](https://www.seeedstudio.com/NPi-i-MX6ULL-Dev-Board-Industrial-Grade-Linux-SBC-NAND-Version-p-4220.html)
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat_zero_n"
|
||||
title: "LubanCat Zero N Download"
|
||||
name: "LubanCat Zero N"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat_zero_n.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
**Specifications**
|
||||
- 5V@3A DC input, Type-C interface
|
||||
- RK3566 (quad-core Cortex-A55, 1.8GHz, Mali-G52)
|
||||
- 1/2/4/8GB, LPDDR4/4x, 1056MHz
|
||||
- 10/100/1000M adaptive Ethernet port*1
|
||||
- Mini-HDMI2.0 display interface
|
||||
- MIPI screen interface, can be plugged into Wildfire MIPI screen
|
||||
- Camera interface, can plug wildfire OV5648 camera
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I²C, SPI, UART functions
|
||||
- Default parameter 1500000-8-N-1
|
||||
- Support Micro SD (TF) card boot system, up to 128GB
|
||||
- Type-C interface*1 (OTG), shared with the power interface;
|
||||
- Type-C interface*1 (HOST), not for power supply
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "lubancat_zero_w"
|
||||
title: "LubanCat Zero W Download"
|
||||
name: "LubanCat Zero W"
|
||||
manufacturer: "EmbedFire"
|
||||
board_url:
|
||||
- "https://embedfire.com/products/"
|
||||
board_image: "lubancat_zero_w.jpg"
|
||||
download_instructions: ""
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- HDMI/DisplayPort
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
**Specifications**
|
||||
- 5V@3A DC input, Type-C interface
|
||||
- RK3566 (quad-core Cortex-A55, 1.8GHz, Mali-G52)
|
||||
- 1/2/4/8GB, LPDDR4/4x, 1056MHz
|
||||
- 802.11ac dual-band wireless network card, up to 433Mbps; Bluetooth supports BT4.2 protocol
|
||||
- Mini-HDMI2.0 display interface
|
||||
- MIPI screen interface, can be plugged into Wildfire MIPI screen
|
||||
- Camera interface, can plug wildfire OV5648 camera
|
||||
- Compatible with Raspberry Pi 40Pin interface, supports PWM, GPIO, I²C, SPI, UART functions
|
||||
- Default parameter 1500000-8-N-1
|
||||
- Support Micro SD (TF) card boot system, up to 128GB
|
||||
- Type-C interface*1 (OTG), shared with the power interface;
|
||||
- Type-C interface*1 (HOST), not for power supply
|
||||
|
|
@ -1,24 +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-03-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)
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "milkv_duo"
|
||||
title: "MilkV Duo Download"
|
||||
name: "MilkV Duo"
|
||||
manufacturer: "Shenzhen MilkV Technology Co., Ltd"
|
||||
board_url:
|
||||
- "https://milkv.io/docs/duo/overview"
|
||||
board_image: "milkv_duo.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2024-03-13
|
||||
features:
|
||||
|
||||
---
|
||||
|
||||
Milk-V Duo is an ultra-compact embedded development platform based on the CV1800B chip. It can run Linux and RTOS, providing a reliable, low-cost, and high-performance platform for professionals, industrial ODMs, AIoT enthusiasts, DIY hobbyists, and creators.
|
||||
|
||||
- 1GHz and 700MHz RISC-V C906 processors
|
||||
- Integrated CVITEK TPU for smart detection.
|
||||
- SIP DRAM 64MB
|
||||
- Supports H.264/H.265 video encoding, up to 2880x1620@20fps.
|
||||
- Compatible with high-definition CMOS sensors.
|
||||
- Programmable frequency output for sensor clock.
|
||||
- Comprehensive ISP features for image optimization.
|
||||
- Partial OpenCV library support with CV hardware acceleration.
|
||||
- 16-bit audio codec with built-in mic input and output functions.
|
||||
- Flexible network configurations with 1 Ethernet PHY.
|
||||
|
||||
|
||||
## Purchase
|
||||
* [MilkV](https://milkv.io/duo#buy)
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "nanopi_duo2"
|
||||
title: "NanoPi Duo2 Download"
|
||||
name: "NanoPi Duo2"
|
||||
manufacturer: "FriendlyElec"
|
||||
board_url:
|
||||
- "http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo2"
|
||||
board_image: "nanopi_duo2.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-02-05
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
|
||||
---
|
||||
|
||||
The NanoPi Duo2("Duo2") is an ARM board designed and developed by FriendlyELEC for makers and hobbyists. It is only 55 x 25.4mm. It features Allwinner quad-core A7 processor H3, and has 256M/512M DDR3 RAM, onboard WiFi & bluetooth module and an OV5640 camera interface. It works with Linux variants such as Ubuntu Core.
|
||||
|
||||
The NanoPi Duo2 is tiny and compact with rich interfaces and ports. It takes power input from its MicroUSB port and can be booted from a Micro SD card. It works with general bread-boards. Interface pins such as USB, SPI, UART, I2C, PWM, IR, audio input & output and Fast Ethernet etc are populated.
|
||||
|
||||
The NanoPi Duo2 supports software utilities such as WiringNP and Python etc. These are all open source. It is suited for various IoT applications.
|
||||
|
||||
- CPU: Allwinner H3, Quad-core Cortex-A7 Up to 1.2GHz
|
||||
- DDR3 RAM: 512M
|
||||
- Connectivity: 10/100M Ethernet
|
||||
- WiFi: 802.11b/g/n
|
||||
- Bluetooth: Bluetooth V4.0 of 1, 2 and 3 Mbps.
|
||||
- Camera: OV5640
|
||||
- Key: GPIO Key
|
||||
- USB Host: 2.54mm pin x2, exposed in 2.54mm pitch pin header
|
||||
- MicroSD Slot x 1
|
||||
- MicroUSB: OTG and power input
|
||||
- Debug Serial Interface: exposed in 2.54mm pitch pin header
|
||||
- Audio input/output Interface: exposed in 2.54mm pitch pin header
|
||||
- GPIO1: 2.54mm spacing 16pin. It includes UART, SPI, I2C, Audio etc
|
||||
- GPIO2: 2.54mm spacing 16pin. It includes USB,10/100M Ethernet, IO etc
|
||||
- PCB Dimension: 25.4 x 55mm
|
||||
- Power Supply: DC 5V/2A
|
||||
- Temperature measuring range: -20℃ to 70℃
|
||||
- OS/Software: U-boot,Linux-4.14 / Linux-3.4, Ubuntu 16.04.2 LTS (Xenial)
|
||||
|
||||
## Purchase
|
||||
* [FriendlyElec](https://www.friendlyarm.com/index.php?route=product/product&product_id=244)
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "nanopi_neo_air"
|
||||
title: "NanoPi NEO Air Download"
|
||||
name: "NanoPi NEO Air"
|
||||
manufacturer: "FriendlyElec"
|
||||
board_url:
|
||||
- "http://nanopi.io/nanopi-neo-air.html"
|
||||
board_image: "nanopi_neo_air.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-01-20
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
|
||||
---
|
||||
|
||||
LTS - long term support, We will not make any changes to this model and will provide support as long as possible
|
||||
|
||||
- CPU: Allwinner H3, Quad-core Cortex-A7 Up to 1.2GHz
|
||||
- RAM: 512MB DDR3 RAM
|
||||
- Storage: 8GB eMMC
|
||||
- WiFi: 802.11b/g/n
|
||||
- Bluetooth: 4.0 dual mode
|
||||
- MicroSD Slot x 1
|
||||
- GPIO: 2.54mm pitch 24pin. It includes UART, SPI, I2C, IO etc
|
||||
- PCB Size: 40 x 40mm
|
||||
- Power Supply: DC 5V/2A
|
||||
- OS/Software: u-boot, UbuntuCore
|
||||
- Weight: 7.5g(WITHOUT Pin-headers); 9.7g(WITH Pin-headers)
|
||||
|
||||
## Purchase
|
||||
* [FriendlyElec](https://www.friendlyarm.com/index.php?route=product/product&product_id=151)
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "nanopi_neo"
|
||||
title: "NanoPi NEO Download"
|
||||
name: "NanoPi NEO"
|
||||
manufacturer: "FriendlyElec"
|
||||
board_url:
|
||||
- "http://nanopi.io/nanopi-neo.html"
|
||||
board_image: "nanopi_neo.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-01-04
|
||||
features:
|
||||
- Ethernet
|
||||
|
||||
---
|
||||
|
||||
LTS - long term support, We will not make any changes to this model and will provide support as long as possible
|
||||
|
||||
- CPU: Allwinner H3, Quad-core Cortex-A7 Up to 1.2GHz
|
||||
- DDR3 RAM: 256MB/512MB
|
||||
- Connectivity: 10/100M Ethernet
|
||||
- USB Host: Type-A x 1, 2.54 mm pin x 2
|
||||
- MicroSD Slot x 1
|
||||
- MicroUSB: for data transmission and power input
|
||||
- Debug Serial Port: 4Pin, 2.54 mm pitch pin header
|
||||
- GPIO: 2.54mm pitch 36pin. It includes UART, SPI, I2C, IO etc
|
||||
- PCB Dimension: 40 x 40 mm
|
||||
- Power Supply: DC 5V/2A
|
||||
- OS/Software: u-boot and UbuntuCore
|
||||
|
||||
## Purchase
|
||||
* [FriendlyElec](https://www.friendlyarm.com/index.php?route=product/product&path=69&product_id=132)
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "octavo_osd32mp1_brk"
|
||||
title: "OSD32MP1-RED Download"
|
||||
name: "OSD32MP1-RED"
|
||||
manufacturer: "Octavo Systems"
|
||||
board_url:
|
||||
- "https://octavosystems.com/octavo_products/osd32mp1-brk/"
|
||||
board_image: "octavo_osd32mp1_brk.jpg"
|
||||
download_instructions:
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
|
||||
---
|
||||
|
||||
The OSD32MP1-BRK is a small flexible prototyping platform for the [STM32MP1](https://www.st.com/en/microcontrollers-microprocessors/stm32mp1-series.html) based SiP, the [OSD32MP15x](https://octavosystems.com/octavo_products/osd32mp15x/). At only 3in X 1.8in (75mm X 46mm), it provides easy access to the I/O of the STM32MP1 through a set of breadboard compatible headers. The OSD32MP1-BRK allows developers to quickly build a proof of concept that more closely resembles their actual system without the need to build their own custom hardware.
|
||||
|
||||
The OSD32MP1-BRK features the OSD32MP15x System in Package, a microSD slot, 32KHz crystal, a microUSB client port, and two 2×30 100 mill headers. The headers give access to 106 I/O on the STM32MP1 integrated into the OSD32MP15x SiP. It uses a 4 Layer PCB with low cost design rules and has no back side components.
|
||||
|
||||
Its minimal overhead and access to a wide range of I/O make the OSD32MP1-BRK the perfect platform for any designer looking for complete flexibility as they prototype their design.
|
||||
|
||||
- Small Form Factor
|
||||
- Only 3in X 1.8in (75mm X 46mm)
|
||||
- Access to 106 I/O
|
||||
- two 2×30 100mil (2.54mm) Headers
|
||||
- Maximum flexibility to prototype designs
|
||||
- Breadboard Compatible
|
||||
- OSD32MP157C-512M-BAA
|
||||
- STM32MP157C Dual Arm® Cortex® A7 + M4
|
||||
- 512MB DDR3 Memory
|
||||
- STPMIC1A Power Management
|
||||
- EEPROM
|
||||
- Oscillator
|
||||
- Passives
|
||||
- µUSB
|
||||
- STLink*
|
||||
- UART
|
||||
- µSD Card
|
||||
- 32KHz Crystal
|
||||
- 4 Layer Design
|
||||
- No Back Side Components
|
||||
|
||||
## Purchase
|
||||
* [Digikey](https://www.digikey.com/en/products/detail/octavo-systems-llc/OSD32MP1-BRK/12144788)
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "octavo_osd32mp1_red"
|
||||
title: "OSD32MP1-RED Download"
|
||||
name: "OSD32MP1-RED"
|
||||
manufacturer: "Octavo Systems"
|
||||
board_url:
|
||||
- "https://octavosystems.com/octavo_products/osd32mp1-red"
|
||||
board_image: "octavo_osd32mp1_red.jpg"
|
||||
download_instructions:
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-12-06
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
The OSD32MP1-RED is a full featured Reference, Evaluation and Development platform for the [STM32MP1](https://www.st.com/en/microcontrollers-microprocessors/stm32mp1-series.html) based SiP, the [OSD32MP15x](https://octavosystems.com/octavo_products/osd32mp15x/). It provides access to a number of standard communication interfaces like WiFi and Bluetooth, 1Gb Ethernet, and CAN. It supports HDMI or DSI displays and has a connector for a camera. The OSD32MP1-RED expands easily by providing connectors that are compatible with Raspberry Pi, MikroElektronika mikroBUS™ Click, and STMicroelectronics Motor Control Header.
|
||||
|
||||
The on board eMMC comes preloaded with an Opensource Linux Distribution allowing you to begin development straight out of the box.
|
||||
|
||||
With its communication interfaces, peripherals, and expansion capabilities, the OSD32MP1-RED is a perfect platform for quickly developing IOT, high-end HMI, or real time control applications.
|
||||
|
||||
- Full Featured Reference, Evaluation, Development Platform
|
||||
- OSD32MP157C-512M-BAA
|
||||
- STM32MP157C Dual Arm® Cortex® A7 + M4
|
||||
- 512MB DDR3 Memory
|
||||
- STPMIC1A Power Management
|
||||
- EEPROM
|
||||
- Oscillator
|
||||
- Passives
|
||||
- Connectivity
|
||||
- WiFi (IEEE802.11b/g/n) / Bluetooth® v5.1 (BR/EDR/BLE)
|
||||
- 10/100/1000 Ethernet
|
||||
- CAN FD
|
||||
- USB Host
|
||||
- USB-C OTG
|
||||
- UART
|
||||
- JTAG (STLink)
|
||||
- Memory
|
||||
- µSD Card
|
||||
- eMMC
|
||||
- Display
|
||||
- HDMI
|
||||
- DSI
|
||||
- Camera
|
||||
- Expansion
|
||||
- Raspberry Pi Compatible Header
|
||||
- MikroElektronika Click Header
|
||||
- Motor Control Header
|
||||
- 4 Layer Design
|
||||
|
||||
## Purchase
|
||||
* [Digikey](https://www.digikey.com/en/products/detail/octavo-systems-llc/OSD32MP1-RED/13575366)
|
||||
|
|
@ -1,19 +1,17 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "odroid_c2"
|
||||
title: "ODROID C2 Download"
|
||||
name: "ODROID C2"
|
||||
title: "Odroid C2 Download"
|
||||
name: "Odroid C2"
|
||||
manufacturer: "Hardkernel co., Ltd."
|
||||
board_url:
|
||||
- "https://www.hardkernel.com/shop/odroid-c2/"
|
||||
board_url: "https://www.hardkernel.com/shop/odroid-c2/"
|
||||
board_image: "odroid_c2.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-libaries-linux-odroid-c2"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2019-06-17
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- HDMI
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
|
@ -43,3 +41,7 @@ Some of the modern operating systems that run on the ODROID-C2 are Ubuntu, Andro
|
|||
|
||||
## Purchase
|
||||
* [Hardkernel](https://www.hardkernel.com/shop/odroid-c2/)
|
||||
|
||||
## Contribute
|
||||
|
||||
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).
|
||||
|
|
|
|||
|
|
@ -1,39 +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-05-15
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
ODROID-C4 is a new generation single board computer that is more energy efficient and faster performing than ODROID-C2 which was introduced over four years ago as the world’s 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/)
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "odroid_m1"
|
||||
title: "ODROID M1 Download"
|
||||
name: "ODROID M1"
|
||||
manufacturer: "Hardkernel co., Ltd."
|
||||
board_url:
|
||||
- "https://www.hardkernel.com/shop/odroid-m1-with-4gbyte-ram/"
|
||||
board_image: "odroid_m1.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-11-28
|
||||
features:
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
The ODROID-M1 is a single board computer with a wide range of useful peripherals developed for use in a variety of embedded system applications. To achieve this goal, we have developed various hardware accessories and device driver software over the past 10 months. In addition, RK3568B2, the core brain of ODROID-M1, is considered suitable for embedded application use as the SoC manufacturer (Rockchip) guarantees supply for the next 15 years. Therefore, we expect we can supply the ODROID-M1 boards to our important B2B customers until the year 2036 or beyond.
|
||||
|
||||
Note that RK3568B2 is a slightly modified version of the RK3568 to overcome the IC supply chain problem these days. The previous RK3568 metal-can type packaging lead time is much longer than the more common plastic package of the RK3568B2.
|
||||
|
||||
Let’s take a look at the main features and peripherals of ODROID-M1.
|
||||
|
||||
- Rockchip RK3568B2 CPU
|
||||
- LPDDR4 RAM
|
||||
- 1 x Micro USB2.0 Device only
|
||||
- 1 x RJ45 Ethernet Port (10/100/1000)
|
||||
- 1 x HDMI 2.0
|
||||
- 2 x USB 2.0
|
||||
- 2 x USB 3.0
|
||||
- 1 x DC Power Jack
|
||||
- 1 x M.2 NVMe M-Key PCIe3.0 2-Lane
|
||||
- 40 x GPIO Pins
|
||||
- 1 x MIPI CSI 2Lane
|
||||
- 1 x MIPI DSI 4Lane
|
||||
- 1 x 3.5mm Headphone Jack
|
||||
- 1 x Mono Speaker Output (1.3W at 8Ω load)
|
||||
- 1 x SPI recovery Switch
|
||||
- 1 x SPI Flash 16MiB
|
||||
- 1 x eMMC Module Socket
|
||||
- 1 x IR Receiver
|
||||
- 1 x RTC Backup Battery Holder
|
||||
- 1 x Reset jumper
|
||||
- 1 x Power jumper
|
||||
- 1 x Micro SD Slot
|
||||
- 1 x SATA3
|
||||
- 1 x SATA Power (5volt only)
|
||||
- 1 x UART for System Console
|
||||
- 2 x System LED Indicators
|
||||
- 1 x M.2 LED Indicator
|
||||
|
||||
## Purchase
|
||||
* [Hardkernel](https://www.hardkernel.com/shop/odroid-m1-with-4gbyte-ram/)
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "odroid_m1s"
|
||||
title: "ODROID M1S Download"
|
||||
name: "ODROID M1S"
|
||||
manufacturer: "Hardkernel co., Ltd."
|
||||
board_url:
|
||||
- "https://www.hardkernel.com/shop/odroid-m1s-with-8gbyte-ram/"
|
||||
board_image: "odroid_m1s.jpg"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-11-15
|
||||
features:
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
We launched ODROID-M1 about 20 months ago and have supplied it to many B2B and B2C customers. Feedback from many customers requested a lower price, more GPIO ports, lower power consumption, a slimmer form factor, and a variety of practical peripherals.
|
||||
|
||||
We would like to introduce you to the ODROID-M1S which was developed over the past six months to respond to market demands. We made the board about 20% thinner, reduced power consumption by about 20%, added 14 header pins, and a built-in 64GB eMMC chip on the board. We have lowered the price to only $49 including a case, heatsink, and power adapter. We believe this will help significantly reduce the cost of building your own affordable and sustainable embedded systems. To ensure longevity, which is important to customers using it for industrial purposes, we will supply this product until at least 2036.
|
||||
|
||||
By utilizing 3D modeling from the early PCB design stage, we were able to complete case development relatively precisely and rapidly. It will be remembered for a long time as a novel development project in which collaboration between circuit design & mechanical design proceeded quite smoothly.
|
||||
|
||||
Let’s take a look at the main features and peripherals of ODROID-M1S.
|
||||
|
||||
- Rockchip RK3566 CPU
|
||||
- LPDDR4 RAM
|
||||
- 1 x Micro USB2.0 Device only
|
||||
- 1 x RJ45 Ethernet Port (10/100/1000)
|
||||
- 1 x HDMI 2.0
|
||||
- 1 x USB 2.0
|
||||
- 1 x USB 3.0
|
||||
- 1 x USB 2.0 Micro OTG
|
||||
- 1 x DC Power Jack
|
||||
- 1 x M.2 NVMe M-Key PCIe2.1 1-Lane
|
||||
- 40 x GPIO Pins
|
||||
- 1 x MIPI DSI 4Lane
|
||||
- 1 x Mono Speaker Output (1.3W at 8Ω load)
|
||||
- 1 x Built-In 64GB eMMC
|
||||
- 1 x RTC Backup Battery Connector
|
||||
- 1 x Micro SD Slot
|
||||
- 1 x UART for System Console
|
||||
- 2 x System LED Indicators
|
||||
|
||||
## Purchase
|
||||
* [Hardkernel](https://www.hardkernel.com/shop/odroid-m1s-with-8gbyte-ram/)
|
||||
|
|
@ -1,44 +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-03
|
||||
features:
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
ODROID-N2 is a new generation single board computer that is more powerful, more stable, and faster performing than N1.
|
||||
The main CPU of the N2 is based on big.Little architecture which integrates a quad-core ARM Cortex-A73 CPU cluster and a dual core Cortex-A53 cluster with a new generation Mali-G52 GPU.
|
||||
Thanks to the modern 12nm silicon technology, the A73 cores runs at 1.8Ghz without thermal throttling using the stock metal-housing heatsink allowing a robust and quiet computer.
|
||||
The CPU multi-core performance is around 20% faster and the GPU is 10% faster than the N1. The N2’s 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/)
|
||||
|
|
@ -1,39 +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-05-29
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- USB 3.0
|
||||
---
|
||||
|
||||
ODROID-XU4 is powered by ARM® big.LITTLE™ technology, the Heterogeneous Multi-Processing (HMP) solution.
|
||||
|
||||
ODROID-XU4 is a new generation of computing device with more powerful, more energy-efficient hardware and a smaller form factor. Offering open source support, the board can run various flavors of Linux, including the latest Ubuntu 16.04 and Android 4.4 KitKat, 5.0 Lollipop and 7.1 Nougat.
|
||||
By implementing the eMMC 5.0, USB 3.0 and Gigabit Ethernet interfaces, the ODROID-XU4 boasts amazing data transfer speeds, a feature that is increasingly required to support advanced processing power on ARM devices.
|
||||
This allows users to truly experience an upgrade in computing, especially with faster booting, web browsing, networking, and 3D games.
|
||||
|
||||
- Samsung Exynos5422 Cortex™-A15 2Ghz and Cortex™-A7 Octa core CPUs
|
||||
- Mali-T628 MP6(OpenGL ES 3.1/2.0/1.1 and OpenCL 1.2 Full profile)
|
||||
- 2Gbyte LPDDR3 RAM PoP stacked
|
||||
- eMMC5.0 HS400 Flash Storage
|
||||
- 2 x USB 3.0 Host, 1 x USB 2.0 Host
|
||||
- Gigabit Ethernet port
|
||||
- HDMI 1.4a for display
|
||||
- Size : 83 x 58 x 20 mm approx.(excluding cooler)
|
||||
- Power: 5V/4A input
|
||||
- Linux Kernel 4.14 LTS
|
||||
- We guarantee the production of XU4 to year 2021, but expect to continue production long after.
|
||||
|
||||
## Purchase
|
||||
* [Hardkernel](https://www.hardkernel.com/shop/odroid-xu4-special-price/)
|
||||
|
|
@ -1,42 +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-05-29
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- USB 3.0
|
||||
---
|
||||
|
||||
ODROID-XU4Q
|
||||
is powered by ARM® big.LITTLE™ technology, the Heterogeneous Multi-Processing (HMP) solution.
|
||||
|
||||
The ODROID-XU4Q is the same board as the ODROID-XU4 but with a large heatsink instead of a fan which makes it quiet.
|
||||
|
||||
ODROID-XU4 is a new generation of computing device with more powerful, more energy-efficient hardware and a smaller form factor. Offering open source support, the board can run various flavors of Linux, including the latest Ubuntu 16.04 and Android 4.4 KitKat, 5.0 Lollipop and 7.1 Nougat.
|
||||
By implementing the eMMC 5.0, USB 3.0 and Gigabit Ethernet interfaces, the ODROID-XU4 boasts amazing data transfer speeds, a feature that is increasingly required to support advanced processing power on ARM devices.
|
||||
This allows users to truly experience an upgrade in computing, especially with faster booting, web browsing, networking, and 3D games.
|
||||
|
||||
- Samsung Exynos5422 Cortex™-A15 2Ghz and Cortex™-A7 Octa core CPUs
|
||||
- Mali-T628 MP6(OpenGL ES 3.1/2.0/1.1 and OpenCL 1.2 Full profile)
|
||||
- 2Gbyte LPDDR3 RAM PoP stacked
|
||||
- eMMC5.0 HS400 Flash Storage
|
||||
- 2 x USB 3.0 Host, 1 x USB 2.0 Host
|
||||
- Gigabit Ethernet port
|
||||
- HDMI 1.4a for display
|
||||
- Size : 83 x 58 x 20 mm approx.(excluding cooler)
|
||||
- Power: 5V/4A input
|
||||
- Linux Kernel 4.14 LTS
|
||||
- We guarantee the production of XU4 to year 2021, but expect to continue production long after.
|
||||
|
||||
## Purchase
|
||||
* [Hardkernel](https://www.hardkernel.com/shop/odroid-xu4-special-price/)
|
||||
|
|
@ -1,39 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "odyssey_x86j4105"
|
||||
title: "ODYSSEY - X86J4105 Download"
|
||||
name: "ODYSSEY - X86J4105"
|
||||
manufacturer: "SeeedStudio"
|
||||
board_url:
|
||||
- "https://www.seeedstudio.com/ODYSSEY-X86J4105800-p-4445.html"
|
||||
board_image: "odyssey_x86j4105.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-11-28
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- USB 3.0
|
||||
---
|
||||
|
||||
Edge Computing devices are playing an increasingly important role in the field of IoT. Nowadays, a computer is not just a big rectangular black box under the desk, or a small portable device working on your knees. Computers are ubiquitous devices that span calculating, communicating, and data storage. Based on this definition, here we would like to introduce our new product – the ODYSSEY - X86J4105.
|
||||
|
||||
ODYSSEY is a series of SBC (Single Board Computer), allowing you to build Edge Computing applications with ease. The ODYSSEY - X86J4105, based on Intel Celeron J4105, is a Quad-Core 1.5GHz CPU that bursts up to 2.5GHz. It includes all the powerful features of Mini PC such as including an 8GB LPDDR4 RAM, 64GB eMMC Storage(optional), onboard Wi-Fi/BLE, Dual Gigabyte Ethernet Ports, Audio Input and Output, USB Ports, HDMI, SATA Connectors and PCIe, however, within a cost-effective price. With simple connections to Mouse, Keyboard and Monitor to ODYSSEY - X86J4105, you will get a Desktop Mini PC right away. With eMMC versions, you even have the Windows 10 Enterprise pre-installed!
|
||||
|
||||
Just simply connect to a mouse, a keyboard and a monitor with the ODYSSEY – X86J4105, you will get a powerful Desktop Mini PC that can run Windows and Linux OS.
|
||||
|
||||
- Intel® Celeron® J4105, Quad-Core 1.5-2.5GHZ
|
||||
- Dual-Band Frequency 2.4GHz/5GHz WiFi
|
||||
- Intel® UHD Graphics 600
|
||||
- Dual Gigabit Ethernet
|
||||
- Integrated Arduino Coprocessor ATSAMD21 ARM® Cortex®-M0+
|
||||
- Raspberry Pi 40-Pin Compatible
|
||||
- 2 x M.2 PCIe (B Key and M Key)
|
||||
- Support Windows 10 & Linux OS
|
||||
- Compatible with Grove Ecosystem
|
||||
|
||||
## Purchase
|
||||
* [SeeedStudio](https://www.seeedstudio.com/ODYSSEY-X86J4105800-p-4445.html)
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "olimex_a20_lime2"
|
||||
title: "A20-OLinuXino-LIME2 Download"
|
||||
name: "A20-OLinuXino-LIME2"
|
||||
manufacturer: "Olimex"
|
||||
board_url:
|
||||
- "https://www.olimex.com/wiki/A20-OLinuXino-LIME2"
|
||||
board_image: "olimex_a20_lime2.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-12-11
|
||||
features:
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
A20-OLinuXino-LIME2 looks similar to both [A20-OLinuXino-LIME](https://www.olimex.com/wiki/A20-OLinuXino-LIME) and [A10-OLinuXino-LIME](https://www.olimex.com/wiki/A10-OLinuXino-LIME). The major differences between A20-OLinuXino-LIME2 and A20-OLinuXino-LIME are:
|
||||
|
||||
- LIME2 has gigabit Ethernet (GbE), compared to the standard 100Mb Ethernet of the LIME
|
||||
- LIME2 design provides double the RAM memory, compared to the LIME design (1024 vs 512)
|
||||
- Much better routing of DDR3 memory.
|
||||
- Increased the number of layers from 6 in LIME to 8 in LIME2
|
||||
- Corrected pinout of the LCD and GPIO connectors (shields designed for the LIME layout are not compatible with the LIME2 layout)
|
||||
|
||||
|
||||
The A10 and the A20 processors are pin-to-pin compatible. Because of the processor, software-wise the board is closer to [A20-OLinuXino-LIME](https://www.olimex.com/wiki/A20-OLinuXino-LIME) than to the [A10-OLinuXino-LIME](https://www.olimex.com/wiki/A10-OLinuXino-LIME). This resemblance to other designs definitely might speed the development on the board - a lot of software written for A20-OLinuXino-LIME might work out-of-the-box with A20-OLinuXino-LIME2. Additionally, pinout tables, GPIO maps, etc released for A20-OLinuXino-LIME would apply to A20-OLinuXino-LIME2 **(except for the 0.05" step connectors - LCD display and all the GPIOs connectors, which have a different layout compared to both A20-OLinuXino-LIME and A10-OLinuXino-LIME)**.
|
||||
|
||||
A20-OLinuXino-LIME2 features:
|
||||
|
||||
- A20 Cortex-A7 dual-core ARM Cortex-A7 CPU and dual-core Mali 400 GPU
|
||||
- **1GB DDR3 RAM memory**
|
||||
- **1 gigabit native Ethernet**
|
||||
- optional 4GB NAND FLASH memory
|
||||
- SATA connector with 5V SATA power jack
|
||||
- HDMI FullHD 1080p
|
||||
- 2x USB Low-Full-High-Speed hosts with power control and current limiter
|
||||
- USB-OTG with power control and current limiter
|
||||
- LiPo Battery connector with battery-charging capabilities
|
||||
- LCD connector compatible with with 4.3", 7.0", 10.1" LCD modules from Olimex
|
||||
- 160 GPIOs on three GPIO connectors
|
||||
- MicroSD card connector
|
||||
- DEBUG-UART connector for console debug with USB-SERIAL-CABLE-F
|
||||
- status LED
|
||||
- Battery charge status LED
|
||||
- Power LED
|
||||
- 2KB EEPROM for MAC address storage and more
|
||||
- 2 BUTTONS with ANDROID functionality + RESET button
|
||||
- 2 mount holes
|
||||
- 5V input power supply, noise immune design
|
||||
- PCB dimensions: 84 x 60 mm
|
||||
|
||||
## Purchase
|
||||
* [Olimex](https://www.olimex.com/Products/OLinuXino/A20/A20-OLinuXino-LIME2/open-source-hardware)
|
||||
|
|
@ -1,29 +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-04-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)
|
||||
|
|
@ -1,54 +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-05-11
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
Orange Pi 2 is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
|
||||
|
||||
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
|
||||
- Mali400MP2 GPU @600MHz
|
||||
- Supports OpenGL ES 2.0
|
||||
- 1GB DDR3 (shared with GPU)
|
||||
- TF card (Max. 32GB) / MMC card slot
|
||||
- 10/100M Ethernet RJ45
|
||||
- A CSI input connector Camera
|
||||
- Supports 8-bit YUV422 CMOS sensor interface
|
||||
- Supports CCIR656 protocol for NTSC and PAL
|
||||
- Supports SM pixel camera sensor
|
||||
- Supports video capture solution up to 1080p@30fps
|
||||
- MIC
|
||||
- Supports HDMI output with HDCP
|
||||
- Supports HDMI CEC
|
||||
- Supports HDMI 30 function
|
||||
- Integrated CVBS
|
||||
- Supports simultaneous output of HDMI and CVBS
|
||||
- v3.5 mm Jack and HDMI
|
||||
- DC input can supply power, but USB OTG input don’t 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)
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_3"
|
||||
title: "Orange Pi 3 Download"
|
||||
name: "Orange Pi 3"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/Orange%20Pi%203/"
|
||||
board_image: "orange_pi_3.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-01-04
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- Infrared Receiver
|
||||
---
|
||||
|
||||
Orange Pi 3 is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
|
||||
|
||||
### Hardware specification
|
||||
- H6 Quad-core 64-bit 1.8GHZ ARM Cortex™-A53
|
||||
- High-performance multi-core GPU Mali T720
|
||||
- OpenGL ES3.1/3.0/2.0/1.1
|
||||
- Microsoft DirectX 11 FL9_3
|
||||
- ASTC(Adaptive Scalable Texture Compression)
|
||||
- Floating point operation greater than 70 GFLOPS
|
||||
- AP6256, IEEE 802.11 a/b/g/n/ac, BT5.0
|
||||
- 10/100M/1000M , ethernet RJ45
|
||||
- RTL8211
|
||||
- MIC
|
||||
- HDMI 2.0a and 3.5 mm AV Jack
|
||||
- HDMI 2.0a and CVBS
|
||||
- H265/HEVC Main/Main10 profile@Level5.2 High-tier ;4K@60fps, up to 6Kx4K@30fps
|
||||
- H264/AVC BP/MP/HP@level5.1, MVC, 4K@30fps
|
||||
- VP9,Profile 0/2, 4K@30fps
|
||||
- AVS+/AVS JIZHUN profile@level 6.0, 1080P@60fps
|
||||
- Supports RC mode
|
||||
- Supports x1 Gen2(5.0Gbps) lane
|
||||
- Complies with PCI Express Base 2.0 Specification
|
||||
- DC input,MicroUSB (OTG)
|
||||
- AXP805
|
||||
- 1*USB 2.0 Host, 1*USB OTG 2.0
|
||||
- 4*USB 3.0 Host
|
||||
- 26 Pin GPIO
|
||||
|
||||
## Purchase
|
||||
* [Aliexpress](https://pt.aliexpress.com/item/1005001804159295.html)
|
||||
* [Amazon](https://amzn.to/3qGAtOM)
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_4"
|
||||
title: "Orange Pi 4 Download"
|
||||
name: "Orange Pi 4"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-4.html"
|
||||
board_image: "orange_pi_4.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-10-06
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Ethernet
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
Orange Pi 4 is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0. It is highly compact with a dimension of 56 x 91mm.
|
||||
|
||||
### Hardware specification
|
||||
- Rockchip RK3399 (28nm HKMG process)
|
||||
- 6-core ARM® 64-bit processor, main frequency speeds up to 2.0GHz
|
||||
- Based on the large and small size core architecture of big.LITTLE
|
||||
- Dual-core Cortex-A72 (large core) + Quad-core Cortex-A53 (small core)
|
||||
- Mali-T864 GPU
|
||||
- Supports OpenGL ES1.1/2.0/3.0/3.1, OpenVG1.1,OpenCL, DX11, support for AFBC
|
||||
- RK808 PMU
|
||||
- Dual 4GB LPDDR4 + 16GB EMMC Flash
|
||||
- Dual 4GB LPDDR4 +EMMC Flash (Default Empty)
|
||||
- AP6256, IEEE 802.11 a/b/g/n/ac, BT5.0
|
||||
- 10/100/1000Mbps Ethernet (Realtek RTL8211E)
|
||||
- Output: 3.5mm Jack and HDMI2.0a Input: MIC
|
||||
- 1 x HDMI 2.0 (Type-A), Supports 4K@60fps output
|
||||
- 1 x DP 1.2 (Display Port), Supports 4K@60fps output
|
||||
- Supports Dual MIPI-DSI (4 lines per channel
|
||||
- 2 x MIPI-CSI Camera connector (MIPI_RX0, MIPI_TX1/RX1)
|
||||
- 2 x USB2.0 HOST,1x USB3.0 HOST, 1 x USB3.0 Type-C
|
||||
- Support RTC, on-board battery backup interface
|
||||
- 3 pins Debug UART
|
||||
- GPIO1 40 pins(1 x I2S, 2 x I2C, 1 x SPI/UART, 8 x GPIO
|
||||
- GPIO2 24pin PCIE port
|
||||
- Upgrade Key & Reset Key
|
||||
- DC 5V/3A TYPE-C 5V/3A
|
||||
- Power led & Status led
|
||||
- Android 8.1, Ubuntu 16.04, Ubuntu 18.04, Debian 9
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/3ypCBiG)
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_4_lts"
|
||||
title: "Orange Pi 4 LTS Download"
|
||||
name: "Orange Pi 4 LTS"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/orange-pi-4-LTS.html"
|
||||
board_image: "orange_pi_4_lts.jpg"
|
||||
download_instructions: "https://learn.adafruit.com/circuitpython-on-orangepi-linux/circuitpython-orangepi"
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2022-10-06
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Ethernet
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
Orange Pi 4 LTS is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0. It is highly compact with a dimension of 56 x 91mm.
|
||||
|
||||
Orange Pi 4 LTS uses the Rockchip RK3399(28nm HKMG Process), and has 3 GB /4GB LPDDR4 SDRAM, 16GB EMMC Flash(option). It can run Android 8.1,Ubuntu16.04,Ubuntu18.04,Debian9. Orange Pi 4 LTS offers a range of different ports, including HDMI output, 26pin headers, LCD connector, Gbps Ethernet port, 2*USB 2.0, 1*USB 3.0, 1*USB 3.0 TYPE-C, mini PCIE connector etc. It is powered through DC and Type-C. It is a good choice for applications that need strong networking perfomance.
|
||||
|
||||
### Hardware specification
|
||||
- Rockchip RK3399 (4GB) or Rockchip RK3399-T(3GB)
|
||||
- Based on the large and small size of big.LITTLE core architecture:Dual-core Cortex-A72 (large core)+ Quad-core Cortex-A53(small core)
|
||||
- 6-core ARMR64-bit processor ,main frequency speeds up to 1.6GHz(3GB)/1.8 GHz(4GB)
|
||||
- High-performance Multi-core Mali-T860 GPU
|
||||
- Supports OpenGL ES1.1/2.0/3.0/3.1, OpenVG1.1, OpenCL, DX11
|
||||
- Support for AFBC
|
||||
- RK808 PMU
|
||||
- 3 GB /4GB LPDDR4
|
||||
- 16GB EMMC Flash (option)
|
||||
- MicroSD (TF) Card Slot
|
||||
- Support 10/100M/1000M Ethernet (YT8531C)
|
||||
- CDW.20U5622-00
|
||||
- Support IEEE 802.11 a/b/g/n/ac, 2T2R • Support BT 5.0
|
||||
- HDMI 2.0,Supports 4K@60fps output
|
||||
- 1* DP 1.2(Display Port), Supports 4K@60fps output
|
||||
- Supports Dual MIPl-DSI (4 lines Per Channel)
|
||||
- Output: 3.5mm Jack and HDMI2.0a
|
||||
- lnput: MIC
|
||||
- 2 * MIPI-CSl Camera Connector (MIPI_RXO、MIPI_TX1/RX1)
|
||||
- 2 * USB2.0 ,1*USB3.0,1 * USB3.0 Type-C
|
||||
- 3 pins Debug UART
|
||||
- GPIO1 26 pins
|
||||
- Support Mini PCIe port
|
||||
- Upgrade Key & Reset Key
|
||||
- DC 5V/3A or 5V/4A, TYPE-C 5V/4A
|
||||
- Power led & Status led
|
||||
- Android, Ubuntu, Debian
|
||||
|
||||
## Purchase
|
||||
* [Aliexpress](https://www.aliexpress.us/item/3256803525557239.html)
|
||||
* [Amazon](https://amzn.to/3fPtK3l)
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_5"
|
||||
title: "Orange Pi 5 Download"
|
||||
name: "Orange Pi 5"
|
||||
manufacturer: "Shenzhen Xunlong Software CO., Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5.html"
|
||||
board_image: "orange_pi_5.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-05-08
|
||||
features:
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
Orange Pi 5 uses Rockchip RK3588S new generation 8-core 64-bit processor, quad-core A76+quad-core A55, with 8nm process design, up to 2.4GHz main frequency, integrated ARM Mali-G610 GPU, embedded high-performance 3D/2D image acceleration module, built-in NPU with 6Tops computing power, with 4GB/8GB/16GB/32GB (LPDDR4/4x), and up to 8K display processing capability.
|
||||
|
||||
Orange Pi 5 provides abundant interfaces, including HDMI output, GPIO interface, M.2 PCIe2.0, Type-C, Gigabit LAN port, 2*USB2.0, 1*USB3.0, etc.; It can be widely used in tablets, edge computing, artificial intelligence, cloud computing, AR/VR, intelligent security, smart home and other fields, covering AIoT various industries.
|
||||
|
||||
**Specifications**
|
||||
- Rockchip RK3588S (8nm LP process)
|
||||
- 8-core 64-bit processor Big.Little Architecture: 4xCortex-A76 and 4xCortex-A55, Big core cluster is 2.4GHz, and Little core cluster is 1.8GHz frequency.
|
||||
- Arm Mali-G610 MP4 “Odin” GPU Compatible with OpenGL ES1.1/2.0/3.2, OpenCL 2.2 and Vulkan 1.2 3D graphics engine and 2D graphics engine
|
||||
- Built-in AI accelerator NPU with up to 6 TOPS, supports INT4/INT8/INT16 mixed operation
|
||||
- RK806-1 PMU
|
||||
- 4GB/8GB/16GB /32GB(LPDDR4/4x)
|
||||
- QSPI Nor FLASH 16MB MicroSD (TF) Card Slot M.2 M-KEY Socket
|
||||
USB3.0 × 1 USB2.0 × 2 Type-C (USB3.1) ×1
|
||||
- HDMI2.1, up to 8K @60Hz DP1.4 (DisplayPort), DP1.4 and USB3.1 ports are multiplexed, and the port is shared with Type-C 2 * MIPI D-PHY TX 4Lane, configurable up to 4K @60Hz
|
||||
- MIPI CSI 4Lane 2 * MIPI D-PHY RX 4Lane
|
||||
- CODEC: ES8388 3.5mm headphone jack audio input/output Input: Onboard MIC HDMI 2.1 eARC
|
||||
- 10/100/1000Mbps Ethernet
|
||||
- For extending UART, PWM, I2C, SPI, CAN and GPIO interfaces.
|
||||
- Support PCIe NVMe SSD Support custom PCIe Wi-Fi6+BT5.0 module
|
||||
- 1×MaskROM key 1×Recovery key 1×On/Off key
|
||||
- Support Type-C power supply, 5V @ 4A
|
||||
- 3 Pin debug serial port (UART)
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/3LLi7ql)
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_5_plus"
|
||||
title: "Orange Pi 5 Plus Download"
|
||||
name: "Orange Pi 5 Plus"
|
||||
manufacturer: "Shenzhen Xunlong Software CO., Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5-plus.html"
|
||||
board_image: "orange_pi_5_plus.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2023-12-11
|
||||
features:
|
||||
- Ethernet
|
||||
- USB 3.0
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
- USB 3.0
|
||||
---
|
||||
|
||||
Orange Pi 5 Plus uses Rockchip RK3588 8-core 64-bit processor, quad-core A76+quad-core A55, with 8nm process design, up to 2.4GHz main frequency, integrated ARM Mali-G610, built-in 3D GPU, compatible with OpenGL ES1.1/2.0/3.2, OpenCL 2.2 and Vulkan 1.2; embedded NPU supports INT4/INT8/INT16/FP16 mixed computing, with up to 6Tops of computing power, which can meet the edge computing needs of most end devices; 4GB/8GB/16GB LPDDR4/4X memory and eMMC socket, which can be connected with 16GB/32GB/64GB/128GB/256GB eMMC module. Orange Pi 5 Plus supports Orange Pi OS, the official operating system developed by Orange Pi, as well as Android 12, Debian 11, Ubuntu 22.04 and other operating systems.
|
||||
|
||||
Orange Pi 5 Plus provides abundant interfaces, including two HDMl output ports, one HDMl input port , two PCIe extended 2.5G Ethernet ports, an M.2 M-Key slot that supports installation of NVMe SSDs, and an M.2 E-Key slot that supports Wi-Fi6/BT modules. In addition, Orange Pi 5 Plus has two USB 3.0, two USB 2.0, and two Type-C (one of which is a power connector).
|
||||
Orange Pi 5 Plus has a wide range of uses to help embedded system development enthusiasts explore, and is also suitable for enterprises developing mini machine vision systems with multiple Ethernet ports, Orange Pi 5 Plus offers enhanced high-end applications performance experience to meet the needs of product customization in different industries.
|
||||
|
||||
**Specifications**
|
||||
- Rockchip RK3588 (8nm LP process)
|
||||
- 8-core 64-bit processor4 x Cortex-A76(2.4GHz), 4 x Cortex-A55(1.8GHz) and separate NEON co-processors
|
||||
- Arm Mali-G610Built-in 3D GPUCompatible with OpenGL ES1.1/2.0/3.2, OpenCL 2.2 and Vulkan 1.2
|
||||
- Embedded NPU supports INT4/INT8/INT16/FP16 mixed operation, with up to 6Tops computing power
|
||||
- RK806-1
|
||||
- 4GB/8GB/16GB (LPDDR4/4X)
|
||||
- QSPI Nor FLASH: 16MB/32MBMicroSD card slot: up to 128GBeMMC socket: 16GB/32GB/64GB/128GB/256GB eMMC module can be attachedM.2 2280 slot for NVMe SSDs (PCIe 3.0 x4) up to 2,000 MB/s
|
||||
- USB3.0 × 2 USB2.0 × 2 Type-C ×1
|
||||
- 2x HDMI 2.1 out up to 8k@60FPS1x Type-C with DP TX 1.4A,up to 8K@30FPS1x HDMI in with up to 4K@60FPS1 x MIPI DSI TX 4 Lane,up to 4K @60Hz
|
||||
- 1x 6Pin FPC socket
|
||||
- 1XMIPI CSI 4 Lane
|
||||
- CODEC:ES83881xAudio 3.5mm jack with mic1xMIC In1xHDMI 2.1 eARC1xSPK
|
||||
- 2xPCIe 2.5G LAN(RTL8125BG)
|
||||
- 40Pin dual row pins with the following multiplexing functions: UART, I2C, SPI, CAN, I2S, PDM, AUDDSM, SDIO, PWM, GPIO
|
||||
- M.2 connector M key (bottom) for NVMe with PCIe 3.0 x4 lanes 2280 SSD
|
||||
- M.2 connector E key (top) for connectivity with PCIe 2.0 x1/PCM/UART/USB2.0,2230 Wi-Fi6 /BT supported
|
||||
- 1×MaskROM key 1xRecovery 1×on/off key
|
||||
- Support Type-C power supply, 5V@4A
|
||||
- 1x IR receiver tube
|
||||
- RGB LED side light
|
||||
- 5V FAN
|
||||
- 2 Pin: RTC backup battery
|
||||
- 3 Pin debug serial port (UART)
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://amzn.to/46TH8bh)
|
||||
|
|
@ -1,68 +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-01-18
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
What's Orange Pi Lite?
|
||||
It's an open-source single-board computer. It can run Android 4.4, Ubuntu, Debian Image. It uses the AllWinner H3 SoC, and has 512MB DDR3 SDRAM.
|
||||
|
||||
|
||||
|
||||
What can I do with Orange Pi Lite?
|
||||
You can use it to build…
|
||||
A computer
|
||||
A wireless server
|
||||
Games
|
||||
Music and sounds
|
||||
HD video
|
||||
A speaker
|
||||
Android
|
||||
Scratch
|
||||
Pretty much anything else, because Orange Pi is open source
|
||||
|
||||
Who's it for?
|
||||
Orange Pi Lite is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
|
||||
|
||||
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
|
||||
- Mali400MP2 GPU @600MHz
|
||||
- Supports OpenGL ES 2.0
|
||||
- 512MB DDR3 (shared with GPU)
|
||||
- TF card (Max. 32GB) / MMC card slot
|
||||
- WiFi with external antenna
|
||||
- A CSI input connector Camera
|
||||
- Supports 8-bit YUV422 CMOS sensor interface
|
||||
- Supports CCIR656 protocol for NTSC and PAL
|
||||
- Supports SM pixel camera sensor
|
||||
- Supports video capture solution up to 1080p@30fps
|
||||
- MIC
|
||||
- Supports HDMI output with HDCP
|
||||
- Supports HDMI CEC
|
||||
- Supports HDMI 30 function
|
||||
- Integrated CVBS
|
||||
- Supports simultaneous output of HDMI and CVBS
|
||||
- vDC input can supply power, but USB OTG input don’t 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)
|
||||
|
|
@ -1,50 +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-01-18
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
What’s Orange Pi One? 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
|
||||
|
||||
- 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 don’t 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)
|
||||
|
|
@ -4,18 +4,16 @@ board_id: "orange_pi_pc"
|
|||
title: "Orange Pi PC Download"
|
||||
name: "Orange Pi PC"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/orangepipc/"
|
||||
board_url: "http://www.orangepi.org/orangepipc/"
|
||||
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-06-04
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- HDMI
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
|
|
@ -51,3 +49,7 @@ What’s Orange Pi PC?It’s an open-source single-board computer. It can run
|
|||
|
||||
## Purchase
|
||||
* [Aliexpress](https://www.aliexpress.com/store/product/Orange-Pi-PC-linux-and-android-mini-PC-Beyond-Raspberry-Pi-2/1553371_32448079125.html)
|
||||
|
||||
## Contribute
|
||||
|
||||
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).
|
||||
|
|
|
|||
|
|
@ -1,56 +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-03-25
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
What’s Orange Pi PC Plus?
|
||||
|
||||
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 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 don’t 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)
|
||||
|
|
@ -1,73 +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-01-18
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
What's Orange Pi Plus 2E?
|
||||
It's an open-source single-board computer. It can run Android 4.4 , Ubuntu, Debian Image, it uses the AllWinner H3 SoC, and has 2GB DDR3 SDRAM
|
||||
|
||||
|
||||
|
||||
What can I do with Orange Pi Plus 2E?
|
||||
Build…
|
||||
A computer
|
||||
A wireless server
|
||||
Games
|
||||
Music and sounds
|
||||
HD video
|
||||
A speaker
|
||||
Android
|
||||
Scratch
|
||||
Pretty much anything else, because Orange Pi Plus 2E is open source
|
||||
|
||||
Who's it for?
|
||||
Orange Pi Plus 2E is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
|
||||
|
||||
- H3 Quad-core Cortex-A7 H.265/HEVC 4K
|
||||
- Mali400MP2 GPU @600MHz
|
||||
- Supports OpenGL ES 2.0
|
||||
- 2GB DDR3 (shared with GPU)
|
||||
- 16GB EMMC Flash
|
||||
- TF card (Max. 32GB) / MMC card slot
|
||||
- 10/100M Ethernet RJ45
|
||||
- WiFi - Realtek RTL8189ETV, IEEE 802.11 b/g/n
|
||||
- A CSI input connector Camera
|
||||
- Supports 8-bit YUV422 CMOS sensor interface
|
||||
- Supports CCIR656 protocol for NTSC and PAL
|
||||
- Supports SM pixel camera sensor
|
||||
- Supports video capture solution up to 1080p@30fps
|
||||
- MIC
|
||||
- Supports HDMI output with HDCP
|
||||
- Supports HDMI CEC
|
||||
- Supports HDMI 30 function
|
||||
- Integrated CVBS
|
||||
- Supports simultaneous output of HDMI and CVBS
|
||||
- v3.5 mm Jack and HDMI
|
||||
- vDC input can supply power, but USB OTG input don’t 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)
|
||||
|
|
@ -4,17 +4,17 @@ board_id: "orange_pi_r1"
|
|||
title: "Orange Pi R1 Download"
|
||||
name: "Orange Pi R1"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/OrangePiR1/"
|
||||
board_url: "http://www.orangepi.org/OrangePiR1/"
|
||||
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-06-04
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- Dual Ethernet
|
||||
- 26-pin GPIO
|
||||
- 13-pin Expansion
|
||||
---
|
||||
|
||||
What’s Orange Pi R1?It’s 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.
|
||||
|
|
@ -40,3 +40,7 @@ What’s Orange Pi R1?It’s an open-source single-board computer. It can run
|
|||
|
||||
## Purchase
|
||||
* [Aliexpress](https://www.aliexpress.com/item/Orange-Pi-R1-H2-256MB-Quad-Core-Cortex-A7-Open-source-development-board-beyond-Raspberry-Pi/32827494728.html)
|
||||
|
||||
## Contribute
|
||||
|
||||
Have some info to add for this board? Edit the source for this page [here](https://github.com/adafruit/circuitpython-org/edit/master/_blinka/{{ page.board_id }}.md).
|
||||
|
|
|
|||
|
|
@ -1,41 +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-03
|
||||
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)
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_zero2"
|
||||
title: "Orange Pi Zero2 Download"
|
||||
name: "Orange Pi Zero2"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/Orange%20Pi%20Zero2/"
|
||||
board_image: "orange_pi_zero.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2020-02-08
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
---
|
||||
|
||||
Orange Pi Zero2 is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
|
||||
|
||||
- Allwinner H616 64-bit high-performance Quad-core Cortex-A53 processor
|
||||
- Mali G31 MP2
|
||||
- Supports OpenGL ES 1.0/2.0/3.2, OpenCL 2.0
|
||||
- 512 MB/1 GB DDR3 (Shared with GPU)
|
||||
- TF card slot
|
||||
- 2 MB SPI Flash
|
||||
- Support 1000M/100M/10M Ethernet
|
||||
- Onboard Wifi + Bluetooth
|
||||
- AW859A Chip
|
||||
- Support IEEE 802.11 a/b/g/n/ac
|
||||
- Support BT5.0
|
||||
- USB-C interface 5 V/2 A input
|
||||
- 3*USB 2.0 HOST (Two of them are via 13pin interface board)
|
||||
- UART-TX, UART-RX and GND
|
||||
- Power Button(SW602)
|
||||
- 26pin header with I2C, SPI, UART and multiple GPIO ports
|
||||
- 13pin header with 2*USB Host, IR pin, Tv-out, AUDIO (no MIC) and 3 GPIO ports
|
||||
- Power led & Status led
|
||||
- Android 4.4, Lubuntu, Debian, Armbian Image
|
||||
|
||||
## Purchase
|
||||
* [Amazon](https://www.amazon.com/dp/B08M9MWZCQ)
|
||||
* [Aliexpress](https://www.aliexpress.com/item/1005001652164182.html)
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_zero_plus"
|
||||
title: "Orange Pi Zero Plus Download"
|
||||
name: "Orange Pi Zero Plus"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/OrangePiZeroPlus/"
|
||||
board_image: "orange_pi_zero_plus.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2021-01-14
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
What’s Orange Pi Zero Plus?
|
||||
|
||||
It’s an open-source single-board computer. It can run Android 5.1, Ubuntu, Debian image. It uses the AllWinner H5 SoC, and has 512MB DDR3 SDRAM.
|
||||
|
||||
What can I do with Orange Pi Zero Plus?
|
||||
|
||||
Build…
|
||||
A computer
|
||||
A wireless server
|
||||
Games
|
||||
Music and sounds
|
||||
HD video
|
||||
A speaker
|
||||
Android
|
||||
Scratch
|
||||
Pretty much anything else, because Orange Pi Zero Plus is open source
|
||||
|
||||
Who’s it for?
|
||||
|
||||
Orange Pi Zero Plus is for anyone who wants to start creating with technology – not just consuming it. It's a simple, fun, useful tool that you can use to start taking control of the world around you.
|
||||
|
||||
|
||||
- H5 Quad-core Cortex-A53
|
||||
- H5 Mali450 GPU
|
||||
- 512MB DDR3 (shared with GPU)
|
||||
- TF card (Max. 32GB) / Spi flash(2MB)
|
||||
- Realtek RTL8189FTV, IEEE 802.11 b/g/n
|
||||
- 1000M/100M/10M Ethernet RJ45
|
||||
- Supports external board via 13pins
|
||||
- USB OTG can supply power
|
||||
- UART, ground
|
||||
- One USB 2.0 HOST, One USB 2.0 OTG
|
||||
- Power Button(SW602)
|
||||
- 26 Pins Header, compatible with Raspberry Pi B+
|
||||
- 13 Pins Header, with 2x USB, IR pin, AUDIO(MIC, AV)
|
||||
- Power led & Status led
|
||||
- Android5.1, Lubuntu, Debian, Armbian Image
|
||||
|
||||
## Purchase
|
||||
* [AliExpress](https://www.aliexpress.com/item/32828347476.html)
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "orange_pi_zero_plus2_h5"
|
||||
title: "Orange Pi Zero Plus2 (H5 Version) Download"
|
||||
name: "Orange Pi Zero Plus2 (H5 Version)"
|
||||
manufacturer: "Shenzhen Xunlong Software CO.,Limited"
|
||||
board_url:
|
||||
- "http://www.orangepi.org/OrangePiZeroPlus2/"
|
||||
board_image: "orange_pi_zero_plus2_h5.jpg"
|
||||
download_instructions: ""
|
||||
downloads_display: true
|
||||
blinka: true
|
||||
date_added: 2020-11-02
|
||||
features:
|
||||
- Wi-Fi
|
||||
- Bluetooth/BLE
|
||||
- Ethernet
|
||||
- HDMI/DisplayPort
|
||||
- 40-pin GPIO
|
||||
---
|
||||
|
||||
What’s Orange Pi Zero Plus2?
|
||||
|
||||
It’s 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)
|
||||
|
|
@ -1,46 +0,0 @@
|
|||
---
|
||||
layout: download
|
||||
board_id: "pcduino2"
|
||||
title: "pcDuino2 Download"
|
||||
name: "pcDuino2"
|
||||
manufacturer: "LinkSprite"
|
||||
blinka: true
|
||||
board_url:
|
||||
- "https://www.linksprite.com/linksprite-pcduino2/"
|
||||
board_image: "pcduino2.jpg"
|
||||
date_added: 2023-10-27
|
||||
|
||||
---
|
||||
|
||||
As the field of embedded electronics gets more advanced, hobbyists and professionals are both in need of smaller and more powerful computers. The pcDuino2 is a high performance, cost effective mini PC platform that runs full-featured operating systems such as Ubuntu and Android ICS. Now included with the pcDuino2 is a built in Wi-Fi module and Arduino headers (finally with the same architecture as Uno boards) meaning you will no longer need to purchase a separate wireless module or shield adapter for this dev board!
|
||||
|
||||
It’s easy to hook up, just connect 5V power and a keyboard and mouse. The pcDuino2 outputs video to any HDMI enabled TV or monitor via the built in HDMI interface. It was specifically designed to make it easy for the open source community to develop computationally demanding projects using the vast, existing catalog of Arduino Shields.
|
||||
|
||||
An API has been developed for the pcDuino2 that allows the user to access all of the functions that you would expect using simple Arduino-style language.
|
||||
|
||||
**Features:**
|
||||
|
||||
- 1GHz ARM Cortex A8 CPU
|
||||
- GPU: OpenGL ES2.0, OpenVG 1.1 Mali 400 core
|
||||
- 1GB DRAM
|
||||
- Onboard Storage: 4GB Flash, microSD card (TF) slot for up to 32GB
|
||||
- Arduino-Style Peripheral Headers
|
||||
- HDMI Video Output
|
||||
- Linux3.0 + Ubuntu12.04 and Android ICS 4.0 Supported
|
||||
- 0.1" Spaced GPIO Headers
|
||||
- RJ45 Ethernet Connection and On-Board Wi-Fi Module
|
||||
- Power Requirements: 2A @ 5VDC
|
||||
- API to access the following interfaces:
|
||||
- UART
|
||||
- ADC
|
||||
- PWM
|
||||
- GPIO
|
||||
- I2C
|
||||
- SPI
|
||||
- Program in C, C++ with GNU tool chain
|
||||
- Java with Android SDK
|
||||
- Python
|
||||
|
||||
## Purchase
|
||||
* [Sparkfun](https://www.sparkfun.com/products/retired/12749)
|
||||
* [TinySine](https://www.tinyosshop.com/Pcduino2)
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue