Sending a Hello message using arduino

PaulRB:
Please edit your post above and fix the incorrect way you posted the code. The forum sticky post will tell you how.

Thanks, PaulRB. I've made the correction. The code should be in this format rather:

//Below is the TX Code:

int LEDPin = 13;
int LEDOnTime = 400;
int LEDOffTime = 500;
int numLEDBlinks = 5;
String Message = "The LED is Blinking";

void setup() {
Serial.begin(9600);
String wm1 = "Welcome to ";
String wm2 = "My Program";
String wm3;
wm3=wm1+wm2;
Serial.println(wm3);
pinMode(LEDPin, OUTPUT);
}

void loop() {
Serial.println(Message);
for (int i=1; i<=numLEDBlinks; i=i+1){
Serial.print("    You are on Blink #: ");
Serial.println(i);
digitalWrite(LEDPin,HIGH);
delay(LEDOnTime);
digitalWrite(LEDPin,LOW);
delay(LEDOffTime);
}
Serial.println(" ");
}





![asciifull.gif|715x488](upload://67vOZ5WJCsLAJUHy0Sbf8hzeaUn.gif)
You won't need the above table, Arduino uses ASCII codes anyway.
Seriously? You never heard of Morse code? Just Google for it.

Okay, will do a research on that

Albert