“Matrix()”的版本间的差异
第87行: | 第87行: | ||
<br> | <br> | ||
<br> | <br> | ||
− | + | 【[[Dot_Matrix_Reference|返回Dot_Matrix_Reference界面]]】 | |
− |
2017年7月26日 (三) 06:52的最新版本
Matrix(Addr,TYPE)
描述 Matrix用于创建一个Matrix对象的实例,该对象的名称在代码中用到。
参数
示例
#include <Microduino_Matrix.h>
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x1
{64} //点阵IIC地址
};
Matrix display = Matrix(Addr, TYPE_COLOR); //TYPE_COLOR or TYPE_S2
#include <Microduino_Matrix.h>
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x1
{64} //点阵IIC地址
};
Matrix display = Matrix(Addr, TYPE_S2); //TYPE_COLOR or TYPE_S2
#include <Microduino_Matrix.h>
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //1x1
{ 64, 63, 62 , 61} //点阵IIC地址
};
Matrix display = Matrix(Addr, TYPE_COLOR); //TYPE_COLOR or TYPE_S2
64,63,
#include <Microduino_Matrix.h>
uint8_t Addr[MatrixPix_X][MatrixPix_Y] = { //2x2
{ 64, 63},
{ 62, 61}
};
Matrix display = Matrix(Addr, TYPE_COLOR); //TYPE_COLOR or TYPE_S2
其他 |