Text console library for ST7565 graphics LCD controller over SPI interface.

Dependents:   TextLCD_ST7565SPI_Test OpPanel_Offline OpPanel_Offline_cmake_gcc_arm_NUCLEO_F303RENew

Revision:
1:a32310f5dab1
Parent:
0:1ea133b6a4de
Child:
2:5a627a1745f2
--- a/TextLCD_ST7565SPI.cpp	Mon Mar 02 23:10:13 2015 +0000
+++ b/TextLCD_ST7565SPI.cpp	Tue Mar 03 00:23:54 2015 +0000
@@ -262,6 +262,10 @@
             _row++;
         }
         break;
+    case '\f':  // Form feed
+        // Clear screen
+        cls();
+        break;
     default:
         // Break line if the cursor reaches end
         if (_column == _columns) {