Hamburger Hamburger

Heating and Ventilation Control

/HVdoc

Keine Erläuterungen gefunden.

<?php
function HVdoc(){
    $content ="<p><a href='https://arne.jachens.de/RaspberryPi'>Set up the Raspberry Pi</a>
               <p><em>no warranty for  any of the provided information</em></p>\n";

    if( !isset($_GET['modul']) ){
        $intro ="<h1>Heating and Ventilation Control</h1>
<p>My heating control consists of two parts
<ol>
    <li>The <a href='?s=raspberry&p=HvcMain&w2d=special&modul=HvcMain'>heating & ventilation control</a>, written in <tt>python</tt></br>
shall loop for  ever and call predefined tasks at specific time intervals. Sensors are read in and evaluated to set the actuators approriate.</li>
    <li>The <a href='?s=raspberry&p=HvcWeb&w2d=special&modul=index.php'>web interface</a>, written in <tt>php</tt></br>
to visualize the actual state (i.e. image below), to set the operation mode of the actuators (on/off/auto), to modify control parameters or show the logfile of the system data.</li>
</ol></p>
<p align='center'><img src='./Content/showHouse_example.png' alt='showHouse_example.png' width='75%'></p>\n";
       $content.= $intro;
    } #fi
    return $content;
}

?>

python

1/HvcLightControl.py
2/HvcHCSR04ultrasonic.py
3/HvcPV.py
4/HvcMotorDriver.py
5/HvcRollerShutter.py
6/manGenMqttMap.py
7/HvcReadSPI.py
8/HvcMqtt.py
9/HvcTables.py
10/HvcMain.py
11/HvcSetGPIO.py
12/HvcWifiRelay.py
13/HvcOperationMode.py
14/HvcControl.py
15/HvcRaw2phys.py
16/HvcWeather.py
17/HvcOneWire.py
18/makeDoc.py
19/HvcFronius.py
20/EnergyManager.py
21/HvcSendI2C.py

php

1/HV_colorMap.php
2/HV_Admin_Login.php
3/HV_readOperationState.php
4/HV_setParameters.php
5/HV_config.php
6/EM_handleJSON.php
7/index.php
8/readFilenames.php
9/HV_restart.php
10/HV_moveGate.php
11/HV_showLog.php
12/HV_RollerShutter.php
13/EM_editParameter.php
14/HV_serviceLog.php
15/HV_H2Olevel.php
16/HV_TempCal.php
17/HV_Fronius.php
18/EM_plot.php
19/readNamedData.php
20/HV_composeH2Oplot.php
21/HVdoc.php
22/HV_showWeatherForecast.php
23/HV_showHouse.php

Der gesamte Sourcecode darf gemäß GNU General Public License weiterverbreitet werden.