Skip to content

sinbrive/Sigfox-http-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 

Repository files navigation

Sigfox-htt-api

Simple access to Sigfox backend using processing.

inspired from https:/hecko/pySigfox

As for our student use case, only some data are retreived : seq nmber, data, time, device.

API documentation : here

Data returned by the backend :

{
  "data": [
  
  {
      "device": {
        "id": "3068E"
      },
      "time": 1634791138000,
      "data": "17",
      "rolloverCounter": 0,
      "seqNumber": 241,
      "rinfos": [],
      "satInfos": [],
      "nbFrames": 3,
      "operator": "SIGFOX_France",
      "country": "FRA",
      "computedLocation": [],
      "lqi": 3
    },
   ....
       {
      "device": {
        "id": "3068E"
      },
      "time": 1634745563000,
      "data": "28",
      "rolloverCounter": 0,
      "seqNumber": 237,
      "rinfos": [],
      "satInfos": [],
      "nbFrames": 3,
      "operator": "SIGFOX_France",
      "country": "FRA",
      "computedLocation": [],
      "lqi": 3
    }],
  "paging": {
    "next": "https://api.sigfox.com/v2/devices/3068E/messages?limit=100&before=1634045666000"
  }
}
 

To do :

  device_rename( device_id, new_name)

  groups_list()

  device_create( device, cert, devicetype)

  device_types_create( new)

  device_list(device_type)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published