62 lines
1.5 KiB
HTML
62 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="icon" type="image/png" href="icon.png">
|
|
<script src='https://cdn.plot.ly/plotly-2.26.0.min.js'></script>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css.css">
|
|
<title>Weerstation</title>
|
|
<style> html{
|
|
background-image: url(background.png);
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
|
|
} </style>
|
|
</head>
|
|
|
|
<nav>
|
|
<div class="menubalk">
|
|
<a href="index.html">Home</a>
|
|
<a class="active" href="statestiek.html">Station statestieken</a>
|
|
<div class="commandbar">
|
|
<button class="button" onclick="connect()">Connect</button>
|
|
<button class="button" onclick="disconnect()">Disconnect</button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<p id="counter"></p>
|
|
<div id="block" class="centerdata">
|
|
<div class="Datadisplay">
|
|
<div class="textblack">
|
|
<h1>Tempratuur is <span id="temp"></span></h1>
|
|
<div id="tempGraph"></div>
|
|
</div>
|
|
</div>
|
|
<div class="Datadisplay">
|
|
<div class="textblack">
|
|
<h1>Luchtsvochtigheid is <span id="humid"></span></h1>
|
|
<div id="humidGraph"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="Datadisplay">
|
|
<div class="textblack">
|
|
<h1>Licht is <span id="licht"></span></h1>
|
|
<div id="lightGraph"></div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<script src="js-ts/serialv2.js"> </script>
|
|
</body>
|
|
</html> |