“GPS()”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
第30行: 第30行:
 
*[[GPS.begin()|begin()]]
 
*[[GPS.begin()|begin()]]
 
*[[GPS.available()|available()]]
 
*[[GPS.available()|available()]]
 +
*[[GPS.data|各项数据]]
 
<br>
 
<br>
  
 
[[https://wiki.microduino.cn/index.php/GPS_Reference 返回GPS库语法手册]]
 
[[https://wiki.microduino.cn/index.php/GPS_Reference 返回GPS库语法手册]]

2017年7月27日 (四) 10:03的版本

针对软、硬串口有不同的函数定义
Microduino_GPS(SoftwareSerial *ser);    
Microduino_GPS(HardwareSerial *ser); 

  • 作用:

Module_GPS库的构造函数


  • 参数:
  • ser:串口指针


  • 例子:这里以硬串口通讯为例
#include <Microduino_GPS.h>
Microduino_GPS GPS(&Serial1);

void setup(){
}

void loop(){
}


其他


[返回GPS库语法手册]