Arduino: Bluetooth connection, and data storage

1

I am a beginner and I have some projects in mind, I would like to know if it is possible to connect the phone to the arduino and to make an application pass some data to some memory connected to the arduino and other device to be able to take this information. .. Is it possible to do something like this ???

    
asked by anonymous 17.09.2016 / 23:48

1 answer

2

Yes, this is possible: (I'll give you an explanation above, because in case you requested only the possibility)

Connect your phone to the Arduino:  - By Bluetooth: - You should use the MIT App Inventor to make your Android app and prepare your arduino code to take action as soon as you receive the information from the phone through the serial port of the shield HC05 or HC06 (Bluetooth). light led by arduino and android)  - By Http (web) - You should use the Ethernet shield, where in there you will develop the page in HTTP as soon as it receives the reference link, eg: http://192.168.0.200/?acendaled and http://192.168.0.200/?apagaled it receives on the serial port ?acendaled e ?apagaled and run the functions within the program as you want to associate type as soon as it receives? acendeled lights the LED on port 11:

if(readString.indexOf("?acendeled") >0) {
           DigitalWrite(11,HIGH);

The advantage of using Ethernet Shield is that you can run from any cell phone, I suggest using buttons and responsive bootstrap tables because it fits the screen size.

I hope I have helped, [] 's

    
25.09.2016 / 23:02