Hello,
I have a problem, I'm using a Ubee Sodaq Sara R410 to communicate using NB-Iot, which can be implemented like Xbee.
But this is my first approach to this kind of module, so I know that I can control with the microcontroller that is integarted in Arduino, but I have problem to set in software the parameter to use.
This module is usually used with Autonomo Sodaq or Mbili (which are programmable with Arduino IDE) and in this case I have to set :
#include <Arduino.h>
// #define R4XX // Uncomment when you use the ublox R4XX module
#if defined(ARDUINO_SODAQ_AUTONOMO)
/* SODAQ AUTONOMO + SODAQ (uBlox SARA) UBee */
#define DEBUG_STREAM SerialUSB
#define MODEM_STREAM Serial1
#define powerPin BEE_VCC
#define enablePin BEEDTR
#define powerTogglePin BEERTS
#elif defined(ARDUINO_AVR_SODAQ_MBILI)
/* SODAQ MBILI + SODAQ (uBlox SARA) UBee */
#define DEBUG_STREAM Serial
#define MODEM_STREAM Serial1
#define powerPin 20
#define enablePin BEEDTR
#define powerTogglePin BEERTS
#else
#error "Please use one of the listed boards or add your board."
#endif
Can you help me to set the right parameters?
The link of Module Sodaq