Connecting to Lilypad Simblee via Bluetooth

Hello all,

I am working on a project that involves controlling electrical current through a knee sleeve and I am using the lilypad simblee board to do it. I want to be able to control the current flow via bluetooth and the android app, Ardudroid. I have been running into problems uploading my code to the board via FTDI, which I have updated with the latest drivers and whatnot.
This is what I have so far:
void setup() {
// put your setup code here, to run once:
pinMode(11, OUTPUT);
}

void loop() {
// put your main code here, to run repeatedly:
analogWrite(11, 50);
delay(1000);
analogWrite(11, 100);
delay(1000);
analogWrite(11, 150);
delay(1000);
analogWrite(11, 200);
delay(1000);
analogWrite(11, 255);
delay(5000);
}

This is the error that pops up every time I try to upload to the board:

Timeout reading from uart.

fail.......fail.......fail.......

My first question is why is this happening? And my second question is how do I connect to this board via Ardudroid?
Thank you