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.
21 lines
654 B
HTML
21 lines
654 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 id="refresh">🔄 Refresh</button>
|
|
</div>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |