Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I am having arduino uno board connected with bluetooth HC-05 module. I needed to transfer the data from arduino to android mobile via bluetooth.

Is it possible to transfer the data from arduino to android via bluetooth?

share|improve this question

closed as unclear what you're asking by Majenko, Nick Gammon, jfpoilpret, sachleen Jul 14 '15 at 16:30

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

1  
What kind of data? Serial? – TheDoctor Jul 12 '15 at 23:33
    
Please clarify what kind of data you're trying to transfer and how. Share some code so we can help you.. the answer to your question is "yes, it is possible." but we can't help you more without more information. – sachleen Jul 14 '15 at 16:30

Is it possible to transfer the data from arduino to android via bluetooth?

Yes. The HC-05 just creates a serial connection over bluetooth. You can treat it just like any other serial connection, such as the USB connection between the Arduino and your computer.

What data you send and in what format you send it is entirely up to you.

share|improve this answer
    
My idea is to transfer data like beacon function so is it possible with arduino code – Karthi Keyan Jul 10 '15 at 11:07
1  
@KarthiKeyan I have no idea. I don't understand what you are asking. If you are asking if you can broadcast to all devices in range using bluetooth, then no, you can't. That's not how bluetooth works (regardless of any Arduino in there). It's strictly point-to-point. – Majenko Jul 10 '15 at 11:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.