Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

I try to upload my sketch from PC (Dell Inspiron.1525, XP pack 3) to Arduino Leonardo by the Bluetooth but it is not work, I try all ways that found in Internet which most of them about Arduino Uno, and all this didn't work.

I use a Bluetooth dongle with my PC and connect the Bluetooth module with Leonardo and the sketch is:

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

void loop()
{
    int sensorValue = analogRead(A0);
    Serial.println("Hello World");
    Serial.println(sensorValue);
    delay (1000);
}

First, I used the Arduino IDE 1.0.3, but when that didn't work I used IDE 1.0.4 but that didn't work either. Then I used 1.5.1 and that didn't work either!
For Bluetooth, I used putty.exe, then tera term and then hercules_3-2-5.exe.

What do I have to do?

share|improve this question
"the bluetooth module" which one would that be? What is the exact error message thrown? – jippie Jun 12 at 16:41
the bluetooth module is "bluetooth click" which work with uno, there is no message error but not send or receive any thing throw tera term or any other program when i choose the the serial port over the bluetooth. – programmer_a Jun 15 at 17:38
Find the default baudrate of the bluetooth module and program that in your sketch in Serial.begin(115200); – jippie Jun 15 at 18:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.