Jeden Tag bieten wir KOSTENLOSE Android Apps und Spiele an die ihr sonst kaufen müsstet.
This giveaway offer has been expired. Andruino is now available on the regular basis.
Now you can use this Arduino USB SERIAL Communicator and connect to your Andruino board! NO ROOT REQUIRED. All you only need is an Android device with USB Host support.
-----------------------------------------------------
Example SERIAL:
-----------------------------------------------------
void setup()
{
Serial.begin(9600);
Serial.println("Hello from Arduino!");
}
void loop()
{
int incomingByte = 0;
delay(500);
String content = "";
char character;
while(Serial.available())
{
character = Serial.read();
content.concat(character);
}
if (content != "")
{
Serial.println("Received data: " + content);
}
}
Leonardo Javier Russo
Productivity
1.9.4.4
46k
Everyone
4.0 and up
Kommentare zum Andruino
Please add a comment explaining the reason behind your vote.