I'm new to arduino. I'm designing a project which contains hardware and software part, the hardware part should be able to send some information to the Android App to trigger further actions.
Can you please recommend a easy implemented bluetooth module? Do I need to adopt any communication protocols? If yes, then which one is the easiest since I'm an absolute greenhand.
I've heard that HC-05 and I2C are the most common options? Are they suitable for my project?
Thank you very much! Any advice would be appreciated!
I'm new to arduino. I'm designing a project which contains hardware and software part, the hardware part should be able to send some information to the Android App to trigger further actions.
Can you please recommend a easy implemented bluetooth module? Do I need to adopt any communication protocols? If yes, then which one is the easiest since I'm an absolute greenhand.
I've heard that HC-05 and I2C are the most common options? Are they suitable for my project?
Thank you very much! Any advice would be appreciated!
You can send serial data from an Arduino via a HC05 or HC06 Bluetooth adapter and you can recieve it with an Android application such as Blueterm, which is a Bluetoorh serial terminal app.
To do anymore with the serial data, on the Android device, that you can send through the HC05\HC06 from the Arduino is a question for the developers of Android apps.
srnet:
You can send serial data from an Arduino via a HC05 or HC06 Bluetooth adapter and you can recieve it with an Android application such as Blueterm, which is a Bluetoorh serial terminal app.
To do anymore with the serial data, on the Android device, that you can send through the HC05\HC06 from the Arduino is a question for the developers of Android apps.
Thank you very much for your advice!
So i need to use an application like Blueterm to receive the serial data first, then transfer it to my own App?
can i use my own App to receive the commands from Arduino directly?