“Matrix.clearDisplay()”的版本间的差异
(未显示同一用户的3个中间版本) | |||
第5行: | 第5行: | ||
<br> | <br> | ||
<p style="color: #E87E05;font-size:135%">描述</p> | <p style="color: #E87E05;font-size:135%">描述</p> | ||
− | + | 用来清屏整个屏幕。 | |
<br> | <br> | ||
<p style="color: #E87E05;font-size:135%">参数</p> | <p style="color: #E87E05;font-size:135%">参数</p> | ||
第39行: | 第39行: | ||
delay(1000); | delay(1000); | ||
display.clearDisplay(); | display.clearDisplay(); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
} | } | ||
</source> | </source> | ||
第68行: | 第72行: | ||
delay(1000); | delay(1000); | ||
display.clearDisplay(); | display.clearDisplay(); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
} | } | ||
</source> | </source> | ||
第73行: | 第81行: | ||
<p style="color: #E87E05;font-size:135%">其他</p> | <p style="color: #E87E05;font-size:135%">其他</p> | ||
*[[Matrix.setBrightness()|setBrightness()]] | *[[Matrix.setBrightness()|setBrightness()]] | ||
+ | *[[Matrix.getHeight()|getHeight()]] | ||
+ | *[[Matrix.getWidth()|getWidth()]] | ||
*[[Matrix.setLed()|setLed()]] | *[[Matrix.setLed()|setLed()]] | ||
*[[Matrix.setColor()|setColor()]] | *[[Matrix.setColor()|setColor()]] | ||
− | |||
− | |||
*[[Matrix.drawLine()|drawLine()]] | *[[Matrix.drawLine()|drawLine()]] | ||
*[[Matrix.drawBox()|drawBox()]] | *[[Matrix.drawBox()|drawBox()]] | ||
第90行: | 第98行: | ||
<br> | <br> | ||
<br> | <br> | ||
− | + | 【[[Dot_Matrix_Reference|返回Dot_Matrix_Reference界面]]】 | |
− |
2017年7月26日 (三) 07:16的最新版本
Matrix.clearDisplay()
描述 用来清屏整个屏幕。
参数 无 返回值 无 示例 彩色点阵:Sensor-Dot Matrix-Color/zh清屏 #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
void setup() {
Wire.begin();
display.setBrightness(255);
//display.setLedBrightness(x, y, random(0, 255));
//setLed
display.clearDisplay();
for (int y = 0; y < display.getHeight() * 8; y++) {
for (int x = 0; x < display.getWidth() * 8; x++) {
display.setLed(x, y, true); //x, y, sta
delay(20);
}
}
delay(1000);
display.clearDisplay();
}
void loop() {
}
单色点阵:Sensor-Dot Matrix-S2/zh清屏 #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
void setup() {
Wire.begin();
display.setBrightness(255);
//display.setLedBrightness(x, y, random(0, 255));
//setLed
display.clearDisplay();
for (int y = 0; y < display.getHeight() * 8; y++) {
for (int x = 0; x < display.getWidth() * 8; x++) {
display.setLed(x, y, true); //x, y, sta
delay(20);
}
}
delay(1000);
display.clearDisplay();
}
void loop() {
}
其他 |