Hi,
I would like to use my Sodaq One with Base and the Grove BLE v1 (http://wiki.seeed.cc/Grove-BLE_v1/). It seems not working when I connect the BLE v1 via the Grove connector.
My code is:
void setup() {
pinMode(ENABLE_PIN_IO, OUTPUT);
digitalWrite(ENABLE_PIN_IO, HIGH);
delay(3000);
while (!debugSerial){
// Wait for the debugSerial
}
debugSerial.begin(57600);
bleSerial.begin(9600);
debugSerial.println(“BLE serial passthrough”);
}
void loop() {
if (debugSerial.available()) {
bleSerial.write(debugSerial.read());
}
if (bleSerial.available()) {
debugSerial.write(bleSerial.read());
}
}
The serialmonitor just shows “BLE serial passthroug” an nothing else.
I’d appreciate any advice how to move forward.