get data from arduino using BTBee Pro into PC (win10)

Hello all,

I'm trying to connect an Arduino Uno via BTBee Pro to a PC with Windows 10.

My hardware is :

Arduino Uno;
Wireless Proto Shield;
BTBee Pro (model HC-05 / version-2.0);

I'm using the folowing sketch:

/* Hello World */

void setup() {
  Serial.begin(9600);   
}

void loop() {
  Serial.println("Hello World");
  delay(50);
}

When I connected the Arduino with an USB cable and open the serial monitor in Arduino IDE I get the expected output ("Hello World"), however, althought I was able to paired and connected the device wireless in the PC, I dont see any output in serial monitor.

I appreciate any help since I never worked with Arduino before.

Kind Regards

Ivo

Is the shield using Serial() or does it expect you to use SoftwareSerial on other pins

althought I was able to paired and connected the device wireless in the PC, I dont see any output in serial monitor.

What COM port do you get when you pair? It likely is NOT the same COM port that the Arduino is connected to, which is the one that the Serial Monitor application connected to.

Hi all,

My apologies for the late answer but I haven't had the chance to do it earlier.

Thank you both for your posts. Your comments helped me to understand what could be wrong.
I've been searching in the internet and finally I think I understand the problem. Once I have an working solution I will post it here in the forum.

Kind Regards

Ivo