int j=1;
int waitT=660;
String my = "j = ";
void setup() {
// put your setup code here, to run once:
// Arduino Serial Port and Print Command
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print(my);
Serial.println(j);
j=j+1;
delay(waitT);
}