What is the command to put integer with ER5517 lib

I only can find: ER5517.Show_String() and ER5517.Show_Picture().
With PUT I mean: To show it on the LCD.

Exactly which library are you using and where did you get it from ?

I use the library ER5517 witch comes with the 7 inch display from BuyDisplay.com

Please post a link to where the library can be downloaded from ?

https://www.buydisplay.com/arduino/ER-TFTM070-7_Arduino_Tutorial.zip

This is the link.

It looks like the library does not have a function to print an integer. You would need to convert the integer into a C style string (NOTE : not a String) using the itoa() function then use Show_String()

I was already afraid of that. I go try that to morrow, because it is midnight in Holland now. :slight_smile:
Thank you very much for taking the effort to help me.
Fred

No need to be afraid. Write a function that does the conversion and call to Show_String() and call that when you need to print an integer

That is a very good hint. I surely wil do that.
Thank you so much.