www/gen_about.php

Wed, 01 May 2024 14:38:37 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 01 May 2024 14:38:37 +0200
changeset 715
f5d85af156ab
parent 688
8bf6389e59a2
permissions
-rw-r--r--

Added device_present() function to easy update device present from one-wire and simulator devices. When a simulator temperature sensor present is changed, the device table is changed too. Controlling simulator relays is now for each simulator. The simulator runs under the state machine. If something changed in the running simulator, all data is broadcasted over websocket. Completed the web editor.

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
page_header('About ThermFerm', NULL);
?>

   <div id="MainPanel">
    <div id="ContentPanel"></div>
    <div id='about_table'>
     <table style='width: 100%; padding: 10px;'>
      <tr><th colspan=2>About ThermFerm</th></tr>
      <tr><td> </td><td> </td></tr>
      <tr><td>Version:</td><td><?php echo $my_version;?> </td></tr>
      <tr><td>Written by:</td><td>M. Broek</td></tr>
      <tr><td>jQuery JavaScript:</td><td><a style="color:white; text-decoration:none;" href="https://jquery.com/">OpenJS Foundation</a></td></tr>
      <tr><td>Widgets and style:</td><td><a style="color:white; text-decoration:none;" href="https://www.jqwidgets.com/">jQWidgets</a></td></tr>
      <tr><td>Reconnecting Websocket:</td><td><a style="color:white; text-decoration:none;" href="https://github.com/joewalnes/reconnecting-websocket/">Joe Walnes</a></td></tr>
     </table>
    </div>
   </div>

<?php
page_footer();
?>

mercurial