当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino Arduino_MKRGPS - wakeup()用法及代码示例


从待机模式唤醒 GPS。

用法

GPS.wakeup()

参数

None。

返回

None。

示例

// Put the GPS in standby mode
Serial.println("Standby mode");
GPS.standby();

// Wait for 10 seconds
delay(10000);

// Wake up the GPS
Serial.println("Wakeup");
GPS.wakeup();

// Wait for new GPS data to become available
Serial.print("Waiting new location data... ");
while (!GPS.available());

// ...

相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 Arduino_MKRGPS - wakeup()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。