From 181963817450347fe4d97ec4260ca8dfdbe46841 Mon Sep 17 00:00:00 2001
From: Davide Mor <davide.mor@skywarder.eu>
Date: Tue, 26 Sep 2023 21:30:20 +0200
Subject: [PATCH] Added appendix with measurement units and sensors to README

---
 README.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/README.md b/README.md
index acec495..7f3555b 100644
--- a/README.md
+++ b/README.md
@@ -22,3 +22,14 @@ void update(float acc_x, float acc_y, float acc_z, float gyro_x, float gyro_y,
 Then, inside your `update` function you will need to detect the appropriate events, and call the relative function at the correct time (`liftoff()`, `apogee()`, `landed()`).
 
 You can look at the provided `example.c` for a very simple algorithm, that in practice would never work. In your implementation you should at least use the provided inputs to detect these events.
+
+## Measurement units and sensors
+The input data comes from a 3-axis accelerometer, a 3-axis gyroscope and a barometer.
+
+Here are the various measurement units:
+|data         |unit  |
+|-------------|------|
+|timestamp    |ms    |
+|accelerometer|m/s^2 |
+|gyroscope    |rad/s |
+|barometer    |pascal|
\ No newline at end of file
-- 
GitLab