You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
587 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>
</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>