Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 2.72 KB

README.md

File metadata and controls

51 lines (40 loc) · 2.72 KB

SensorsPayloadDecoder

SensorsPayloadDecoder is a library to read the payload information from the Bosch parking sensor and the Elsys ERS sensor binary data.

Build status GitHub issues GitHub forks GitHub stars License: MIT Known Vulnerabilities Blogger Patreon PayPal

Available for

  • Net 8.0

Net Framework latest and LTS versions

Basic usage

var boschDecoder = new BoschParkingSensorDecoder();
var data = new byte[] { 0x01 };
var result = boschDecoder.DecodePayload(data, MessageType.UplinkHeartbeatMessage);

var elsysDecoder = new ElsysHumidityPayloadDecoder();
var data = new byte[] { 0x05, 0x01, 0x11, 0x01 };
var result = elsysDecoder.DecodePayload(data);

Further links

Reference links Bosch parking sensor

Reference links Elsys ERS humidity sensor

Change history

See the Changelog.