DFR0460

DFR0460 Datasheet


64x32 RGB LED Matrix 4mm pitch SKU:DFR0460

Part Datasheet
DFR0460 DFR0460 DFR0460 (pdf)
PDF Datasheet Preview
64x32 RGB LED Matrix 4mm pitch SKU:DFR0460

Introduction

City night is always beautiful. She is just like a charming girl, showing her beauty every time. The colorful light is jewelry, dotted on her dress. This is a 64x32 RGB LED Matrix Panel, it has 2048 full-color RGB LEDs in all. Each LED can be independently addressed and controlled. It requires at least 13 digital GPIOs to control the LED matrix. So the UNO board won’t be a good choice in this application, recommended Mega 2560, Raspberry Pi and the other kinds of microcontroller with large RAM and high speed. The led matrix has 2 IDC connectors DATA_IN, DATA_OUT on the back, you can cascade multiple panels and make a huge screen together. BUT Arduino doesn’t support this function, its speed is not enough to multiple panel. Whats more, It is a high brightness, long life, no pollution, pure color LED display module. It can be used both indoor and outdoor, safety and stability, the module can not be mutually extrusion deformation, also can be used normally in harsh environment

Specification
• Operating 5V
• Average power
• Maxim Power Consumption

• Level of viewing
• Control
• Drive scanning
• Repetition
• White Balance
• Refresh frequency
• Pixel pitch

• Thickness

Board Overview
pin order of DATA-IN and ADTA-OUT is SUPPLY 5V.

DATA-IN and DATA-OUT

Label

Name

Function High R data High G data High B data GND
5 6 7 8 9 10 11 12 13 14 15 16 POWER Label Name 1 VCC 2 VCC 3 GND 4 GND

DR2 DG2 DB2 GND A B C D CLK LAT OE GND

Function 5V GND

Low R data Low G data Low B data GND A line selection B line selection C line selection D line selection CLOCK LATCH Output Enable GND

Tutorial

According to the pinout to connect, then upload the code to MEGA, you will be able to see a beautiful display effect.

Requirements
• Hardware MEGA controller X1 DFR0460 X1 DuPont cables
• Software Arduino IDE Click to Download Arduino IDE from

Connection Diagram

DFR0460 Diagram
16P Interface Diagram

DFR0460 Diagram

Sample Code

Click to download the library Adafruit-GFX-Library. RGB-matrix-Panel. How to install the library?
* *NOTE THIS CAN ONLY BE USED ON A MEGA! NOT ENOUGH RAM ON UNO! * * 64x32 RGB LED Matrix - 4mm pitch * * testshapes demo for RGBmatrixPanel library. * Demonstrates the drawing abilities of the RGBmatrixPanel librar y. * For 32x64 RGB LED matrix.
* * V1.0 * 2016-9-6
* GNU Lesser General Public License. * See for details. * All above must be included in any redistribution * #include <Adafruit_GFX.h> // Core graphics library #include <RGBmatrixPanel.h> // Hardware-specific library
#define CLK 11 #define OE 9 #define LAT 10
#define A A0 #define B A1 #define C A2 #define D A3

RGBmatrixPanel matrix A, B, C, D, CLK, LAT, OE, false, 64 ;
void setup delay 1000 matrix.begin ;
void loop
// draw a pixel in solid white matrix.drawPixel 0, 0, matrix.Color333 7, 7, 7 delay 5000 ;
// fix the screen with green matrix.fillRect 0, 0, matrix.width , matrix.height , matrix.C olor333 0, 7, 0 delay 5000 ;
// fix the screen with white matrix.fillRect 0, 0, matrix.width , matrix.height , matrix.C olor333 7, 7, 7 delay 5000 ;
// fix the screen with red matrix.fillRect 0, 0, matrix.width , matrix.height , matrix.C olor333 7, 0, 0 delay 5000 ;
// fix the screen with blue matrix.fillRect 0, 0, matrix.width , matrix.height , matrix.C olor333 0, 0, 7 delay 5000 // fill the screen with 'black' matrix.fillScreen matrix.Color333 0, 0, 0 ;
// draw a box in yellow
matrix.drawRect 0, 0, matrix.width , matrix.height , matrix.C olor333 7, 7, 0 ;
More datasheets: B81122A1333M | B81122C1152M | B81122C1562M | B81122A1334M | B81122A1223M | B81122A1683M | B81122A1104M | B81122A1154M | B81122A1224M | B81122A1563M


Notice: we do not provide any warranties that information, datasheets, application notes, circuit diagrams, or software stored on this website are up-to-date or error free. The archived DFR0460 Datasheet file may be downloaded here without warranties.

Datasheet ID: DFR0460 508778