本文介绍了使用 Arduino 运行 Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有人尝试过让 Android 和 Arduino 相互通信?

Has anyone tried to make Android and Arduino communicate with each other?

我在网上找到了几个项目:

I found a couple of projects online:

你们有什么建议是让两人交流的最佳方式?

What do you guys suggest is the best way to make those two communicate?

推荐答案

或者为你的 Android 手机构建一条串口线,比如 G1 的这个,http://www.instructables.com/id/Android-G1-串行到 Arduino/.

Either build a serial cable for your Android phone, like this one for the G1,http://www.instructables.com/id/Android-G1-Serial-To-Arduino/.

或者在您的 Arduino 中添加一个蓝牙模块,

Or add a Bluetooth module to your Arduino,

或为您的 Arduino 使用以太网屏蔽并通过 TCP/IP 连接.

or use an Ethernet-shield for your Arduino and connect via TCP/IP.

使用哪一种取决于您的项目和预算.我不知道 G1 以外的手机是否有串行电缆选项.蓝牙模块具有对 Arduino 和电话都无线的优势,并且使用以太网屏蔽,您可以通过在防火墙上使用端口转发使 Arduino 全球可访问.

Which one to use depends on your project and your budget. I don't know if the serial cable option exists for phones other than the G1. The Bluetooth module has the advantage of beeing wireless for both, the Arduino and the phone, and using the Ethernet-shield you could make the Arduino worldwide accessible by using port-forwarding on your firewall.

这篇关于使用 Arduino 运行 Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 08:39