Reference Language | Libraries | Comparison | Changes
MKRNB : NB class
begin()
Description
Connects to the NB network identified on the SIM card.
Syntax
nb.begin()
nb.begin(pin)
nb.begin(pin, restart)
nb.begin(pin, restart, sync)
Parameters
- pin : character array with the PIN to access a SIM card (default = 0)
- restart : boolean, determines whether to restart modem or not (default= true)
- sync : boolean, synchronous (true, default) or asynchronous (false) mode
Returns
char : 0 if asynchronous. If synchronous, returns status : ERROR, IDLE, CONNECTING, NB_READY, GPRS_READY, TRANSPARENT_CONNECTED
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;
// Start NB 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");
}
void loop()
{
// once connected do something interesting
}
See Also
Reference Home
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a
Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.