Giter VIP home page Giter VIP logo

adafruit-rgb-matrix-hat-pcb's Introduction

Adafruit RGB Matrix HAT PCB


Click here to purchase one from the Adafruit shop

PCB files for the Adafruit RGB Matrix HAT. Format is EagleCAD schematic and board layout

DESCRIPTION

You can now create a dazzling display with your Raspberry Pi Model Zero/A+/B+/Pi 2 or Pi 3 with the Adafruit RGB Matrix HAT. This HAT plugs into your Pi and makes it super easy to control RGB matrices such as those we stock in the shop and create a colorful scrolling display or mini LED wall with ease.

This HAT is our finest to date, full of some really great circuitry. Let me break it down for you:

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 Works with any of our 16x32, 32x32, 32x64 or 64x64 RGB LED Matrices with HUB75 connections. You can even chain multiple matrices together for a longer display, you can chain as many as you like but the bigger the display the harder it is on the Pi so keep that in mind! We don't recommend more than 64x128 pixel setups

As of October 2018, we now sell a version that can be used with 64x64 pixel matrices that have an 'E' address pin!

Please note: this HAT is only for use with HUB75 type RGB Matrices. Not for use with NeoPixel, DotStar, or other 'addressable' LEDs.

License

Adafruit invests time and resources providing this open source design, please support Adafruit and open-source hardware by purchasing products from Adafruit.com!

Creative Commons Attribution, Share-Alike license, check license.txt for more information All text above must be included in any redistribution - See license.txt for more information.

adafruit-rgb-matrix-hat-pcb's People

Contributors

thekitty avatar ladyada avatar makermelissa avatar

Stargazers

 avatar jcarduc1 avatar Yongli He avatar Byungwoo Kim avatar

Watchers

Scott Shawcroft avatar Kevin Townsend avatar James Cloos avatar Paint Your Dragon avatar  avatar Tony DiCola avatar Tyler Cooper avatar  avatar  avatar

adafruit-rgb-matrix-hat-pcb's Issues

Want to Scroll Array in 8x8 Matrix

Hello Dear Master,
i want to scroll an Array in this code horizontaly and vertically 8x8 matrix plz help me

#include <Adafruit_NeoPixel.h>
#define PIN 6
#define MAX_LED 64
uint32_t LEDColour;
unsigned char x = 0;
unsigned char Colour[3];
unsigned char heart[10] = {12, 13, 17, 20, 26, 29, 33, 36, 44, 45};

Adafruit_NeoPixel strip = Adafruit_NeoPixel( MAX_LED, PIN, NEO_RGB + NEO_KHZ800 );
void setup() {
// put your setup code here, to run once:
strip.begin();
//
strip.show();
}

void loop() {

for (char number = 0; number < 64; number++) //
strip.setPixelColor(number, 0);
strip.show();//

// delay(1000);
for (char number = 0; number < 10; number++) //
strip.setPixelColor(heart[number], 255,0,0); // i want to scroll that heart array
strip.show();//
delay(1000);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.