aqb-sensors-25a-html/index.html

20 lines
632 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="BeagleBone Dashboard for sensor cape">
<title>Sensor Dashboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>HTU21D data</h1>
<div id="htu21d">
<p>🌡️ Temperature: <span id="temp">--</span>C</p>
<p>💧 Humidity: <span id="hum">--</span>%</p>
</div>
<button onclick="fetchSensorData()">🔄 Refresh</button>
</div>
</body>
</html>