1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-01 03:36:05 +01:00
Files
core/tests/components/opensensemap/fixtures/station.json
T
AlCalzone 0b687df9f8 Migrate opensensemap to UI configuration (#171066)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-authored-by: Joostlek <joostlek@outlook.com>
2026-05-26 23:22:57 +02:00

35 lines
763 B
JSON

{
"_id": "test-station-id",
"name": "Test Station",
"exposure": "outdoor",
"model": "homeV2EthernetFeinstaub",
"description": "Test fixture station",
"currentLocation": {
"coordinates": [13.0, 52.0],
"type": "Point",
"timestamp": "2024-01-01T00:00:00.000Z"
},
"sensors": [
{
"_id": "sensor-pm25",
"title": "PM2.5",
"unit": "µg/m³",
"sensorType": "SDS 011",
"lastMeasurement": {
"value": "5.42",
"createdAt": "2024-01-01T00:00:00.000Z"
}
},
{
"_id": "sensor-pm10",
"title": "PM10",
"unit": "µg/m³",
"sensorType": "SDS 011",
"lastMeasurement": {
"value": "9.17",
"createdAt": "2024-01-01T00:00:00.000Z"
}
}
]
}