void setup() {
// put your setup code here:
char ch;








}

void loop() {
  // put your main code here, to run repeatedly:
if (Serial.available())
{
ch=Serial.read();
if (ch != '\n')
{
Serial.print("the char is:");
Serial.println(ch);
Serial.print("the Ascii code");

}