64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)

64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)
64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)64x32 RGB LED Matrix Panel (4mm pitch) (แท้จาก DFRobot)
รหัสสินค้า AS00324
หมวดหมู่ LED / LED Drive
ราคา 3,390.00 บาท
สถานะสินค้า พร้อมส่ง
จำนวน
ชิ้น
หยิบลงตะกร้า
หนังสือรับรองบริษัท
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
ดาวน์โหลด Library และ ตัวอย่าง โค๊ด arduino ใช้งาน


INTRODUCTION

This is a 64x32 RGB LED Matrix Panel, it has 2048 full-color RGB LEDs in all. Each LED can be independently controlled. To control this LED Matrix, at least 13 digital GPIOs are required. 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. You are highly recommended to use microcontrolloers with large RAM and high speed to control this LED, such as Raspberry Pi, Mega 2560. Please note that the Arduino do not supprt all functions as its speed is not enough to run multiple panels.

What’s more, this product is a pure color LED display module with high brightness, long life and no pollution. It can be safely used both indoor and outdoor. This module can be used in harsh environment.

Note: This panel needs a 5V@4A power supply.

 


64x32 Matrix with NodeMCU | DFRobot | NodeMCU

SPECIFICATION

  • Operating voltage:DC 5V
  • Average power consumption:<500W/㎡
  • Maxim Power Consumption :<1000w/㎡
  • Pixel:64*32=2048
  • Level of viewing Angle:≧160°
  • Control mode:Synchronous control
  • Drive mode:1/16 scan rate
  • Repetition frequency:≧60Hz
  • White Balance Brightness:≧1200cd/㎡
  • Refresh frequency :≧300Hz
  • Pixel pitch :4mm
  • Dimension:125mm*250mm
  • Thickness :11mm


DOCUMENTS


SHIPPING LIST

  • 64x32 RGB LED Matrix Panel (4mm pitch) x1
  • IDC to XH2.54 cable x1
  • IDC to IDC cable x1
  • Power supply cable x1

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(Version:1.6.8) Click to Download Arduino IDE from Arduino®.

Connection Diagram

DFR0460 Diagram

16P Interface Diagram

DFR0460 Diagram

Sample Code

Click to download the library Adafruit-GFX-LibraryRGB-matrix-PanelHow 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 library.
* For 32x64 RGB LED matrix.

* @author lg.gang(lg.gang@qq.com)
* @version V1.0
* @date 2016-9-6

* GNU Lesser General Public License.
* See  for details.
* All above must be included in any redistribution
* ****************************************************/
#include  // Core graphics library
#include  // 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.Color333(0, 7, 0));
delay(5000);

// fix the screen with white
matrix.fillRect(0, 0, matrix.width(), matrix.height(), matrix.Color333(7, 7, 7));
delay(5000);

// fix the screen with red
matrix.fillRect(0, 0, matrix.width(), matrix.height(), matrix.Color333(7, 0, 0));
delay(5000);

// fix the screen with blue
matrix.fillRect(0, 0, matrix.width(), matrix.height(), matrix.Color333(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.Color333(7, 7, 0));
delay(5000);

// draw a box in fuchsia
matrix.drawRect(5, 5, 53, 23, matrix.Color333(7, 0, 7));
delay(5000);

// draw a box in yellow
matrix.drawRect(10, 10, 43, 13, matrix.Color333(7, 1, 3));
delay(5000);

// draw an 'X' in red
matrix.drawLine(0, 0, matrix.width()-1, matrix.height()-1, matrix.Color333(7, 0, 0));
matrix.drawLine(matrix.width()-1, 0, 0, matrix.height()-1, matrix.Color333(7, 0, 0));
delay(5000);

// draw a blue circle
matrix.drawCircle(10, 10, 10, matrix.Color333(0, 0, 7));
delay(5000);

// fill a violet circle
matrix.fillCircle(40, 21, 10, matrix.Color333(7, 0, 7));
delay(5000);

// fill the screen with 'black'
matrix.fillScreen(matrix.Color333(0, 0, 0));

// draw some text!
matrix.setTextSize(1); // size 1 == 8 pixels high
matrix.setTextWrap(false); // Don't wrap at end of line - will do ourselves
matrix.setCursor(3, 0); // start at top left, with 3 pixel of spacing
uint8_t w = 0;
char *str = "Welcome ToDFROBOT";
for (w=0; w<10; w++) {
matrix.setTextColor(Wheel(w));
matrix.print(str[w]);
}

matrix.setCursor(13, 8); // next line
for (w=10; w<17; w++) {
matrix.setTextColor(Wheel(w));
matrix.print(str[w]);
}
matrix.println();
matrix.setCursor(2, 16);
matrix.setTextColor(matrix.Color333(7,7,7));
matrix.println("I'm always");

// print each letter with a rainbow color
matrix.setCursor(3, 24);
matrix.setTextColor(matrix.Color333(7,0,0));
matrix.print('B');
matrix.setTextColor(matrix.Color333(7,4,0));
matrix.print('y');
matrix.setTextColor(matrix.Color333(7,7,0));
matrix.print(' ');
matrix.setTextColor(matrix.Color333(4,7,0));
matrix.print('U');
matrix.setTextColor(matrix.Color333(0,7,0));
matrix.print(' ');
matrix.setTextColor(matrix.Color333(0,7,7));
matrix.print("S");
matrix.setTextColor(matrix.Color333(0,4,7));
matrix.print('i');
matrix.setTextColor(matrix.Color333(0,0,7));
matrix.print('d');
matrix.setTextColor(matrix.Color333(4,0,7));
matrix.print("e");
matrix.setTextColor(matrix.Color333(7,0,4));
matrix.println("!");
delay(50000);


}


// Input a value 0 to 24 to get a color value.
// The colours are a transition r - g - b - back to r.
uint16_t Wheel(byte WheelPos) {
if(WheelPos < 8) {
return matrix.Color333(7 - WheelPos, WheelPos, 0);
} else if(WheelPos < 16) {
WheelPos -= 8;
return matrix.Color333(0, 7-WheelPos, WheelPos);
} else {
WheelPos -= 16;
return matrix.Color333(0, WheelPos, 7 - WheelPos);
}
}

Expected Results

The LED module will take turns display: a white point, full screen green, full screen white, full screen red, a yellow rectangle, a fuchsia rectangle, a yellow rectangle, a red X and a blue circle, filled with a purple circle, "Welcome ToDFROBOT I'm always By U Side!"

วิธีการชำระเงิน

ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB

กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ

 

ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ

https://www.arduitronics.com/informpayment

 

บมจ. ธนาคารกสิกรไทย สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 สะสมทรัพย์
ธนาคารทหารไทยธนชาต จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 กระแสรายวัน

เพิ่มเพื่อน

@rfm0967y

ติดต่อสอบถาม

เพิ่มเพื่อน

CATEGORY

Sensors / Modules [1711]

CONTACT US

มือถือ 0887823467 แฟกซ์ 02-0153201

Join เป็นสมาชิกร้านค้า

ร้านArduitronics
ร้านArduitronics
/www.arduitronics.com/
Join เป็นสมาชิกร้าน
2156
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

STATISTICS

หน้าที่เข้าชม15,444,873 ครั้ง
ผู้ชมทั้งหมด5,947,951 ครั้ง
เปิดร้าน21 พ.ค. 2556
ร้านค้าอัพเดท22 ต.ค. 2568

MEMBER

พูดคุย-สอบถาม