Hello
I have an ArduinoBT (bluetooth).
After some research, I understood that I had to press the reset-button on the card every time I upload a code to the card. I've been able to send the blinking LED-code to the card, and I'm able to configure the blinking time.
Now I want to try to read from the card. I realise that the simpliest way to do this, is to upload a "Hello world"-code. So, I tried the following code:
/*
* Hello World!
*
* This is the Hello World! for Arduino.
* It shows how to send data to the computer
*/
void setup() // run once, when the sketch starts
{
Serial.begin(9600); // set up Serial library at 9600 bps
}
void loop() // run over and over again
{
Serial.println("Hello world!"); // prints hello with ending line break
delay(1000);
}
I've tried with 9600 and 115200 (the baudrate for the ArduinoBT). After uploading, I press the "Serial monitor"-button, and get this window (see attachment).
Shouldn't I see the "Hello world" here?
Thanks for the help.
Edit: Or maybe there's any other way to monitor the serial through Bluetooth?