Skip to content

indexpage

Timur Chikichev edited this page Nov 9, 2021 · 3 revisions

Message format

Each message consists of one line of json format and describes an individual measurement. The line types are shown below.

Type 101 - ACCELEROMETER

 {“timestamp”:}

### Type 102 - GYROSCOPE

```{“timestamp”: <timestamp>, “type”: 102, “values”: [value_x, value_y, value_z]}

Type 103 - MAGNETOMETER

 {“timestamp”:}

### Type 104 -  BAROMETER

```{“timestamp”: <timestamp>, “type”: 104, “values”: [pressure, pressure, pressure]}

Type 105 - ORIENTATION

 {“timestamp”:}

### Type 106 - LOCATION

```{“timestamp”: <timestamp>, “type”: 106, “values”: [lat, lon, accuracy]}

Type 201 - WIFI

 {“timestamp”:}

### Type 202 - BLE

```{“timestamp”: <timestamp>, “type”: 202, “bssid”: <bssid>, “rssi”: <rssi>}

Type 203 - BEACON

 {“timestamp”:}

### Type 204 - EDDYSTONE

```{“timestamp”: <timestamp>, “type”: 204, “bssid”: <bssid>, “rssi”: <rssi>, “power” <power>}

Type 205 - WIFI RTT

 {“timestamp”:}

### Type 300 - NMEA

```{“timestamp”: <timestamp>, “type”: 300, “sentence_number”: <sentence_number>, “num_sats”: <num_sats>}

Type 900 - Comment

{“timestamp”: <timestamp>, “type”: 900, “comment”: <comment>}


Updated on 2021-11-09 at 15:07:06 +0300

Clone this wiki locally