How do I convert an int, n, to a string so that when I send it over the serial, it is sent as a string?
n
This is what I have so far:
int ledP
Use like this:
String myString = String(n);
You can find more examples here.