Code:uart_puts ("\033[2J");
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
Danke für eure HilfeCode:#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' ); }
Code:uart_puts ("\033[2J");
MfG
Stefan
Hi danke es geht könntest du noch erklären warum das \033 davor kommt und nicht das 0x1B.
Danke
Lesezeichen