www-thermferm/getlog.php

Wed, 16 Sep 2015 22:05:05 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 16 Sep 2015 22:05:05 +0200
changeset 397
00ca08f5a6f8
parent 358
8b7ef338bf49
child 512
fd1354e2a045
permissions
-rw-r--r--

Fermentation profiles now have a low and high temperature setting so that you can use a temperture window. Each profile step can now set for beer or air temperature reference. The logfiles have an extra temperature field for this. Bumped to version 0.4.2.

123
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
1 <?php
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
2 /*****************************************************************************
397
00ca08f5a6f8 Fermentation profiles now have a low and high temperature setting so that you can use a temperture window. Each profile step can now set for beer or air temperature reference. The logfiles have an extra temperature field for this. Bumped to version 0.4.2.
Michiel Broek <mbroek@mbse.eu>
parents: 358
diff changeset
3 * Copyright (C) 2014-2015
123
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
4 *
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
5 * Michiel Broek <mbroek at mbse dot eu>
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
6 *
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
7 * This file is part of ThermFerm
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
8 *
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
9 * This is free software; you can redistribute it and/or modify it
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
10 * under the terms of the GNU General Public License as published by the
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
11 * Free Software Foundation; either version 2, or (at your option) any
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
12 * later version.
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
13 *
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
14 * ThermFerm is distributed in the hope that it will be useful, but
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
17 * General Public License for more details.
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
18 *
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
19 * You should have received a copy of the GNU General Public License
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
20 * along with ThermFerm; see the file COPYING. If not, write to the Free
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
21 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
22 *****************************************************************************/
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
23
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
24 require_once('utilities.php');
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
25
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
26
196
4d7a96c5d1ff Code cleanup
Michiel Broek <mbroek@mbse.eu>
parents: 191
diff changeset
27 $answer = send_cmd("LIST LOG ".$_GET["unit"]);
123
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
28 $arr = explode("\r\n", $answer);
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
29
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
30
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
31 $row = '[';
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
32
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
33 /* We don't use json_encode because it doesn't work for our purpose */
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
34 if (startsWith($arr[0], "212")) {
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
35 $j = 1;
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
36 while (1) {
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
37 if (strcmp($arr[$j], ".") == 0)
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
38 break;
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
39 if ($j > 1)
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
40 $row .= ',';
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
41 $f = explode(",", $arr[$j]);
299
d1c52fb43e30 Show heater/cooler usgae in percent on the web page. Bunped to version 0.2.5
Michiel Broek <mbroek@mbse.eu>
parents: 266
diff changeset
42 $heater = $f[5] / 100;
d1c52fb43e30 Show heater/cooler usgae in percent on the web page. Bunped to version 0.2.5
Michiel Broek <mbroek@mbse.eu>
parents: 266
diff changeset
43 $cooler = $f[6] / 100;
397
00ca08f5a6f8 Fermentation profiles now have a low and high temperature setting so that you can use a temperture window. Each profile step can now set for beer or air temperature reference. The logfiles have an extra temperature field for this. Bumped to version 0.4.2.
Michiel Broek <mbroek@mbse.eu>
parents: 358
diff changeset
44 $row .= '{"Date":"'.$f[0].'","Mode":"'.$f[1].'","Air":"'.$f[2].'","Beer":"'.$f[3].'","Target_lo":"'.$f[4].'",';
00ca08f5a6f8 Fermentation profiles now have a low and high temperature setting so that you can use a temperture window. Each profile step can now set for beer or air temperature reference. The logfiles have an extra temperature field for this. Bumped to version 0.4.2.
Michiel Broek <mbroek@mbse.eu>
parents: 358
diff changeset
45 $row .= '"Heater":'.$heater.',"Cooler":'.$cooler.',"HeatUse":'.$f[7].',"CoolUse":"'.$f[8].'","Room":"'.$f[9].'","Target_hi":"'.$f[10].'"}';
123
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
46 $j++;
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
47 }
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
48 }
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
49
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
50 $row .= ']';
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
51 echo $row;
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
52
597688feda2f Now uses the real data for the chart
Michiel Broek <mbroek@mbse.eu>
parents:
diff changeset
53 ?>

mercurial