if we have some information lines like this
can i convert it into string for use in single line function of ili9141 display.
for example any idea like this .... this funtion to print line on display
i want to write a single line some thing like
.
means write one line
I want to get String INFO as full line of output of
is it possible ???????
C++:
Serial.printf("Read %s into memory at %08X; %d bytes\n", SMP_WAV[i], SMP_addr[i], sizes[i]);
for example any idea like this .... this funtion to print line on display
C++:
void TFT_INFO (String INFO) {
tft.fillScreen(ILI9341_BLUE);
tft.setCursor(10, 100);
tft.setTextColor(ILI9341_WHITE, ILI9341_WHITE);
tft.setTextSize(3);
tft.println(INFO);
tft.setTextColor(ILI9341_WHITE, ILI9341_YELLOW);
}
C++:
TFT_INFO ("Read %s into memory at %08X; %d bytes\n", SMP_WAV[i], SMP_addr[i], sizes[i]);
means write one line
TFT_INFO(); instead of repeat 6-7 lines of tft.xxxx();I want to get String INFO as full line of output of
C++:
Serial.printf("Read %s into memory at %08X; %d bytes\n", SMP_WAV[i], SMP_addr[i], sizes[i]);