LT-5016M1を74HC595で制御します。文字スクロールなどの参考にどうぞ。

Dependencies:   mbed

制作の過程はNotebookに書いています。

Revision:
18:f18a00a1abf6
Parent:
3:68075c4a9ab4
Child:
23:cd3fbfbcc190
--- a/main.cpp	Mon Sep 19 13:05:45 2016 +0000
+++ b/main.cpp	Sun Oct 02 14:13:23 2016 +0000
@@ -35,7 +35,7 @@
         } else if(scan == 1) {
             SER = 1; // 消灯
         }
-        for(int i=0; i<8; i++) spi.write(0x00000001 << scroll%8);
+        for(int i=0; i<4*11; i++) spi.write(0x00000001 << scroll%8);
         if(scan == 16) scroll++;
         if(scroll > 8*8-1) scroll = 0;