I am trying to print an integer alongside a string but it\'s not really working out and am getting confused.
int cmdSeries = 3; Serial.println(\"Series : \" + c
Try this
int cmdSeries = 3; Serial.println(String("Series : ") + cmdSeries);