-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfullscreen-lcd.php
118 lines (102 loc) · 5.45 KB
/
fullscreen-lcd.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
/*
Copyright (C) 2018, 2019 Lee C. Bussy (@LBussy)
This file is part of LBussy's BrewPi Tools Remix (BrewPi-Tools-RMX).
BrewPi Script RMX is free software: you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
BrewPi Script RMX is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with BrewPi Script RMX. If not, see <https://www.gnu.org/licenses/>.
These scripts were originally a part of brewpi-script, an installer for
the BrewPi project. Legacy support (for the very popular Arduino
controller) seems to have been discontinued in favor of new hardware.
All credit for the original brewpi-script goes to @elcojacobs,
@m-mcgowan, @rbrady, @steersbob, @glibersat, @Niels-R and I'm sure
many more contributors around the world. My apologies if I have
missed anyone; those were the names listed as contributors on the
Legacy branch.
See: 'original-license.md' for notes about the original project's
license and credits.
*/
// load default settings from file
$defaultSettings = file_get_contents('defaultSettings.json');
if ($defaultSettings == false) die("Cannot open: defaultSettings.json");
$settingsArray = json_decode(prepareJSON($defaultSettings), true);
if (is_null($settingsArray)) die("Cannot decode: defaultSettings.json");
// overwrite default settings with user settings
if(file_exists('userSettings.json')){
$userSettings = file_get_contents('userSettings.json');
if($userSettings == false) die("Cannot open: userSettings.json");
$userSettingsArray = json_decode(prepareJSON($userSettings), true);
if(is_null($settingsArray)) die("Cannot decode: userSettings.json");
foreach ($userSettingsArray as $key => $value) {
$settingsArray[$key] = $userSettingsArray[$key];
}
}
$beerName = $settingsArray["beerName"];
$tempFormat = $settingsArray["tempFormat"];
$profileName = $settingsArray["profileName"];
$dateTimeFormat = $settingsArray["dateTimeFormat"];
$dateTimeFormatDisplay = $settingsArray["dateTimeFormatDisplay"];
function prepareJSON($input) {
//This will convert ASCII/ISO-8859-1 to UTF-8.
//Be careful with the third parameter (encoding detect list), because
//if set wrong, some input encodings will get garbled (including UTF-8!)
$input = mb_convert_encoding($input, 'UTF-8', 'ASCII,UTF-8,ISO-8859-1');
//Remove UTF-8 BOM if present, json_decode() does not like it.
if(substr($input, 0, 3) == pack("CCC", 0xEF, 0xBB, 0xBF)) $input = substr($input, 3);
return $input;
}
$title = 'BrewPi Remix LCD';
?>
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title><?php echo $title; ?></title>
<link type="text/css" href="css/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet" />
<link type="text/css" href="css/style.css" rel="stylesheet"/>
<link type="text/css" href="css/lcd.css" rel="stylesheet"/>
<link rel="apple-touch-icon" href="images/touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/touch-icon-ipad-retina.png">
<link rel="icon" type="image/png" href="images/favicon.ico">
<meta name="apple-mobile-web-app-title" content="BrewPi">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="<?php echo $title; ?>">
</head>
<body>
<div id="lcd" class="lcd-display"><span class="lcd-text">
<span class="lcd-line2" id="lcd-line-4">Tracking: <?php echo wordwrap(urldecode($beerName), 21);?></span>
<span class="lcd-line2" id="lcd-line-0">Live LCD waiting</span>
<span class="lcd-line2" id="lcd-line-1">for update from</span>
<span class="lcd-line2" id="lcd-line-2">script.</span>
<span class="lcd-line2" id="lcd-line-3"></span>
</div>
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script><!-- Need this for LCD -->
<script type="text/javascript" src="js/jquery-ui-1.10.3.custom.min.js"></script><!-- Need this for LCD -->
<!-- <script type="text/javascript" src="js/jquery-ui-timepicker-addon.js"></script> -->
<!-- <script type="text/javascript" src="js/spin.js"></script> -->
<!-- <script type="text/javascript" src="js/dygraph-combined.js"></script> -->
<script type="text/javascript">
// pass parameters to JavaScript
window.tempFormat = <?php echo "'$tempFormat'" ?>;
window.beerName = <?php echo "\"$beerName\""?>;
window.profileName = <?php echo "\"$profileName\""?>;
window.dateTimeFormat = <?php echo "\"$dateTimeFormat\""?>;
window.dateTimeFormatDisplay = <?php echo "\"$dateTimeFormatDisplay\""?>;
</script>
<script type="text/javascript" src="js/main.js"></script><!-- Need this for LCD -->
<!-- <script type="text/javascript" src="js/device-config.js"></script> -->
<!-- <script type="text/javascript" src="js/control-panel.js"></script> -->
<!-- <script type="text/javascript" src="js/maintenance-panel.js"></script> -->
<!-- <script type="text/javascript" src="js/beer-chart.js"></script> -->
<!-- <script type="text/javascript" src="js/profile-table.js"></script> -->
</body>
</html>