hourglass_full Your download should start automatically in a few seconds...

Download Andruino Free_Latest Version.apk from Apk-Dl Server

Thank you for using Apk-Dl.com to download the apk file (Andruino Free_Latest Version.apk),

If the download doesn't start automatically in a few seconds, please click here to access the download URL directly.

Note: Download and save the apk file to your Android Phone's SD card and install it manually onto the Android device.

Description

Now you can use this Arduino USB SERIALCommunicator and connect to your Andruino board! NO ROOT REQUIRED.All you only need is an Android device with USB Host support.

-- THIS FREE VERSION HAS ADS IN ORDER TO SUPPORT DEVELOPMENT--

-----------------------------------------------------
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);
}
}