Adafruit-RGB_matrix_Panel(32*16)

Dependencies:   Adafruit-GFX

Files at this revision

API Documentation at this revision

Comitter:
lelect
Date:
Sun May 25 11:40:55 2014 +0000
Parent:
5:1f8409ee8850
Child:
8:6d98c8cd8045
Commit message:
test feature

Changed in this revision

RGBmatrixPanel.cpp Show annotated file Show diff for this revision Revisions of this file
RGBmatrixPanel.h Show annotated file Show diff for this revision Revisions of this file
--- a/RGBmatrixPanel.cpp	Sun May 25 11:30:30 2014 +0000
+++ b/RGBmatrixPanel.cpp	Sun May 25 11:40:55 2014 +0000
@@ -68,7 +68,7 @@
 
     // Set up Timer for interrupt:
 #ifndef DEBUG
-    _refresh.attach_us(this,(&RGBmatrixPanel::updateDisplay),100);   //updateDisplay() called every 1ms
+    _refresh.attach_us(this,(&RGBmatrixPanel::updateDisplay),200);   //updateDisplay() called every 1ms
 #else
     _refresh.attach(this,(&RGBmatrixPanel::updateDisplay),0.5);   //updateDisplay() called every 2s
 #endif
--- a/RGBmatrixPanel.h	Sun May 25 11:30:30 2014 +0000
+++ b/RGBmatrixPanel.h	Sun May 25 11:40:55 2014 +0000
@@ -48,6 +48,7 @@
     void init(uint8_t rows, bool dbuf);
 
     BusOut _dataBus;
+    
     BusOut _rowBus;
     DigitalOut _d,_sclk, _latch, _oe;
     Ticker _refresh;