#include void setup() { Serial.begin(9600); while(!Serial) {}; if (!SigFox.begin()) { Serial.println("Shield error or not present!"); return; } String version = SigFox.SigVersion(); String ID = SigFox.ID(); String PAC = SigFox.PAC(); // Display module informations Serial.println("MKRFox1200 Sigfox first configuration"); Serial.println("SigFox FW version "+ version); Serial.println("ID = "+ ID); Serial.println("PAC = "+ PAC); Serial.println(""); Serial.println("Register your board on https://backend.sigfox.com/activate with provided ID and PAC"); delay(100); // Send the module to the deepest sleep SigFox.end(); } void loop() { }