“Matrix.setLed()”的版本间的差异
第38行: | 第38行: | ||
} | } | ||
} | } | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
} | } | ||
</source> | </source> | ||
第64行: | 第68行: | ||
} | } | ||
} | } | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
} | } | ||
</source> | </source> |
2017年7月26日 (三) 07:16的最新版本
Matrix. setLed(x,y,sta)
描述 用来清除整个屏幕。
参数
返回值 无 示例 彩色点阵:Sensor-Dot Matrix-Color/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);
//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);
}
}
}
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_COLOR); //TYPE_COLOR or TYPE_S2
void setup() {
Wire.begin();
display.setBrightness(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);
}
}
}
void loop() {
}
其他 |