Display Class for BaseMachine

Revision:
7:13a13dd9a00b
Parent:
6:ec1d00fa9835
Child:
8:2a06c35302e7
--- a/ST7565_SequencerDisplay.h	Sun Aug 28 07:40:02 2016 +0000
+++ b/ST7565_SequencerDisplay.h	Fri Sep 09 02:49:40 2016 +0000
@@ -109,16 +109,16 @@
     };
     
     virtual void displayWhileRun(int step) {
-        gLCD->fillrect((step-1) * 7, 1, 7, 1, 0);
+        gLCD->clear();
+        //gLCD->fillrect((step-1) * 7, 1, 7, 1, 0);
         gLCD->fillrect(step * 7, 1, 7, 1, 1);
         //gLCD->display();
-        /*
+        
         char buff[32];
         sprintf(buff, "%d ", step);
-        gLCD->clear();
+        //gLCD->clear();
         gLCD->drawstring(0, 0, buff);
         gLCD->display();
-        */
     }
     
     void displayParams(int step) {