Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thinger-io/sigfox-plugin
Sigfox Plugin Integration
https://github.com/thinger-io/sigfox-plugin
Last synced: 5 days ago
JSON representation
Sigfox Plugin Integration
- Host: GitHub
- URL: https://github.com/thinger-io/sigfox-plugin
- Owner: thinger-io
- License: mit
- Created: 2019-05-29T16:04:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-20T16:20:02.000Z (over 1 year ago)
- Last Synced: 2023-02-28T02:08:18.768Z (over 1 year ago)
- Language: JavaScript
- Size: 99.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
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}
}
```