Hello! i bought this stuff, and i having problems to connect with my laptop bluetooth
Here are the links of the stuff im using
Xbee Shield
seeedstudio.com/depot/xbee%C … p-419.html
Bluetooth Bee
seeedstudio.com/depot/blueto … p-598.html
Arduino Uno
arduino.cc/en/Main/ArduinoBoardUno
I can send commands from arduino to Laptop through bluetooth using sscom3.2, but i cant send from my laptop to arduino,
Here is the Arduino code that im using
[i]include <NewSoftSerial.h>
NewSoftSerial mySerial(11, 12);
void setup() {
Serial.begin(38400);
mySerial.begin(38400);
}
void loop() {
if (mySerial.available()) {
Serial.print((char)mySerial.read());
}
if (Serial.available()) {
mySerial.print((char)Serial.read());
}
}[/b][/i]
Anyone can help me please?