Subversion Repositories heating

Rev

Rev 35 | Rev 49 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35 Rev 46
Line 18... Line 18...
18
#ifndef __HEATING_H__
18
#ifndef __HEATING_H__
19
#define __HEATING_H__
19
#define __HEATING_H__
20
 
20
 
21
#include "helper.h"
21
#include "helper.h"
22
#include "temperature.h"
22
#include "temperature.h"
-
 
23
#include "html.h"
23
 
24
 
24
/*
25
/*
25
 * Purpose:
26
 * Purpose:
26
 * There can be an unlimited number of rooms defined. For every room you can
27
 * There can be an unlimited number of rooms defined. For every room you can
27
 * define different temperatures. The type "HSTAT" defines the actual status
28
 * define different temperatures. The type "HSTAT" defines the actual status
Line 144... Line 145...
144
		bool initialized;								// True if everything was successfully initialized
145
		bool initialized;								// True if everything was successfully initialized
145
		bool rstop;										// True if runtime loop should stop
146
		bool rstop;										// True if runtime loop should stop
146
		bool rrun;										// True if runtime loop is active
147
		bool rrun;										// True if runtime loop is active
147
		int s1[100];									// Handle to connected client(s)
148
		int s1[100];									// Handle to connected client(s)
148
		int outSensor;									// The number of the outside temperature sensor
149
		int outSensor;									// The number of the outside temperature sensor
-
 
150
		html *HtmlServer;								// Pointer to HTML server running in background
149
};
151
};
150
 
152
 
151
#endif
153
#endif