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

来自Microduino Wikipedia
跳转至: 导航搜索
(创建页面,内容为“<pre style="color:green"> 针对软、硬串口有不同的函数定义 GPS(SoftwareSerial *ser); GPS(HardwareSerial *ser); </pre> *'''作用''':<br> Module_G...”)
 
第1行: 第1行:
 
<pre style="color:green">
 
<pre style="color:green">
 
针对软、硬串口有不同的函数定义
 
针对软、硬串口有不同的函数定义
GPS(SoftwareSerial *ser);     
+
Microduino_GPS(SoftwareSerial *ser);     
GPS(HardwareSerial *ser);  
+
Microduino_GPS(HardwareSerial *ser);  
  
 
</pre>
 
</pre>

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

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

  • 作用:

Module_GPS库的构造函数


  • 参数:
  • ser:串口指针


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

void setup(){
}

void loop(){
}


其他


[返回GPS库语法手册]