From b02ad5e1da9d9ec69d215e06bf55f6a203ab081d Mon Sep 17 00:00:00 2001 From: Mika Date: Sun, 1 Mar 2026 03:11:38 +0000 Subject: [PATCH] Add sensor_logging/tests/data/sample_sensor_log.json --- .../tests/data/sample_sensor_log.json | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 sensor_logging/tests/data/sample_sensor_log.json diff --git a/sensor_logging/tests/data/sample_sensor_log.json b/sensor_logging/tests/data/sample_sensor_log.json new file mode 100644 index 0000000..e96031b --- /dev/null +++ b/sensor_logging/tests/data/sample_sensor_log.json @@ -0,0 +1,32 @@ +[ + { + "sensor_id": "SensorA", + "temperature": 22.5, + "humidity": 45.2, + "timestamp": "2024-05-18T14:30:00Z" + }, + { + "sensor_id": "SensorB", + "temperature": 21.8, + "humidity": 47.0, + "timestamp": "2024-05-18T14:31:00Z" + }, + { + "sensor_id": "SensorA", + "temperature": 22.6, + "humidity": 44.8, + "timestamp": "2024-05-18T14:32:00Z" + }, + { + "sensor_id": "SensorC", + "temperature": 23.1, + "humidity": 43.5, + "timestamp": "2024-05-18T14:33:30Z" + }, + { + "sensor_id": "SensorA", + "temperature": -1.2, + "humidity": 99.9, + "timestamp": "2024-05-18T23:59:59Z" + } +] \ No newline at end of file