KETCube Terminal Arduino API.
More...
KETCube Terminal Arduino API.
◆ print
Sends formatted output to KETCube terminal.
Behaves similarly to the C printf function the String is prefixed by the module prefix string ("Arduino :: ") and terminated by the new line
- Parameters
-
format | string that contains the text to be written to stdout. It can optionally contain embedded format tags that are replaced by the values specified in subsequent additional arguments – |
- See also
- https://sourceware.org/newlib/libc.html#sprintf
- Parameters
-
args | additional arguments depending on the format string |
◆ printDebug
Sends formatted output to KETCube terminal.
Behaves similarly to the C printf function the String is prefixed by the module prefix string ("Arduino :: ") and terminated by the new line
- Note
- the string is produced only if Arduino module severity is set to 3 (DEBUG)
- Parameters
-
format | string that contains the text to be written to stdout. It can optionally contain embedded format tags that are replaced by the values specified in subsequent additional arguments – |
- See also
- https://sourceware.org/newlib/libc.html#sprintf
- Parameters
-
args | additional arguments depending on the format string |
◆ printError
Sends formatted output to KETCube terminal.
Behaves similarly to the C printf function the String is prefixed by the module prefix string ("Arduino :: ") and terminated by the new line
- Note
- the string is produced only if Arduino module severity is set to 1 (ERROR)
- Parameters
-
format | string that contains the text to be written to stdout. It can optionally contain embedded format tags that are replaced by the values specified in subsequent additional arguments – |
- See also
- https://sourceware.org/newlib/libc.html#sprintf
- Parameters
-
args | additional arguments depending on the format string |
◆ printInfo
Sends formatted output to KETCube terminal.
Behaves similarly to the C printf function the String is prefixed by the module prefix string ("Arduino :: ") and terminated by the new line
- Note
- the string is produced only if Arduino module severity is set to 2 (INFO)
- Parameters
-
format | string that contains the text to be written to stdout. It can optionally contain embedded format tags that are replaced by the values specified in subsequent additional arguments – |
- See also
- https://sourceware.org/newlib/libc.html#sprintf
- Parameters
-
args | additional arguments depending on the format string |