- 描述
- 評價 (0)
描述
描述
Ublox NEO-7M GPS 模組帶 – 帶天線
GY-NEO-7M模塊是一款先進的GPS模組,支持UART通信協議,有源天線。您可以輕鬆地將此模塊與任何微控制器連接。該模組有一個可充電電池,也可以使用USB 轉 TTL轉換器直接連接到計算機。
該模組可以接收數據,然後以非常高的精度和速度計算地理位置。除了支持北斗、伽利略、GLONASS、GPS/QZSS外,該模塊還具有用於保存設置的內存。該模塊與 Arduino 兼容,可用於任何項目。
Ublox NEO-7M GPS Module應用於導航、四軸飛行器定位指示等領域。兼容 Arduino 和 Raspberry Pi 開發板。該模塊使用 UART 通信協議。內部和外部雙天線提高了位置靈敏度。
Ublox NEO-7M GPS 模塊技術規格:
- GPS模塊:NEO-7M
- 通道數:56通道
- 熱啟動:-155dBm/1s
- 冷啟動:-147dBm/30sec 捕獲靈敏度:-147dBm
- 跟踪靈敏度:-161dBm
- 工作電壓:1.65V/3.6V
- 最低工作溫度:-40C
- 最高工作溫度:85C
- 子類別:無線和射頻模組
使用教學
將 NEO-7M GPS 模塊與 Arduino 連接
第 1 步:電路
以下電路顯示瞭如何將 Arduino 連接到 NEO-7M 模塊。相應地連接電線。

第 2 步:代碼
在您的 Arduino 上安裝以下庫。
範例碼
Arduino
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
/* modified on Sep 27, 2020 Modified by MohammedDamirchi from https://github.com/mikalhart/TinyGPSPlus Home */ #include <TinyGPS++.h> #include <SoftwareSerial.h> /* This sample sketch demonstrates the normal use of a TinyGPS++ (TinyGPSPlus) object. It requires the use of SoftwareSerial, and assumes that you have a 9600-baud serial GPS device hooked up on pins 4(rx) and 3(tx). */ static const int RXPin = 3, TXPin = 4; static const uint32_t GPSBaud = 9600; // The TinyGPS++ object TinyGPSPlus gps; // The serial connection to the GPS device SoftwareSerial ss(RXPin, TXPin); void setup() { Serial.begin(115200); ss.begin(GPSBaud); Serial.println(F("DeviceExample.ino")); Serial.println(F("A simple demonstration of TinyGPS++ with an attached GPS module")); Serial.print(F("Testing TinyGPS++ library v. ")); Serial.println(TinyGPSPlus::libraryVersion()); Serial.println(F("by Mikal Hart")); Serial.println(); } void loop() { // This sketch displays information every time a new sentence is correctly encoded. while (ss.available() > 0) if (gps.encode(ss.read())) displayInfo(); if (millis() > 5000 && gps.charsProcessed() < 10) { Serial.println(F("No GPS detected: check wiring.")); while(true); } } void displayInfo() { Serial.print(F("Location: ")); if (gps.location.isValid()) { Serial.print(gps.location.lat(), 6); Serial.print(F(",")); Serial.print(gps.location.lng(), 6); } else { Serial.print(F("INVALID")); } Serial.print(F(" Date/Time: ")); if (gps.date.isValid()) { Serial.print(gps.date.month()); Serial.print(F("/")); Serial.print(gps.date.day()); Serial.print(F("/")); Serial.print(gps.date.year()); } else { Serial.print(F("INVALID")); } Serial.print(F(" ")); if (gps.time.isValid()) { if (gps.time.hour() < 10) Serial.print(F("0")); Serial.print(gps.time.hour()); Serial.print(F(":")); if (gps.time.minute() < 10) Serial.print(F("0")); Serial.print(gps.time.minute()); Serial.print(F(":")); if (gps.time.second() < 10) Serial.print(F("0")); Serial.print(gps.time.second()); Serial.print(F(".")); if (gps.time.centisecond() < 10) Serial.print(F("0")); Serial.print(gps.time.centisecond()); } else { Serial.print(F("INVALID")); } Serial.println(); } |
評價 (0)
相關商品
-
衛星定位 GPS
GPS 天線 SMA 接口有源天線 可配合 GPS 模組使用 送IPX轉接頭
0 out of 5NT$140原始價格:NT$140。NT$138目前價格:NT$138。 (未稅)加入購物車產品速覽 -
Arduino 功能擴展板, Lora 遠距低功耗模組, 衛星定位 GPS
LoRa/GPS Shield For Arduino 無線射頻擴展板
0 out of 5NT$1,300原始價格:NT$1,300。NT$1,250目前價格:NT$1,250。 (未稅) -
無線和物聯網
Arduino SIM7000C NB-IoT/LTE/GPRS 4G 通訊擴展板 台灣各電信頻段 FDD-LTE B1/B3/B5/B8
0 out of 5NT$1,960原始價格:NT$1,960。NT$1,790目前價格:NT$1,790。 (未稅)加入購物車產品速覽 -
衛星定位 GPS
高精度 Ublox NEO-6M V2 GPS 雙模可擴充天線定位模組
0 out of 5NT$1,100原始價格:NT$1,100。NT$930目前價格:NT$930。 (未稅)
商品評價
目前沒有評價。