PutC()

Send a character to a terminal through the internal USART.  If the USART is busy sending the last character transmitted, PutC will wait.

 Requires: hardware.bas

Syntax: PutC(char)

char is the character to be sent.

Example:

Display the message OK on the terminal

a="O"
Call putc(a)
Call putc("K")

 

Notes:

When including hardware.bas into a project, it should be placed before any other source file in the project tree view.

Also See: putS