40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
$options = array(
|
|
'http' => array(
|
|
'method' => 'GET',
|
|
'header' => 'x-ha-access: nXa7LiR1PG'
|
|
)
|
|
);
|
|
|
|
$context = stream_context_create($options);
|
|
$data = json_decode(file_get_contents("http://192.168.0.25:8123/api/states", false, $context), true);
|
|
|
|
foreach($data as $item) {
|
|
$output[$item["entity_id"]] = $item;
|
|
}
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
|
<style type="text/css">
|
|
* {box-sizing: border-box; margin: 0; border: 0; padding: 0; font-family: 'Open Sans', sans-serif; font-weight: 400; text-align: center;}
|
|
html, body {height: 100%; min-height: 100%;}
|
|
body {background-color: #333333;}
|
|
p {font-size: 5vh; color: #FFFFFF; opacity: 0.5;}
|
|
h1 {font-size: 14vh; color: #FFFFFF;}
|
|
#container {width: 100%; height: 100%; border: 1.5vw solid #333333; background: linear-gradient(135deg, #a25cbf 0%,#009cde 100%);}
|
|
#centered {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
|
|
</style>
|
|
<body>
|
|
<div id="container">
|
|
<div id="centered">
|
|
<p>Where tf is Jason?</p>
|
|
<h1><? echo ($output['device_tracker.jasonsphone_jason']['state'] == 'away') ? 'Nobody Knows' : 'At '.ucwords($output['device_tracker.jasonsphone_jason']['state']); ?></h1>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|