print string to display

This commit is contained in:
Anton Jacker
2024-06-13 14:03:18 +02:00
parent 2d01315d45
commit 215155035e
2 changed files with 48 additions and 0 deletions

View File

@ -71,6 +71,29 @@ class Display{
* @param value the string that should be printed
*/
void println(char *value);
/**
* @brief prints the passed string right behind the current displaycontent
* the sequence "\n" can be used to make a linebreak on the display
*
* @param value the string "xyz" that should be printed to the display
*/
void print(String value);
/**
* @brief same as the print method, but after the string a line break is inserted
*
* @param value the string that should be printed
*/
void println(String value);
/**
* @brief string to char
*
* @param value the string that should be converted to char
*/
char stringToCharArray(String value);
/**
* @brief flips the horizontal orientation of all content on the display