Shop OBEX P1 Docs P2 Docs Learn Events
Line Feed — Parallax Forums

Line Feed

AcidshockAcidshock Posts: 7
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 VerkaikPeter Verkaik Posts: 3,956
    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
  • AcidshockAcidshock Posts: 7
    edited 2005-10-19 05:10
    Awesome, thanks peter. Didnt realize that was the same.
Sign In or Register to comment.