Samples
{{ readings|length }}
{% extends "base.html" %}
{% block title %}{{ device.name }} - SwitchBot Temps{% endblock %}
{% block content %}
Device readings {{ device.device_type }}. Local timezone: {{ timezone }}.
Back to dashboard
{{ device.name }}
Temperature readings for {{ date }}.
Timestamped readings for this device and day.
| Timestamp | Temperature | Humidity | Battery |
|---|---|---|---|
| {{ reading.timestamp }} | {{ "%.1f"|format(reading.temperature) if reading.temperature is not none else "n/a" }}°C | {{ reading.humidity if reading.humidity is not none else "n/a" }}% | {{ reading.battery if reading.battery is not none else "n/a" }}% |
| No readings found for this day. | |||