Akizuki 32x16 dot LED Matrix unit (K-03735) control library.

秋月電子の32×16ドットLEDマトリクス表示装置(K-03735)を制御するライブラリです。
バッファの内容をそのままLEDマトリクス装置に送ります。
LEDマトリクス表示装置は最大4台まで接続できるので、接続台数を必ず指定してください。(この台数でバッファのサイズを計算しています。)
行間表示は1msのdelayを入れています。パラメタで変更可能です。
このライブラリの呼び出し元は基本的にwhile()でループしてください。
初めてのライブラリなのでメンバ関数もドキュメントとかまだ最低限です。
おかしなところはぜひコメントをください。

表示例は以下ページをご覧ください。

Revision:
5:c055674c4a0b
Parent:
4:920c540c6a61
Child:
7:2daedb892e15
--- a/akiledmatrix.h	Wed Jun 05 14:28:10 2013 +0000
+++ b/akiledmatrix.h	Sun Jun 09 05:24:11 2013 +0000
@@ -24,7 +24,11 @@
  * // 9 GND
  * // 10 GND
  *
- * AkiLedMatrix ledmatrix(p5, p6, p7, p8, p9, p10, 1);
+ * // ledunit = 8
+ * // dynamic_delay = 1000
+ * // scroll_delay = 50
+ *
+ * AkiLedMatrix ledmatrix(p5, p6, p7, p8, p9, p10, 1, 1000, 50);
  * 
  * int main() {
  *    const unsigned char buf[] = {
@@ -45,14 +49,13 @@
  *    0xff,0xff,0xff,0xff,  // D1
  *    0xff,0xff,0xff,0xff}; // D0
  * 
- *    int delay = 1000; // dynamic time (us)
- *    
  *    while(1){
- *        ledmatrix.display(buf, delay);
+ *        ledmatrix.display(buf);
  *    }
  * }
  * @endcode
  */
+
 class AkiLedMatrix {
 public:
     /** Create AkiLedMatrix instance
@@ -62,7 +65,9 @@
      * @param clock CLOCK IN
      * @param latch LATCH IN
      * @param strobe STROBE IN
-     * @param ledunit The number of LED units. 
+     * @param ledunit Number of LED units
+     * @param delay Dynamic display delay in microseconds
+     * @param shift_count_init scroll timing 
      */
     AkiLedMatrix(PinName sin1,
                  PinName sin2,
@@ -70,20 +75,43 @@
                  PinName clock,
                  PinName latch,
                  PinName strobe,
-                 int ledunit);
+                 const int ledunit,
+                 const int delay,
+                 const int shift_count_init);
                                   
-     /** Displays the contents of the buffer
-      *
-      * @param buffer Display buffer
-      * @param delay  Dynamic display delay in microseconds
-      * @returns
-      *        void
-      */
-     void display(const unsigned char *buffer, int delay = 1000);
+    /** Displays the contents of the buffer
+     *
+     * @param buffer Display buffer
+     * @returns
+     *        void
+     */
+    void display(unsigned char *buffer);
+
+    /** Get LED unit number
+     *
+     * @param
+     *        void
+     * @returns
+     *        number of LED units
+     */
+    int getLedunit();
  
 private:
+    /** bit left shift
+     *
+     * @param
+     *        unsigned char *array LED display buffer
+     *        int xsize row char size
+     * @returns
+     *        void
+     */
+    void bitshift(unsigned char *array, int xsize);
+
     DigitalOut _sin1,_sin2,_sin3,_clock,_latch,_strobe;
-    int _ledunit;
+    const int _ledunit;
+    const int _delay;
+    const int _shift_count_init;
+    int shift_count;
 };
  
-#endif
\ No newline at end of file
+#endif