updated GPS module
|
Before Width: | Height: | Size: 225 KiB |
|
Before Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 236 KiB |
|
Before Width: | Height: | Size: 233 KiB |
|
Before Width: | Height: | Size: 209 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 359 KiB |
|
After Width: | Height: | Size: 371 KiB |
|
After Width: | Height: | Size: 388 KiB |
|
After Width: | Height: | Size: 236 KiB |
|
After Width: | Height: | Size: 210 KiB |
@@ -1,14 +1,14 @@
|
||||
# GPS模块
|
||||
|
||||
<img src="assets/img/product_pics/modules/gps_01.jpg" width="30%" height="30%"> <img src="assets/img/product_pics/modules/gps_05.jpg" width="30%" height="30%"> <img src="assets/img/product_pics/modules/gps_02.jpg" width="30%" height="30%">
|
||||
<img src="assets/img/product_pics/modules/module_gps_01.png" width="30%" height="30%"> <img src="assets/img/product_pics/modules/module_gps_05.png" width="30%" height="30%">
|
||||
|
||||
***
|
||||
|
||||
:memo:**[描述](#描述)** :octocat:**[例程](https://github.com/m5stack/M5Stack/tree/master/examples/Modules/GPS)** :electric_plug:**[原理图](https://github.com/m5stack/M5-Schematic/blob/master/Modules/GPS.pdf)** 🛒**[购买链接](https://item.taobao.com/item.htm?spm=a1z10.3-c.w4002-1172588106.10.69f6425e8Agsbh&id=559647865340)**
|
||||
:memo:**[描述](#描述)** :octocat:**[例程](#例程)** :electric_plug:**[原理图](#原理图)** 🛒**[购买链接](https://item.taobao.com/item.htm?spm=a1z10.3-c.w4002-1172588106.10.69f6425e8Agsbh&id=559647865340)**
|
||||
|
||||
## 描述
|
||||
|
||||
GPS 模块是一款内置了GPS小模组的M5Stack系列可堆叠模块。内置的GPS小模块名字为UBLOX NEO-M8N。堆叠了M5Core之后,你可以用UiFlow、Arduino和MicroPython来编程它。它都可提供全球定位信息,即使你在室外的任何地方。
|
||||
GPS 模块是一款内置了GPS小模组的M5Stack系列可堆叠模块。内置的GPS小模块名字为UBLOX NEO-M8N。堆叠了M5Core之后,你可以用UiFlow、Arduino和MicroPython来编程它。它都可提供全球定位信息,即使你在室外的任何地方。模块上电之后,就会一直接收定位信息。M5Core烧录[例程](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Modules/GPS/Arduino),堆叠了GPS模块和连接PC串口之后,屏幕和PC的串口显示终端就会打印GPS接收到的信息。
|
||||
|
||||
## 特性
|
||||
|
||||
@@ -27,6 +27,44 @@ GPS 模块是一款内置了GPS小模组的M5Stack系列可堆叠模块。内置
|
||||
- 儿童定位手表
|
||||
- 基于GPS的物流跟踪管理
|
||||
|
||||
## 其他链接
|
||||
## 相关链接
|
||||
|
||||
- **[官方频道视频](https://i.youku.com/i/UNjE1ODA2MzE0OA==?spm=a2hzp.8253869.0.0)**
|
||||
|
||||
- **[官方论坛](http://forum.m5stack.com/)**
|
||||
|
||||
- **[GPS Info](https://www.u-blox.com/zh/product/neo-m8-series)** (GPS)
|
||||
|
||||
## 例程
|
||||
|
||||
### 1. Arduino IDE
|
||||
|
||||
```c++
|
||||
GPSRaw.begin(9600);
|
||||
|
||||
if(GPSRaw.available()) {
|
||||
int ch = GPSRaw.read();
|
||||
Serial.write(ch);
|
||||
}
|
||||
```
|
||||
|
||||
烧录[例程](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Modules/GPS/Arduino)之后,屏幕和串口显示终端会打印如下类似的信息
|
||||
|
||||
```
|
||||
$GPGSA,A,1,,,,,,,,,,,,,25.5,25.5,25.5*02
|
||||
$BDGSA,A,1,,,,,,,,,,,,,25.5,25.5,25.5*13
|
||||
$GPGSV,1,1,00*79
|
||||
$BDGSV,1,1,00*68
|
||||
$GNRMC,,V,,,,,,,,,,M*4E
|
||||
$GNVTG,,,,,,,,,M*2D
|
||||
$GNZDA,,,,,,*56
|
||||
$GPTXT,01,01,01,ANTENNA OPEN*25
|
||||
```
|
||||
|
||||
具体例程请点击[这里](https://github.com/m5stack/M5-ProductExampleCodes/tree/master/Modules/GPS/Arduino)。
|
||||
|
||||
<!-- ### 2. UIFlow -->
|
||||
|
||||
## 原理图
|
||||
|
||||
<img src="assets/img/product_pics/modules/gps_sch.png">
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
***
|
||||
|
||||
:memo:**[描述](#描述)**|🛒**[购买链接](https://item.taobao.com/item.htm?spm=a1z10.3-c.w4002-1172588106.13.51a6425e6lnUwE&id=583664452054)**
|
||||
:memo:**[描述](#描述)** 🛒**[购买链接](https://item.taobao.com/item.htm?spm=a1z10.3-c.w4002-1172588106.13.51a6425e6lnUwE&id=583664452054)**
|
||||
|
||||
<!-- :electric_plug:**[原理图](#原理图)** |:octocat:**[例程](#例程)**| -->
|
||||
|
||||
|
||||