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
You can simply do:
Serial.println(n);
which will convert n to an ASCII string automatically. See the documentation for Serial.println().