Difference between revisions of "Sensor-Dot Matrix-Color"
From Microduino Wiki
m (Fengfeng moved page Sensor-Module Dot Matrix to Sensor-Dot Matrix-Color) |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
The product number of Microduino-Dot Matrix is: '''MSDL31''' | The product number of Microduino-Dot Matrix is: '''MSDL31''' | ||
− | Microduino-Dot Matrix is a 8x8 colorful LED | + | Microduino-Dot Matrix is a 8x8 colorful LED dot matrix displaying module, which can be used singly or by the cascade of multiple(combine into different shapes), to display text or images, or even simple animation. |
==Features== | ==Features== | ||
Line 15: | Line 15: | ||
==Specification== | ==Specification== | ||
+ | {{ST_Pinout | ||
+ | |st_name=Color Dot Matrix | ||
+ | |pin3=IIC SDA | ||
+ | |pin4=IIC SCL | ||
+ | }} | ||
+ | |||
*Sensor voltage | *Sensor voltage | ||
**5V working voltage | **5V working voltage | ||
Line 32: | Line 38: | ||
*Connection | *Connection | ||
**This sensor can be connected to the I2C interface of the core. | **This sensor can be connected to the I2C interface of the core. | ||
− | **The cascade of multiple sensors is supported, 64 at most. | + | **The cascade of multiple sensors is supported, 64 at most. |
==Documents== | ==Documents== | ||
− | *Schematic diagram: [[File:Dot Matrix-Color PCB]] | + | *Schematic diagram: [[File:Sensor-Dot Matrix-Color PCB]] |
*You can experiment with the sample programs in the following IDE libraries on your own : [https://github.com/wasdpkj/Microduino-IDE-Support/tree/master/arduino-ide-Support/%5B1.6.x%5D-hardware(library)/hardware/Microduino/avr/libraries '''_01_Microduino_DotMatrix'''] | *You can experiment with the sample programs in the following IDE libraries on your own : [https://github.com/wasdpkj/Microduino-IDE-Support/tree/master/arduino-ide-Support/%5B1.6.x%5D-hardware(library)/hardware/Microduino/avr/libraries '''_01_Microduino_DotMatrix'''] | ||
==Development== | ==Development== | ||
===Program Download=== | ===Program Download=== | ||
− | *Download and unzip the program '''[[File:Dot Matrix-Color.zip]]''' | + | *Download and unzip the program '''[[File:Sensor-Dot Matrix-Color Test.zip]]''' |
+ | |||
===Programming=== | ===Programming=== | ||
{{Upload | {{Upload | ||
Line 64: | Line 71: | ||
==Introduction of the Code== | ==Introduction of the Code== | ||
− | *Define the IIC address single dot matrix | + | *Define the IIC address of single dot matrix |
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x1 | uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x1 | ||
{ 64} | { 64} | ||
Line 104: | Line 111: | ||
setColor(_r, _g, _b) //red, green ,blue | setColor(_r, _g, _b) //red, green ,blue | ||
− | *The characters are displayed | + | *The characters are displayed as follow. |
writeString(_c, _t, _col) //[char*], time, col | writeString(_c, _t, _col) //[char*], time, col | ||
Latest revision as of 06:32, 4 August 2017
Language: | English • 中文 |
---|
The product number of Microduino-Dot Matrix is: MSDL31 Microduino-Dot Matrix is a 8x8 colorful LED dot matrix displaying module, which can be used singly or by the cascade of multiple(combine into different shapes), to display text or images, or even simple animation. ContentsFeatures
Specification
Documents
DevelopmentProgram Download
Programming
Hardware Setup
Method to Set the Address of the Dot Matrix
Introduction of the Code
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x1 { 64} };
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //2x2 { 64, 63}, { 62, 61} };
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x4 { 64, 63, 62 , 61} };
int16_t getMatrixNum()
getDeviceAddr(_a) //num
getWidth()
getHeight()
setLed(_row, _col, _state) //row, col, state
setLedColor(_row, _col, _r, _g, _b) //row, col, red, green ,blue
clearDisplay()
setColor(_r, _g, _b) //red, green ,blue
writeString(_c, _t, _col) //[char*], time, col
drawBMP(_row, _col , _w, _h, logo) //row, col, width, height, file
drawBMP(_row, _col, logo) //row, col, file
drawBox(_row, _col, _w, _h) //row, col, width, height
drawRBox(_row, _col, _w, _h, _r) //row, col, width, height, rad
drawFrame(_row, _col, _w, _h) //row, col, width, height
drawRFrame(_row, _col, _w, _h, _r) //row, col, width, height, rad
drawCircle(_row, _col, _r) //row, col, rad
drawDisc(_row, _col, _r) //row, col, rad
drawLine(_row, _col, _row1, _col1) //row start, col start, row end, col end ApplicationGallery |