hourglass_full 下载中,请稍后...

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),

如果没有自动开始下载, 请点我

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

描述

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