|
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<meta name="viewport" content="width=device-width" /> |
|
<title>My static Space</title> |
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> |
|
|
|
|
|
<style> |
|
input[type="number"]::-webkit-inner-spin-button, |
|
input[type="number"]::-webkit-outer-spin-button { |
|
-webkit-appearance: inner-spin-button; |
|
opacity: 1; |
|
} |
|
|
|
input[type="number"] { |
|
-moz-appearance: textfield; |
|
} |
|
|
|
</style> |
|
|
|
|
|
</head> |
|
<body> |
|
|
|
<div class="container mt-3"> |
|
<div class="container text-center"> |
|
<h1>Настройки системы</h1> |
|
</div> |
|
<br> |
|
<h4>Уроыень pH</h4> |
|
<p>EEPROM : <span id="pH_eep"></span></p> |
|
|
|
<form> |
|
<label for="pH_set">Новое : </label> |
|
<input type="number" id="pH_set" value="5.6" min="1" max="14" step="0.05"> |
|
</form> |
|
|
|
|
|
<div class="card-group"> |
|
<div class="card"> |
|
<img src="..." class="card-img-top" alt="..."> |
|
<div class="card-body"> |
|
<h5 class="card-title">Card title</h5> |
|
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p> |
|
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> |
|
</div> |
|
</div> |
|
<div class="card"> |
|
<img src="..." class="card-img-top" alt="..."> |
|
<div class="card-body"> |
|
<h5 class="card-title">Card title</h5> |
|
<p class="card-text">This card has supporting text below as a natural lead-in to additional content.</p> |
|
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> |
|
</div> |
|
</div> |
|
<div class="card"> |
|
<img src="..." class="card-img-top" alt="..."> |
|
<div class="card-body"> |
|
<h5 class="card-title">Card title</h5> |
|
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.</p> |
|
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
<script> |
|
|
|
|
|
function updateValues(data) { |
|
document.getElementById("pH_eep").textContent = data.ph_eep; |
|
|
|
|
|
} |
|
|
|
function fetchValues() { |
|
var xhr = new XMLHttpRequest(); |
|
xhr.open("GET", "/settings_api", true); |
|
xhr.setRequestHeader("Content-Type", "application/json"); |
|
xhr.onreadystatechange = function () { |
|
if (xhr.readyState === 4 && xhr.status === 200) { |
|
var response = JSON.parse(xhr.responseText); |
|
updateValues(response); |
|
} |
|
}; |
|
xhr.send(); |
|
} |
|
|
|
fetchValues(); |
|
setInterval(fetchValues, 10000); |
|
</script> |
|
</body> |
|
</html> |