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.
		
		
		
		
		
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			898 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			33 lines
		
	
	
		
			898 B
		
	
	
	
		
			HTML
		
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
| 	<meta charset="UTF-8">
 | |
| 	<meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
| 	<title> Sensor DashBoard </title>
 | |
| 	<link rel="stylesheet" href="style.css">
 | |
| </head>
 | |
| <body>
 | |
| 	<div class="sensor-wrapper">
 | |
| 	<div id="Temperature" class="container" >
 | |
| 	<h1> HTU21D </h1>
 | |
| 		<div class="sensor-title">Temperature</div>
 | |
| 		<div class="sensor-value" id="Temp-Value">--</div>
 | |
| 	</div>
 | |
| 	<div id="Humidity" class="container" >
 | |
| 	<h1> HTU21D </h1>
 | |
| 		<div class="sensor-title">Humidity</div>
 | |
| 		<div class="sensor-value" id="Hum-Value">--</div>
 | |
| 	</div>
 | |
| 	<div id="Brightness" class="container" >
 | |
| 	<h1> BH1750 </h1>
 | |
| 		<div class="sensor-title">Brightness</div>
 | |
| 		<div class="sensor-value" id="Bright-Value">--</div>
 | |
| 	</div>
 | |
| 
 | |
| 	<button onclick="location.reload()" class="reload-btn">Recargar datos</button>
 | |
| </body>
 | |
| 
 | |
| <script src='index.js?ver=2'> </script> 
 | |
| </html>
 | |
| 
 |