MKRNB - shutdown()

Description

Disconnects from the NB network identified on the SIM card by powering the modem off.

Syntax

nb.shutdown()

Parameters

none

Returns

True if successful

Example

#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()
{
}