From b087b10c490707ba00558f69f770b902ef2ab9bc Mon Sep 17 00:00:00 2001 From: Mika Date: Sun, 8 Feb 2026 03:06:30 +0000 Subject: [PATCH] Add data_logger/tests/data/example_sensor_data.json --- .../tests/data/example_sensor_data.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 data_logger/tests/data/example_sensor_data.json diff --git a/data_logger/tests/data/example_sensor_data.json b/data_logger/tests/data/example_sensor_data.json new file mode 100644 index 0000000..a63c186 --- /dev/null +++ b/data_logger/tests/data/example_sensor_data.json @@ -0,0 +1,32 @@ +[ + { + "timestamp": "2024-04-25T14:32:10Z", + "temperature": 21.7, + "vibration_amplitude": 0.005, + "humidity": 45.2 + }, + { + "timestamp": "2024-04-25T14:32:15Z", + "temperature": 21.8, + "vibration_amplitude": 0.006, + "humidity": 45.1 + }, + { + "timestamp": "2024-04-25T14:32:20Z", + "temperature": 21.9, + "vibration_amplitude": 0.0045, + "humidity": 45.5 + }, + { + "timestamp": "2024-04-25T14:32:25Z", + "temperature": 21.6, + "vibration_amplitude": 0.0051, + "humidity": 45.3 + }, + { + "timestamp": "2024-04-25T14:32:30Z", + "temperature": 21.5, + "vibration_amplitude": 0.0052, + "humidity": 45.4 + } +] \ No newline at end of file