Wireless Servo Control

Whoops! I guess I need a bit more coffee this morning....
Fixed.

if (mySerial.available() > 0) {
    int inByte = mySerial.read();
    value1 = map(value, '0', '9', 0, 180);

What do I do about servo selection now? Conditional while statement? (my level of programming skills are being maxed out)

Thanks,

Woehrlec