https://github.com/thinger-io/sigfox-plugin
Sigfox Plugin Integration
https://github.com/thinger-io/sigfox-plugin
Last synced: 2 months ago
JSON representation
Sigfox Plugin Integration
- Host: GitHub
- URL: https://github.com/thinger-io/sigfox-plugin
- Owner: thinger-io
- License: mit
- Archived: true
- Created: 2019-05-29T16:04:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-15T21:48:19.000Z (about 2 years ago)
- Last Synced: 2025-02-23T23:52:46.473Z (4 months ago)
- Language: JavaScript
- Size: 112 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## 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.
```json
{
"device" : "{device}",
"snr" : {snr},
"rssi" : {rssi},
"station": "{station}",
"latitude": {lat},
"longitude": {lng},
"temperature" : {customData#temp},
"humidity" : {customData#hum}
}
```