Bluetooth Shield with Parallax LCD

I have a question, I have a parralax lcd and the seeed bluetooth shield. I’m trying to connect it to an android phone using the bluetooth spp app. It pairs and I think it connects however when i send strings and stuff to it, it says failed. I’m trying to get it to show up on the parralax lcd. this is the code I’m using if you need it to help me …

[code]const int TxPin = 5;
#include <SoftwareSerial.h> //Software Serial Port
#define RxD 6
#define TxD 7

#define DEBUG_ENABLED 1

SoftwareSerial blueToothSerial(RxD,TxD);

SoftwareSerial mySerial = SoftwareSerial(255, TxPin); \\

void setup()
{
mySerial.begin(9600);
mySerial.write(12);
mySerial.write(17);
delay(5);
pinMode(RxD, INPUT);
pinMode(TxD, OUTPUT);
setupBlueToothConnection();

}

void loop()
{
char recvChar;
while(1){
if(blueToothSerial.available()){//check if there’s any data sent from the remote bluetooth shield
recvChar = blueToothSerial.read();
mySerial.write(12);
mySerial.print(recvChar);
}
if(Serial.available()){//check if there’s any data sent from the local serial terminal, you can add the other applications here
recvChar = Serial.read();
blueToothSerial.print(recvChar);
}
}
}

void setupBlueToothConnection()
{
blueToothSerial.begin(38400); //Set BluetoothBee BaudRate to default baud rate 38400
blueToothSerial.print("\r\n+STWMOD=0\r\n"); //set the bluetooth work in slave mode
blueToothSerial.print("\r\n+STNA=SeeedBTSlave\r\n"); //set the bluetooth name as “SeeedBTSlave”
blueToothSerial.print("\r\n+STOAUT=1\r\n"); // Permit Paired device to connect me
blueToothSerial.print("\r\n+STAUTO=0\r\n"); // Auto-connection should be forbidden here
delay(2000); // This delay is required.
blueToothSerial.print("\r\n+INQ=1\r\n"); //make the slave bluetooth inquirable
mySerial.print(“The slave bluetooth is inquirable!”);
delay(2000); // This delay is required.
blueToothSerial.flush();
}

[/code]

Maybe you can use bluetooth shield with android phone separately, whether there are something wrong existing?