Sale

GPS Mini 高精度 NEO-6M / NEO-7M / NEO-7N 可擴充雙天線定位模組

NT$400NT$460 未稅

NEO-7N模組【焊直排針】

NEO-6M / NEO-7M 【焊彎排針】

清除
貨號: GPS MINI NEO 分類: 標籤: , , , , , , , ,
  • 商品說明

商品說明

GPS Mini 高精度 NEO-6M / NEO-7M / NEO-7N 可擴充天線定位模組 最新版本 同時支援 SMA and IPEX 雙模天線

支援 Arduino 與 STM32

是一款高性能GPS定位模組。模組自帶可充電後備電池(支援溫啟動或暖開機,後備電池在主電源斷電後,可以維持半小時左右的GPS接收資料保存)。模組通過串口與外部系統連接,串口串列傳輸速率:4800、9600(預設)、38400、57600等不同速率,相容5V/3.3V單片機系統,可以非常方便的與您的產品進行連接。

模組特點:

  • GPS模組 NEO-6M/NEO-7M/NEO-7N,3V-5V供電通用
  • 帶資料備份電池
  • 帶LED信號指示燈

模組接線說明

RXD 接單片機的TXD
TXD 接單片機的RXD
GND 地
VCC 電源(3.3V~5.0V)

注意事項

建議使用外置有源天線,搜星速度會增加很多,另外外置天線有3m延長線,一般天線放窗台外,線拉進屋內就可以搜到星定位到。方便測試和使用

Arduino 範例

There are 4 connections, TX, RX, VCC and Gnd. I connected TX of the module to pin 10 on the Arduino, Rx to Pin 11, VCC to 5v, and Gnd to Gnd.

#include "SoftwareSerial.h"

SoftwareSerial mySerial(10, 11); // RX, TX

void setup() 
{
  // Open serial communications and wait for port to open:
  Serial.begin(9600);

  Serial.println("uBlox Neo 6M");

  // set the data rate for the SoftwareSerial port
  mySerial.begin(9600);

}

void loop() // run over and over
{
  if (mySerial.available())
    Serial.write(mySerial.read());

}