Cooling Unit Example

A cooling unit on a machine is usually very essential to its functioning. This example shows a possible implementation of a cooling unit status web page. This web page could be accessed from any employee on the company's network and consists of various temperature sensor readings. Each individual sensor is on a different part of the cooling unit.

To setup the EZ Web Lynx for this example, simply connect five Dallas DS1631 I2C temperature sensors to pins 10 and 11 with address pins of zero through four.

Sample HTML - Cooling Unit

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"/>
  </head>
  <body>
    <p style="text-align:center;">
      <b><span style="font-size:28pt">Cooling Unit Status</span></b>
    </p>
    <p>
      <hr/>
    </p>
    <p>
       
    </p>
    <p>
      <b>Air Temperature:</b> <!--(READ TEMPF0)-->ºF
    </p>
    <p>
      <b>Incoming Temperature:</b> <!--(READ TEMPF1)-->ºF
    </p>
    <p>
      <b>Outgoing Temperature:</b> <!--(READ TEMPF2)-->ºF
    </p>
    <p>
      <b>Motor Temperature: </b><!--(READ TEMPF3)-->ºF
    </p>
    <p>
      <b>Internal Temperature:</b> <!--(READ TEMPF4)-->ºF
    </p>
  </body>
</html>