“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用...”) |
|||
(未显示同一用户的2个中间版本) | |||
第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 | ||
第66行: | 第69行: | ||
<p style="color: #E87E05;font-size:135%">其他</p> | <p style="color: #E87E05;font-size:135%">其他</p> | ||
*[[Matrix.setBrightness()|setBrightness()]] | *[[Matrix.setBrightness()|setBrightness()]] | ||
+ | *[[Matrix.setLed()|setLed()]] | ||
*[[Matrix.clearDisplay()|clearDisplay()]] | *[[Matrix.clearDisplay()|clearDisplay()]] | ||
*[[Matrix.setColor()|setColor()]] | *[[Matrix.setColor()|setColor()]] | ||
*[[Matrix.getHeight()|getHeight()]] | *[[Matrix.getHeight()|getHeight()]] | ||
*[[Matrix.getWidth()|getWidth()]] | *[[Matrix.getWidth()|getWidth()]] | ||
− | |||
*[[Matrix.drawLine()|drawLine()]] | *[[Matrix.drawLine()|drawLine()]] | ||
*[[Matrix.drawBox()|drawBox()]] | *[[Matrix.drawBox()|drawBox()]] | ||
第84行: | 第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
其他 |