我已经构建了一个 Android 应用程序和一个 Arduino - wifly 模块。现在 Android 应用程序能够通过 wifly 向 arduino 发送数据。到目前为止,我已经编写了一个 http 参数以在等待 2 秒后关闭 http 一次。
final int TIMEOUT_MILLISEC = 2000;
HttpParams httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParams, TIMEOUT_MILLISEC);
HttpConnectionParams.setSoTimeout(httpParams, TIMEOUT_MILLISEC);
您能否指导如何将 Arduino 的响应发送到已与 Arduino 建立 HHTP 连接的 Android 应用程序?