How to convert int to string on Arduino?

Use like this:

String myString = String(n);

You can find more examples here.

Leave a Comment