Advertisement
Guest User

Krystofos alkoholikos

a guest
Nov 22nd, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  5.  
  6. </head>
  7. <body>
  8.  
  9. <div class="mypanel"></div>
  10.  
  11. <script>
  12. x();
  13. function x()
  14. {
  15. $.getJSON('http://192.168.21.222/data.json', function(data)
  16. {
  17.  
  18. var text = `1 teplota: ${data.cidla.Teplota1} &deg;C<br>
  19. 2 teplota: ${data.cidla.Teplota2} &deg;C<br>
  20. Vlhkost: ${data.cidla.Vlhkost} <br>
  21. Venkovni teplota: ${data.cidla.Venkovni} &deg;C<br>`
  22. $(".mypanel").html(text);
  23. })
  24.  
  25. setTimeout(x, 2000);
  26. }
  27. </script>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement