Hallo

Ich würde gerne die Terminal Control Escape Sequences in c verwenden.
Weis aber nicht wie man das machen soll,
ich möcht das hier:
Erase Screen <ESC>[2J

* Erases the screen with the background colour and moves the cursor to home.

Gerne mahl einsetzen ich hab disse Information von der HP http://www.termsys.demon.co.uk/vtansi.htm

Mein Ziel ist es solche Ergebnisse wie in dieser Grafik http://radbruch.roboterbastler.de/rp...t100-demo1.jpg Zu erreichen

Mein Code
Code:
#include <avr/io.h> 
#include <avr/interrupt.h>
#include "uart.h"

int main (void) {

USART_Init( UBRR_VAL ) ;

uart_cls();

uart_puts ("Hallo Welt\r\n")  ;

uart_putc ( 0x01);

uart_puts ("\r\nHallo Welt 2 ")  ;

uart_puts ( 0x1B '[2J' );


}
Danke für eure Hilfe