Combines locate fix, show/hide cursor + Justin Jordans additions

Fork of Terminal by Justin Jordan

Revision:
4:4510b10fb5d9
Parent:
3:7c269f52ad77
Child:
6:419eea2fe960
--- a/Terminal.cpp	Mon Mar 28 23:48:32 2016 +0000
+++ b/Terminal.cpp	Tue Apr 12 22:05:59 2016 +0000
@@ -30,6 +30,10 @@
     this->printf("\033[2J");
 }
 
+void Terminal::home(){
+    this->printf("\033[H");
+}
+
 void Terminal::locate(int column, int row) {
     // Cursor Home    <ESC>[{ROW};{COLUMN}H
     this->printf("\033[%d;%dH%c", row + 1, column + 1);