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);
}
}
熱門國家 | 系統支援 | 版本 | 費用 | APP評分 | 上架日期 | 更新日期 |
---|---|---|---|---|---|---|
未知 | Android Google Play | 1.9 App下載 | USD$0.99 | 1970-01-01 | 2015-04-23 |