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

thinger-io/sigfox-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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}
 }