hello guys. i recently bought this bluetooth module : http://robotstore.gr/bluetooth-smd-module-rn-42-el.html
with no breakout board. just the module.
i want to connect it with the arduino, so i can enstablish a simple com port comunication ..
but i cant seem to get it to work!!
i conect the power and the ground (3.3v).
i connect the bleuttoth tx with arduino rx
and arduino tx with bluetooth rx (via a voltage devider, to have 3.3v)
my code is like this :
void setup()
{
// initialize the serial communication:
Serial.begin(9600);
delay(500);
}
void loop() {
Serial.println("the thing i want to print");
delay(10);
}
i have installed the bluetooth device on my pc, but when i open a serial monitor, nothing hapens... (the Tx and rx leds of the arduino dosent light up)
any advice?? or any guidence?? thanks in advance!!