SensorsPayloadDecoder is a library to read the payload information from the Bosch parking sensor and the Elsys ERS sensor binary data.
- Net 8.0
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);
- https://iot-shop.de/wp-content/uploads/2019/04/parking-lot-sensor-communication-interface.pdf
- https://iot-shop.de/produkt/bosch-parksensor
- https://www.bosch-connectivity.com/de/produkte/parking-lot-sensor/
- https://www.bosch-connectivity.com/de/produkte/parking-lot-sensor/downloads/
- https://www.elsys.se/en/elsys-payload/
- https://www.elsys.se/en/ers-eye/
- https://www.elsys.se/en/wp-content/uploads/sites/3/2018/06/ERS-data-sheet.pdf
- https://www.elsys.se/en/lora-doc/
See the Changelog.