Excellent, thanks I never really did well with scissors in preschool, it just makes sense I'd bugger the cut and paste on my code. Second attempt.
void setup() {
// put your setup code here, to run once:
// Using the myPort output lets you view
// program fuction via the myPort monitor when enabled
#include <SoftwareSerial.h>
SoftwareSerial myPort(10,11); // RX, TX
myPort.begin(2400);
pinMode(6, OUTPUT);
}
void loop() {
for(int Mins = 0; Mins <20 ; Mins++){
for(int Secs = 0; Secs < 60; Secs++){
delay (1000);
myPort.println("Run");
myPort.print(Mins);
myPort.print(" Mins ");
myPort.print(Secs);
myPort.println(" Secs");
}
}
}