Shop
OBEX
P1 Docs
P2 Docs
Learn
Events
Line Feed — Parallax Forums
toggle menu
Categories
Discussions
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Sign In
·
Register
×
Home
›
General Discussion
Line Feed
Acidshock
Posts:
7
2005-10-19 04:59
edited 2005-10-19 05:10
in
General Discussion
Quick, probably easy, question. How do you send line feed from the Javelin?
Best regards,
Drew
·
Comments
Peter Verkaik
Posts:
3,956
2005-10-19 05:03
edited 2005-10-19 05:03
To send to the Jide message window:
System.out.print('\n');
To send using a transmit uart tx:
tx.sendByte('\n');
You may use 0x0A instead of '\n'
regards peter
Acidshock
Posts:
7
2005-10-19 05:10
edited 2005-10-19 05:10
Awesome, thanks peter. Didnt realize that was the same.
Sign In
or
Register
to comment.
Comments
System.out.print('\n');
To send using a transmit uart tx:
tx.sendByte('\n');
You may use 0x0A instead of '\n'
regards peter