Hi,
I use this PHP script on my website to show the actual temperature in my living room.
But this value doesn't auto update.
Can someone help me to make this script auto update?
#!/usr/bin/php
<?php
$json_string = file_get_contents("http://192.168.1.37:8080/json.htm?type=devices&rid=37");
$parsed_json = json_decode($json_string, true);
$test_link = "/home/pi/domoticz/scripts/test_1.txt";
$test_data = fopen ($test_link, "w+");
fwrite ($test_data, print_R($parsed_json, TRUE));
fclose ($test_data);
$parsed_json = $parsed_json['result'][0];
$temp = $parsed_json['Temp'];
echo "".$temp.""."\n";
Thanks
PHP script show value
Moderator: leecollings
- Egregius
- Posts: 2592
- Joined: Thursday 09 April 2015 12:19
- Target OS: Linux
- Domoticz version: v2024.7
- Location: Beitem, BE
- Contact:
Re: PHP script show value
Depending on your needs you could use a small javascript to refresh the browser window:
You could also have a look at my PHPFloorplan and unleash the power of PHP on Domoticz 
Code: Select all
<script type="text/javascript">
setTimeout("window.location.href=window.location.href;",15000);
</script>

Who is online
Users browsing this forum: No registered users and 1 guest