使用Android应用程序控制Raspberry Pi的GPIO端口有哪些方法?
我已经看过使用nodejs和简短的socketio - 但是对于如何实施这项技术真的没什么明智的呢?
是否有人能够更多地解释这种方法/建议替代/现有的例子?
由于
答案 0 :(得分:0)
我建议您使用Bottle Web服务器将raspberry pi设为web服务器,然后开发一个Android应用程序,将HTTP请求发送到Web服务器以控制GPIO引脚。您可以使用此类来发出http请求:
class RequestTask extends AsyncTask<String, String, String> {
@Override
protected String doInBackground(String... uri) {
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response;
String responseString = null;
try {
response = httpclient.execute(new HttpGet(uri[0]));
StatusLine statusLine = response.getStatusLine();
if(statusLine.getStatusCode() == HttpStatus.SC_OK){
ByteArrayOutputStream out = new ByteArrayOutputStream();
response.getEntity().writeTo(out);
out.close();
responseString = out.toString();
} else{
//Closes the connection.
response.getEntity().getContent().close();
throw new IOException(statusLine.getReasonPhrase());
}
} catch (ClientProtocolException e) {
//TODO Handle problems..
} catch (IOException e) {
//TODO Handle problems..
}
return responseString;
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
Toast.makeText(getApplicationContext(), result, 0).show();
}
}
例如,在按下应用中的按钮时发出http请求。你只需在函数内写:
new RequestTask().execute("http://192.168.1.145:80/3");
在我的例子中,我假设app和raspberry pi连接在同一个网络中。