New ada fruit boards

This commit is contained in:
geek2003 2017-02-25 19:46:31 +00:00 committed by GitHub
parent 2ef3bd54f4
commit 0094ce80b4
3 changed files with 184 additions and 0 deletions

View File

@ -0,0 +1,62 @@
<!--
---
name: Adafruit RGB Matrix HAT + RTC
class: board
type: LED
formfactor: HAT
manufacturer: Adafruit
description: Run large HUB75 matrices of a Raspberry Pi
url: https://learn.adafruit.com/adafruit-rgb-matrix-plus-real-time-clock-hat-for-raspberry-pi
buy: https://www.adafruit.com/products/2345
image: adafruit_rgb_matrix.png
pincount: 40
eeprom: yes
power:
'1':
'2':
ground:
'6':
pin:
'3':
mode: I2C
'5':
mode: I2C
'29':
'33':
'31':
'32':
'36':
'16':
'7':
'11':
'40':
'15':
'37':
'13':
'38':
i2c:
'0x68':
name: DS1307
device: DS1307
-->
#Adafruit RGB Matrix HAT + RTC
This HAT plugs into your Pi and makes it super easy to control RGB matrices such as those you see in the likes of Times square enabling you to create a colorful scrolling display or mini LED wall with ease. A 5V power supply is also required, not included, for powering the matrix itself. The Pi cannot do it due to the high currents. To calculate the max current of your matrix set up, multiply the width of all the chained matrix by 0.12 : A 32 pixel wide matrix needs 32*0.12 = 3.85A so pick up a 5V 4A power supply. Please note: this HAT is only for use with HUB75 type RGB Matrices. Not for use with NeoPixel, DotStar, or other 'addressable' LEDs.
Features:
Simple design - plug in power, plug in IDC cable, run our Python code!
Power protection circuitry - you can plug a 5V 4A wall adapter into the HAT and it will automatically protect against negative, over or under-voltages! Yay for no accidental destruction of your setup.
Onboard level shifters to convert the RasPi's 3.3V to 5.0V logic for clean and glitch free matrix driving
DS1307 Real Time Clock can keep track of time for the Pi even when it is rebooted or powered down, to make for really nice time displays
To install:
```bash
sudo apt-get update
sudo apt-get install python-dev python-imaging
wget https://github.com/adafruit/rpi-rgb-led-matrix/archive/master.zip
unzip master.zip
cd rpi-rgb-led-matrix-master/
make
```

View File

@ -0,0 +1,55 @@
<!--
---
name: DC & Stepper Motor HAT
class: board
type: Motor
formfactor: HAT
manufacturer: Adafruit
description: Drive 4 DC Motors or 2 Stepper Motors with a raspberry pi.
url: https://learn.adafruit.com/adafruit-dc-and-stepper-motor-hat-for-raspberry-pi
buy: https://www.adafruit.com/products/2348
image: motor.png
pincount: 40
eeprom: yes
power:
'17:
1:
ground:
9:
25:
39:
34:
30:
20:
14:
6:
pin:
3:
mode:SDA
5:
mode:SCL
-->
Let your robotic dreams come true with the new DC+Stepper Motor HAT from Adafruit. This Raspberry Pi add-on is perfect for any motion project as it can drive up to 4 DC or 2 Stepper motors with full PWM speed control.
Since the Raspberry Pi does not have a lot of PWM pins, we use a fully-dedicated PWM driver chip onboard to both control motor direction and speed. This chip handles all the motor and speed controls over I2C. Only two pins (SDA & SCL) are required to drive the multiple motors, and since it's I2C you can also connect any other I2C devices or HATs to the same pins. In fact, you can even stack multiple Motor HATs, up to 32 of them, for controlling up to 64 stepper motors or 128 DC motors (or a mix of the two)
Specs:
4 H-Bridges: TB6612 chipset provides 1.2A per bridge with thermal shutdown protection, internal kickback protection diodes. Can run motors on 4.5VDC to 13.5VDC.
Up to 4 bi-directional DC motors with individual 8-bit speed selection (so, about 0.5% resolution)
Up to 2 stepper motors (unipolar or bipolar) with single coil, double coil, interleaved or micro-stepping.
Polarity protected 2-pin terminal block and jumper to connect external 5-12VDC power
To install:
```bash
git clone https://github.com/adafruit/Adafruit-Motor-HAT-Python-Library.git
cd Adafruit-Motor-HAT-Python-Library
sudo apt-get install python-dev
sudo python setup.py install
```

View File

@ -0,0 +1,67 @@
<!--
---
name: Adafruit Arcade Bonnet
class: board
type: IO
formfactor: PHAT
manufacturer: Adafruit
description: Connect joystick,buttons and speakers to your pi
url: https://learn.adafruit.com/adafruit-arcade-bonnet-for-raspberry-pi
buy: https://www.adafruit.com/products/3422
image: arcade_bonnet.png
pincount: 40
eeprom: no
power:
'2':
'1':
'4':
'17':
ground:
'6':
'9':
'14':
'20':
'30':
'34':
'39':
'25':
pin:
'3':
mode:SDA
'5':
mode:SCL
'11':
mode:I2S
'12':
mode:I2S
'35':
mode:I2S
'40':
mode:I2S
i2c:
'0x26':
name: MCP23017
device: MCP23017
-->
#Adafruit Arcade Bonnet
This Adafruit Arcade Bonnet is designed to make small emulator projects a little easier to build. Here is some features!:
It is the same size as a Pi Zero, so for really compact builds, this is super small. You can use it with a Pi 2, 3, B+ or any 2x20 connector Pi.
It has JST sockets so you can plug in six arcade buttons easily
Header breakouts for use with both clicky-type switched joysticks and...
Header breakout and converter for using analog-type joysticks or thumbsticks with potentiometers inside
A 3W speaker output that can drive 4-8 ohm speakers for when using with a TV output, HDMI display or PiTFT
Switches are all managed with an I2C-GPIO converter with interrupt out. The converter is very fast and frees up all the pins so you can use this Bonnet with a PiTFT or any other accessory/device that uses a lot of pins!
To install:
```bash
curl -O https://raw.githubusercontent.com/adafruit/Raspberry-Pi-Installer-Scripts/master/arcade-bonnet.sh
sudo bash arcade-bonnet.sh
curl -sS https://raw.githubusercontent.com/adafruit/Raspberry-Pi-Installer-Scripts/master/i2samp.sh | bash
```