if (Serial.available()) {
int c = Serial.read();
switch (c) {
case 3:
// do stuff
break;
case 15:
// do other stuff
break;
}
Start with something like that and let us know when you have a program that compiles.
Rob