我正在做我最后一年的项目,跟踪车辆并在谷歌地图上显示位置,我正在使用 arduino、GPS 模块和 icomsat v1.1 GPRS 模块。我正在尝试将 GPS 数据发送到我本地服务器上的网页没有成功,我该怎么做,请帮助:
这就是我的做法:
//set http param value
GPRS.print("AT+HTTPPARA=\"URL\",\"http://my_domain/gps_tracker.php?");
GPRS.print("visor=false");
GPRS.print("&latitude=");
GPRS.print(latitude);
GPRS.print("&longitude=");
GPRS.print(longitude);
GPRS.print("speed=");
GPRS.print(speedOTG);
GPRS.print("\"");