Bluetooth frame

Hello fellow seeeds,

I’ve been buying stuff from seeed for quite some time now.

The thing is, i’ve bought a bluetooth frame for seeeduino film, and when I powered it up the D2 light started blinking twice every 2 seconds more or less.

In order to connect to it i’ve been using a bluetooth dongle from lifetech and bluesoleil, but it doesn’t even recognise the bluetooth frame. I’ve even tried switching to another seeeduino filme and even trying to detect the frame with another bluetooth with no success.

Can anybody help me?

Thanks

Do you upload sketch to make it in inquiry mode?
please try this code:

void setup ()
{
DDRB|=0x01;
PORTB|=0x01;
Serial.begin(38400);
Serial.println();
delay(100);
Serial.print("\r\n+STAUTO=0\r\n");//disable auto connect
delay(2000);
Serial.flush();

delay(10);
Serial.print("\r\n+STWMOD=0\r\n");//slave
delay(2000);
Serial.flush();

delay(1000);

delay(10);
Serial.print("\r\n+STNA=Seeed_BT\r\n");//rename
delay(2000);
Serial.flush();

delay(10);
Serial.print("\r\n+INQ=1\r\n");//enable been inquired
delay(2000);
Serial.flush();
}

void loop ()
{
/*
*/
if(Serial.available())
{
unsigned char BT_received = Serial.read();
if(BT_received == ‘P’)
{
for(;:wink:
{
if(Serial.available())
{
unsigned char BT_received = Serial.read();
Serial.print(“received:”);
Serial.println(BT_received);
}
}
}
}
}

Thanks
Albert