MC-Basic:PRINTUSINGTOBUFF

From SoftMC-Wiki
Revision as of 06:58, 10 April 2017 by Chi (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Language: English  • 中文(简体)‎

PRINTUSINGTOBUFF #

Prints formatted numeric variables to the serial port using the specified format <string> to buffer.The format string contains literal text to be printed and characters for formatting numeric expressions. Only a single formatting string (containing text and formatting characters) followed by the expressions to print is allowed. The value assigned to Send parameter determines whether the buffer content will be send to serial port at the end of the command (Send = True) or stored in the buffer (Send = False). If send assignment is abolished, send defaults to False.

Short form

PrintUToBuff #

Syntax

PrintUsing #1, "<format_string>"; [<expression>];{[<expression>]}* {Send = True | False}

Availability

All versions

Type

<format_string>: String <expression>: Long or Double

Scope

Configuration, Task, Terminal

Limitations

Only 15 digits after the decimal point can be displayed. The statement, printu “#.################”;My_Var,

Examples

PrintUToBuff #1 “B is ##.##”;B

See Also