ERNICommunity / dust-measurement-network

Dust Measurement Network - air pollution data measurement
MIT License
4 stars 5 forks source link

TechREQ - Detector Data Stream Binary Format #16

Open dniklaus opened 5 years ago

dniklaus commented 5 years ago

TechREQ

Description In order to send sensor data over TTN, a binary format has to be defined for the serialization.

The binary serialized data shall be handled by protobuf environment. The following protobuf format description shall apply:

syntax = "proto2";

message dustSensorMeasurement {
    required float particularMatter2_5um  = 1;
    required float particularMatter10um   = 2;
    required float temperature            = 3;
    required float humidity               = 4;
}

Rationale

Links