Hello. I'm a student from barcelona and i am having a lot of trouble with the arduino bluetooth board. I have written other posts recently but i still haven't been able to fix my problem. I found a thread ( http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1187252763 ) and although it talks about what i'm dealing with i haven't been able to fix it... I'm going crazy trying to make some commands work... i'm trying to connect the board to a pocket pc using the CALL comand..
the arduino code i have is:
void setup() { Serial.begin(115200); pinMode(RESET,OUTPUT); // Reset the bluetooth interface digitalWrite(RESET, HIGH); delay(10); digitalWrite(RESET, LOW); delay(200); Serial.println("CALL 00:09:DD:50:66:EE 1101 RFCOMM"); }
and the pocket pc opens a serial port: port = new SerialPort(5, boundRate, bits, parity, stopBit);
This connection doesn't work at all. Does anybody know what can be wrong...? Am I using the call function correctly..? PLEEEEEEEEEEEEEEEEEEAAAAAAAAAAAAASSSSSSSSSSSSSSSEEEEEEEEEEE help!! I need to finish this proyect for my university and my time is running out... thank you to all in advance!!!!!
:'(