Fork of SerialTerminal

Dependents:   IMP_projekt

Revision:
3:e171212939f3
Parent:
2:64e7d86dbac1
--- a/SerialTerminal.h	Fri Oct 16 16:31:49 2015 +0000
+++ b/SerialTerminal.h	Fri Dec 13 10:10:41 2019 +0000
@@ -56,6 +56,24 @@
     
     /** Hide Cursor from terminal*/
     void showCursor();
+    
+        /** Moves cursor up by @var step_num */
+    void move_cursor_up(int step_num);
+    
+    /** Moves cursor down by @var step_num */
+    void move_cursor_down(int step_num);
+    
+    /** Moves cursor righ by @var step_num */
+    void move_cursor_right(int step_num);
+    
+    /** Move cursor left by @var step_num */
+    void move_cursor_left(int step_num);
+    
+    /** Hides cursor */
+    void hide_cursor();
+    
+    /** Enables cursor */
+    void show_cursor();
 };
 
 #endif