“Matrix()”的版本间的差异
(创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''Matrix(Addr,TYPE)'''</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> Matrix用...”) |
|||
第38行: | 第38行: | ||
<br> | <br> | ||
*创建4个彩色点阵,横行级联,点阵地址分别是64,63,62,61 | *创建4个彩色点阵,横行级联,点阵地址分别是64,63,62,61 | ||
+ | [[file: Sensor_Matrix-1*4.JPG|400px|left]] | ||
+ | <br style="clear: left"/> | ||
<source lang="c++"> | <source lang="c++"> | ||
#include <Microduino_Matrix.h> | #include <Microduino_Matrix.h> | ||
第52行: | 第54行: | ||
<br> | <br> | ||
62,61 | 62,61 | ||
− | + | [[file: Sensor_Matrix-2*2.JPG|200px|left]] | |
+ | <br style="clear: left"/> | ||
<source lang="c++"> | <source lang="c++"> | ||
#include <Microduino_Matrix.h> | #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 | Matrix display = Matrix(Addr, TYPE_COLOR); //TYPE_COLOR or TYPE_S2 |
2017年7月24日 (一) 10:06的版本
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
其他 |