Difference between revisions of "Sensor-Dot Matrix-S2"
From Microduino Wiki
(→Specification) |
|||
Line 27: | Line 27: | ||
**8x8 dot matrix | **8x8 dot matrix | ||
**The brightness of each point is 32-grade adjustable | **The brightness of each point is 32-grade adjustable | ||
− | *Supports IIC communication protocol, the IIC address is settable(1~64), and the dot matrix sequence adopts rectangular plane coordinate system. | + | **Supports IIC communication protocol, the IIC address is settable(1~64), and the dot matrix sequence adopts rectangular plane coordinate system. |
− | *With 2 IIC interfaces onboard, which make the cascade of multiple dot matrix easy. | + | **With 2 IIC interfaces onboard, which make the cascade of multiple dot matrix easy. |
*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== |
Revision as of 08:05, 8 November 2016
Language: | English • 中文 |
---|
The product number of Microduino-Dot Matrix-S2 is: MSDL32 Microduino-Dot Matrix-S2 is a 8x8 single color 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
setLedBrightness(_row, _col, _value) //row, col, value
clearDisplay()
setBrightness(_value) //value
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 |