Advertisement
Guest User

Untitled

a guest
May 14th, 2023
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <style type="text/css">
  4. .button {
  5.   background-color: #4CAF50; /* Green */
  6.   border: none;
  7.   color: white;
  8.   padding: 15px 32px;
  9.   text-align: center;
  10.   text-decoration: none;
  11.   display: inline-block;
  12.   font-size: 16px;
  13. }
  14. </style>
  15. <body style="background-color: #f9e79f ">
  16. <center>
  17. <div>
  18. <h1>ESP8266 WEBSERVER</h1>
  19. </center>
  20. </div>
  21.  <br>
  22. <div><h2>
  23.   Temp(C): <span id="nahodnecislo">0</span><br><br>
  24. </h2>
  25. </div>
  26.  
  27. <script>
  28. setInterval(function()
  29. {
  30.   getData();
  31. }, 2000);
  32. function getData() {
  33.   var xhttp = new XMLHttpRequest();
  34.   xhttp.onreadystatechange = function() {
  35.     if (this.readyState == 4 && this.status == 200) {
  36.      document.getElementById("nahodnecislo").innerHTML =
  37.      this.responseText;
  38.     }
  39.   };
  40.   xhttp.open("GET", "adcread", true);
  41.   xhttp.send();
  42. }
  43. </script>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement