Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 589 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 589 Bytes

Sigfox Sensit

Very simple npm module to parse messages sent by a Sensit device

Install

$ npm install --save sensit-sigfox

Use

const SensitMsg = require('./index.js');
var testFrame = "a06e1119";
var msg = SensitMsg.parse(testFrame);

Output

The parse(hexFrame) will gives back an object with the following attributes : mode, frameType, as well as mode-specific attributes (battery, temperature, ...)

⚠️ Work in progress

  • Need to publish the Sensit frames documentation here
  • All modes are not properly parsed yet