-29%
- 描述
- Size Guide
- 評價 (0)
描述
描述
NEO-7M UBLOX GPS 衛星定位模組 支援 Arduino 與樹梅派 NEO-6M升級版 適用於無人飛行器 機器人
NEO-7 系列 GPS 模組,獨立GNSS建立在u-blox 7 GNSS(GPS,GLONASS,QZSS和SBAS)引擎的卓越性能之上。NEO-7系列在行業驗證的NEO外形中提供了高靈敏度和最少的採集時間。
- U-BLOX NEO-7M 核心,小巧而卓越的性能
- 參數可以通過串口設置並保存在EEPROM中
- 帶有SMA接口,可以連接多種天線,適應性強
- 與3.3 V / 5 V電平兼容,可輕鬆連接各種微處理器系統
- 備用充電電池
- 使用micro USB,不需要USB-TTL工具
- 帶有TTL接口
- 板載陶瓷天線
- 示例代碼:https://playground.arduino.cc/UBlox/GPS
- 評估軟件(U-Center)可供下載
NEO-7M UBLOX GPS 衛星定位模組 頻率 :1575.42M
- 用於GPS / QZSS,GLONASS的GNSS引擎
- 產品變體可以滿足性能和成本要求
- 結合了低功耗和高靈敏度
- 向後兼容NEO-6和NEO-5系列
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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#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()); } |
商品評價
目前沒有評價。