網站選單
自 109 / 2 /25 起啟用
#include "LedControl.h"
// Pin 12:Data in, Pin 11: Clock, Pin 10: CS(Load)
LedControl lc=LedControl(12,11,10,1);
void setup()
{
lc.shutdown(0,false); // 關閉省電模式
lc.setIntensity(0,8); // 設定亮度為 8 (介於0~15之間)
lc.clearDisplay(0); // 清除螢幕
}
void loop()
{
int randNumber_row = random(8);
lc.setRow(0,randNumber_row,B11111111);
delay(1000);
lc.setRow(0,randNumber_row,B00000000);
delay(1000);
}