8X8 LED 愛心橫移

 1.先安裝函示庫

工具 >> 管理程式庫>>輸入 ledcontrol



2.程式碼如下



#include <LedControl.h>


// 初始化LedControl物件

//  Vcc 接 5V , GND接GND,DIN接到5號腳位,CS接到6號腳位 ,CLK接到7號腳位

LedControl lc = LedControl(5, 7, 6, 1);


byte heart[8] = {

  0b01100110,

  0b11111111,

  0b11111111,

  0b11111111,

  0b01111110,

  0b00111100,

  0b00011000,

  0b00000000

};


void setup() {

  lc.shutdown(0, false);       // 啟動顯示

  lc.setIntensity(0, 8);       // 設定亮度(0到15)

  lc.clearDisplay(0);          // 清除顯示

}


void loop() {

  scrollHeart();

}


void scrollHeart() {

  while (true) {

    for (int shift = 0; shift < 8; shift++) {

      for (int row = 0; row < 8; row++) {

        lc.setRow(0, row, heart[row] >> shift);

      }

      delay(100);

    }

  }

}


留言