Matrix.clearDisplay()

来自Microduino Wikipedia
Yanglibin@microduino.cc讨论 | 贡献2017年7月26日 (三) 06:25的版本 (创建页面,内容为“{| style="width: 800px;" |- | <p style="color: #666666;font-size:220%">'''Matrix.clearDisplay()'''</p> <br> <p style="color: #E87E05;font-size:135%">描述</p> 用...”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

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();
}

单色点阵: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();
}


其他



返回Sensor-Dot_Matrix-Color界面

返回Sensor-Dot_Matrix-S2界面