Is it possible to make global "defines" that work with libraries?

Graynomad:
You can create a pointer to a SS instance then use "new" or call the begin() or similar. I've done it before but can't remember the syntax offhand so I'll look for some code.

EDIT: Found some code

static SoftwareSerial * _mySs;

_mySs = new SoftwareSerial(rxpin, txpin);
_mySs->begin (baud);
_mySs->write (c);
if (_mySs->available() {
    c = _mySs->read();
}





_____
Rob

Works like a charm!!!! Now I can config my pins and not have duplicate code... Developers heaven!!! XD XD XD