Hello Boris,
May I know how the Bluetooth Bee is connected to Arduino / Seeeduino ?
Are you using XBee shield ? If so please set both toggle switches to left side (Refer garden.seeedstudio.com/index.php … h_Position).
The idea is to connect BluetoothBee Rx and Tx to Arduino Digital pin 11 and 12 .
If you do not wish to use flow control mechanism, modify your program to use a delay of 3 seconds instead of CheckOK() :
void sendBlueToothCommand(char command[])
{
blueToothSerial.print(command);
delay(3000);
}
Bluetooth Bee takes some time to process commands. New commands have to be sent only after the old one is executed. Hence the delay is required.
I have added a delay based implementation with debugging feature to garden (Please use this sketch garden.seeedstudio.com/index.php … ementation )
Let me know if you still face any issue.
Regards,
Viswa