From 71d621c75f5f5d7f4561a74229fa661e057c25d8 Mon Sep 17 00:00:00 2001 From: Mika Date: Sun, 5 Apr 2026 02:07:40 +0000 Subject: [PATCH] Add magnetometer_data_logger/tests/data/sample_sensor_data.json --- .../tests/data/sample_sensor_data.json | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 magnetometer_data_logger/tests/data/sample_sensor_data.json diff --git a/magnetometer_data_logger/tests/data/sample_sensor_data.json b/magnetometer_data_logger/tests/data/sample_sensor_data.json new file mode 100644 index 0000000..6a87db4 --- /dev/null +++ b/magnetometer_data_logger/tests/data/sample_sensor_data.json @@ -0,0 +1,34 @@ +[ + { + "timestamp": "2024-06-21T22:15:30Z", + "Bx": 45.67, + "By": -12.34, + "Bz": 5.89, + "temperature": 18.5, + "humidity": 72.1 + }, + { + "timestamp": "2024-06-21T22:16:00Z", + "Bx": 46.12, + "By": -11.97, + "Bz": 6.15, + "temperature": 18.6, + "humidity": 71.9 + }, + { + "timestamp": "2024-06-21T22:16:30Z", + "Bx": 45.98, + "By": -12.10, + "Bz": 6.00, + "temperature": 18.6, + "humidity": 72.0 + }, + { + "timestamp": "2024-06-21T22:17:00Z", + "Bx": 46.05, + "By": -12.05, + "Bz": 5.95, + "temperature": 18.7, + "humidity": 71.8 + } +] \ No newline at end of file