我正在尝试在Arduino上使用UP501 gps模块并从GPS获取原始信息,如long,lat,alt..etc
我在Arduino上运行此代码,看看GPS上的串口是否可用,如果是,则打印出来自GPS的数据。
Arduino代码:
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX .
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(57600);
Serial.println("Searching using GPS...");
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
}
void loop() // run over and over
{
if (mySerial.available())
Serial.write(mySerial.read());
}
我的问题:我没有从GPS模块获取任何数据。
我认为这将来自布线。请参阅下面的布线图。注意:我去外面(室外)获得卫星但没有信息