Updated documentation

This commit is contained in:
Hendrik Borras 2017-10-13 15:40:45 +02:00
parent e99a35a4fd
commit c2c139e31f
2 changed files with 31 additions and 19 deletions

View file

@ -0,0 +1,31 @@
This document describes the output from the Arduino DUE, that is parsed and stored.
There is potentially more data coming from the Arduino, but it is not used at the moment and simply ignored.
Directly parsed into the SQLite database
Event: sub second micros:SubSeconds; Event Count:x
Meaning: An event has happened at SubSeconds in this second. Event Count is as continuous counter starting at boot.
TemperatureC: X;
Meaning: Current average of all temperature sensors, in °C.
Humidity: X;
Meaning: Relative humidity in %.
AccelX: X;
Meaning: Acceleration in X-direction in m/s^2.
AccelY: X;
Meaning: Acceleration in Y-direction in m/s^2.
AccelZ: X;
Meaning: Acceleration in Z-direction in m/s^2.
MagX: X;
Meaning: Magnetic field in X-direction in Gauss.
MagY: X;
Meaning: Magnetic field in X-direction in Gauss.
MagZ: X;
Meaning: Magnetic field in X-direction in Gauss.
Pressure: X;
Meaning: Pressure in mbar.
Strings starting with '$' are strings coming from the GPS.
From there we extract:
Longitude
Latitude
UTCUnixTime
See the NEMA documentation for more info on these strings: http://aprs.gids.nl/nmea/#gga

View file

@ -1,19 +0,0 @@
Output from Arduino:
Directly parsed into the SQLite database
Event: sub second micros:SubSeconds; Event Count:x
TemperatureC: X;
Humidity: X;
AccelX: X;
AccelY: X;
AccelZ: X;
MagX: X;
MagY: X;
MagZ: X;
Pressure: X;
To extract from GPS strings:
Longitude: X;
Latitude: X;
UTCUnixTime: x;