将数据从 android 发送到 arduino rx-tx USB
Sending data from android to arduino rx-tx USB
我有一个控制汽车的arduino,我需要一个指南针来自动控制汽车,不幸的是我们可以得到一个指南针(没有现货,我的国家没有网上购物)
所以想法是这样的:
我会在 android 上得到一个罗盘 运行 并使用 USB 连接传送数据以发送十六进制数据(作为串行连接)
我无法在 arduino 上设置 tx/rx 引脚,但我不知道 android 的功能以及我是否真的可以管理它..
想法很简单,从应用程序获取数据并通过 USB 作为串行连接发送,不需要反馈或任何东西,只需插入来自 [=] 的 tx/rx 线30=] 插入 arduino 引脚并开始接收。
如何以这种方式操作 USB?有可能吗?
在 google 上搜索只是 returns 不想要的结果,例如将 android 连接到 PC/ADB/external flash.. 这根本没用。
是的,我相信你能做到我经常使用我的 phone 和 usb otg cable. Most new Android phones support usb otg but make sure to check first, not sure about iPhone. I suppose you can also just connect the rx and tx to a mini usb connector and plug that into the phone. I use Serial usb terminal to sent and receive data over the serial usb port. Here 是一个用于串行通信的 github 应用程序你可以修改它来发送罗盘数据.
我有一个控制汽车的arduino,我需要一个指南针来自动控制汽车,不幸的是我们可以得到一个指南针(没有现货,我的国家没有网上购物)
所以想法是这样的:
我会在 android 上得到一个罗盘 运行 并使用 USB 连接传送数据以发送十六进制数据(作为串行连接)
我无法在 arduino 上设置 tx/rx 引脚,但我不知道 android 的功能以及我是否真的可以管理它..
想法很简单,从应用程序获取数据并通过 USB 作为串行连接发送,不需要反馈或任何东西,只需插入来自 [=] 的 tx/rx 线30=] 插入 arduino 引脚并开始接收。 如何以这种方式操作 USB?有可能吗?
在 google 上搜索只是 returns 不想要的结果,例如将 android 连接到 PC/ADB/external flash.. 这根本没用。
是的,我相信你能做到我经常使用我的 phone 和 usb otg cable. Most new Android phones support usb otg but make sure to check first, not sure about iPhone. I suppose you can also just connect the rx and tx to a mini usb connector and plug that into the phone. I use Serial usb terminal to sent and receive data over the serial usb port. Here 是一个用于串行通信的 github 应用程序你可以修改它来发送罗盘数据.