點矩陣MAX7219 8X8
發表於 : 2025年 1月 13日, 06:57
列(Row)、 行(Column)(直行橫列)
點矩陣MAX7219 8X8 箭號由左向右
https://atceiling.blogspot.com/2020/11/ ... 8-led.html 參考網址
https://xantorohara.github.io/led-matrix-editor/ 原始網址
https://sites.google.com/jes.mlc.edu.tw ... 97/max7219 吉哥-MAX7219 8x8 LED矩陣
https://swf.com.tw/?p=738 超圖解
https://atceiling.blogspot.com/2019/07/ ... 2-led.html 時鐘串連 setLed(int addr, int row, int col, boolean state);//單顆顯示
clearDisplay(int addr);//清除裝置
lc.setColumn(0,4,B01111110);//代表第4"行"通電,"列"則依據"數值"顯示
lc.setRow(0,4,B01111110);//代表第4"列"通電,"行"則依據"數值"顯示
位移三格的做法
點矩陣MAX7219 8X8 箭號由左向右
https://atceiling.blogspot.com/2020/11/ ... 8-led.html 參考網址
https://xantorohara.github.io/led-matrix-editor/ 原始網址
https://sites.google.com/jes.mlc.edu.tw ... 97/max7219 吉哥-MAX7219 8x8 LED矩陣
https://swf.com.tw/?p=738 超圖解
https://atceiling.blogspot.com/2019/07/ ... 2-led.html 時鐘串連 setLed(int addr, int row, int col, boolean state);//單顆顯示
clearDisplay(int addr);//清除裝置
lc.setColumn(0,4,B01111110);//代表第4"行"通電,"列"則依據"數值"顯示
lc.setRow(0,4,B01111110);//代表第4"列"通電,"行"則依據"數值"顯示
位移三格的做法
for(int row=0;row<8;row++){
byte mover=(Hour_Tens1[row]>>3);
lc.setColumn(1,row,mover);
代碼: 選擇全部
#include <LedControl.h>
// Pin 12:Data in, Pin 11: Clock, Pin 10: CS(Load)
LedControl display = LedControl(12,11,10,1);
const uint64_t R_IMAGES[] = { //往右箭頭
0x0000000100000000,
0x0000010301000000,
0x0001030703010000,
0x0103070f07030100,
0x02060f1f0f060200,
0x040c1f3f1f0c0400,
0x08183f7f3f180800,
0x08183f7f3f180800,
0x10307fff7f301000,
0x2060fefefe602000,
0x40c0fcfcfcc04000,
0x8080f8f8f8808000,
0x0000f0f0f0000000,
0x0000e0e0e0000000,
0x0000c0c0c0000000,
0x0000808080000000,
0x0000000000000000
};
const int R_IMAGES_LEN = sizeof(R_IMAGES)/8;
void setup()
{
display.clearDisplay(0); // 清除螢幕
display.shutdown(0, false); // 關閉省電模式
display.setIntensity(0, 10); // 設定亮度為 8 (介於0~15之間)
}
void displayImage(uint64_t image) {
for (int i = 0; i < 8; i++) {
byte row = (image >> i * 8) & 0xFF;
for (int j = 0; j < 8; j++) {
display.setLed(0, i, j, bitRead(row, j));
}
}
}
int i = 0;
void loop() {
displayImage(R_IMAGES[i]);
if (++i >= R_IMAGES_LEN ) {
i = 0;
}
delay(100);
}