Need help with conditional DI/O and using Serial monitor to set conditions

You are receiving a char over serial that right, but it also in ASCII code. Assigning

Read = Serial.read();

value of Read would be 31 or 41, don't remember, google for ascii code of "1".
Other way, you can try Serial.parseInt() - Arduino Reference