Reference   Language | Libraries | Comparison | Changes

SigFox

SigFox.begin()

Description

Initializes the Sigfox library and module

Syntax

SigFox.begin();

Parameters

None

Returns

true if correctly configured, false otherwise

Example

#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(){
}

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.