Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
28 lines (21 loc) · 915 Bytes

README.md

File metadata and controls

executable file
·
28 lines (21 loc) · 915 Bytes

Sigfox

Thinger.io plugin for handling Sigfox integration.

Plugin features

  • Auto device and buckets provisioning. It can create new devices and data buckets for all new devices sending data to the Sigfox network.
  • Insert new data points in the corresponding data bucket.
  • Update device location in the console if "latitude" and "longitude" fields are set in the callback call.

Sigfox Integration

It is mandatory to send the device in the callback payload. Other optional values are signal or location information extracted from Sigfox.

 {
    "device" : "{device}",
    "snr" : {snr},
    "rssi" : {rssi},
    "station": "{station}",
    "latitude": {lat},
    "longitude": {lng},
    "temperature" : {customData#temp},
    "humidity" : {customData#hum}
 }