MKRNB

Communication

Enables NB/GRPS network connection using the Arduino MKR NB 1500 board.
This library also allows you to connect to internet through NarrowBand IoT or LTE Cat M1 networks.

Go to repository

Compatibility

This library is compatible with the samd architecture so you should be able to use it on the following Arduino boards:

Compatibility Note

Note: while the library is supposed to compile correctly on these architectures, it might require specific hardware features that may be available only on some boards.

Releases

To use this library, open the Library Manager in the Arduino IDE and install it from there.

Usage

With the Arduino MKR NB 1500 and this library you can connect to the internet over a GSM network. The on board module operates in 4G, using LTE Cat M1 or NB1.

Arduino MKR NB 1500 has a modem that transfers data from a serial port to the GSM network. The modem executes operations via a series of AT commands. The library abstracts low level communications between the modem and SIM card. It relies on the Serial library for communication between the modem and Arduino.

Typically, each individual command is part of a larger series necessary to execute a particular function. The library can also receive information and return it to you when necessary.

To use this library

#include <MKRNB.h>

Library structure

As the library enables multiple types of functionality, there are a number of different classes.

  • The NB class takes care of commands to the radio modem. This handles the connectivity aspects of the module and registers your system in the 4G infrastructure. All of your GSM/GPRS programs will need to include an object of this class to handle the necessary low level communication.
  • Send/receive SMS messages, managed by the NB_SMS class.
  • The GPRSClass is for connecting to the internet.
  • NBClient includes implementations for a client, similar to the Ethernet and WiFi libraries.
  • A number of utility classes such as NBScanner and NBModem

Library compatibility

The library tries to be as compatible as possible with the current Ethernet and WiFi101 library. Porting a program from an Arduino Ethernet or WiFi101 library to an Arduino with the MKR NB 1500 should be fairly easy. While it is not possible to simply run Ethernet or WiFi101 compatible code on the MKR NB 1500 as-is, some minor, library specific, modifications will be necessary, like including the GSM and GPRS specific libraries and getting network configuration settings from your cellular network provider.

Examples

You can visit the MKR NB 1500 documentation portal for tutorials, technical specifications and more. You can also browse through a set of examples at the Examples from Libraries page.

NB Class

NB_SMS Class

GPRS Class

NBClient and NBSSLClient Class

NBModem Class

NBScanner Class

NBPIN Class

NBUDP Class