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


Arduino MKRNB - shutdown()用法及代码示例


说明

通过关闭调制解调器电源断开与 SIM 卡上标识的 NB 网络的连接。

用法

nb.shutdown()

参数

返回

如果成功则为真

示例

#include <MKRNB.h>

#define PINNUMBER ""

NB nb; // include a 'true' parameter for debug enabled

void setup()
{
  // initialize serial communications
  Serial.begin(9600);

  // connection state
  boolean notConnected = true;

  // StartNB Module
  // If your SIM has PIN, pass it as a parameter of begin() in quotes
  while(notConnected)
  {
    if(nb.begin(PINNUMBER)==NB_READY)
      notConnected = false;
    else
    {
      Serial.println("Not connected");
      delay(1000);
    }
  }

  Serial.println("NB initialized");

  nb.shutdown();
  Serial.println("NB terminated");

}

void loop()
{
}

相关用法


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