Initializes the Sigfox library and module
SigFox.begin();
None
true if correctly configured, false otherwise
#include <SigFox.h>
#include <ArduinoLowPower.h>
void setup() {
Serial.begin(115200);
while (!Serial) {};
if (!SigFox.begin()) {
Serial.println("Shield error or not present!");
return;
}
void loop(){
}