print sleep time for space

pico-v0.1
alanbjohnston 3 years ago committed by GitHub
parent 01b1e3ff49
commit cc462ca27f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3351,8 +3351,10 @@ void transmit_string(char *string) {
while ((string[i] != '\0') && (i < 256)) {
if (string[i] != ' ')
transmit_char(string[i++]);
else
else {
Serial.println((3 * morse_timing)/1000);
sleep((3 * morse_timing)/1000);
}
}
}

Loading…
Cancel
Save

Powered by TurnKey Linux.