Show Posts
|
|
Pages: [1]
|
|
1
|
Using Arduino / Networking, Protocols, and Devices / Arduino + Android
|
on: March 04, 2013, 07:44:15 pm
|
|
I want to connect an Android phone/tablet to an Arduino. I only want to send/receive bytes; the Android app would receive and send the bytes. What is out there that I can use (libraries, etc.)? No rooting the phone/tablet, since I want to accommodate most/many generic tablets. Also, avoiding using a USB Host shield would be preferable.
|
|
|
|
|
2
|
Using Arduino / Interfacing w/ Software on the Computer / Re: Communicating with Arduino via Serial
|
on: November 27, 2012, 05:46:56 pm
|
|
Thank you senti, you helped me connect the dots.
I finally figured out that I need both a sketch that needs to be uploaded to the Arduino, that will handle Serial communication and act upon that serial communication (i.e. flash an LED when a byte is sent). From the computer C++ code, I can then send information via Serial to the Arduino. In my searches, I had always found either Arduino code to receive serial information or C++ code to send serial information separately, but did not understand that you needed both.
|
|
|
|
|
3
|
Using Arduino / Interfacing w/ Software on the Computer / Re: Communicating with Arduino via Serial
|
on: November 26, 2012, 01:56:27 pm
|
|
I can easily make the Arduino flash using Arduino code or the example sketch.
I am talking about making the Arduino LED flash from C++, not via a sketch. I want to specify some input pin to receive a flashing signal from C++.
Also, yes I believe Windows is different from Linux in the way that it opens and communicates with ports. I would assume that a library would have different code to open a port in Windows than a port in Linux.
|
|
|
|
|