thermferm/thermferm.h

changeset 206
78fb6f99e473
parent 205
ca18ff45deba
child 209
c5b1dfd83e81
--- a/thermferm/thermferm.h	Sun Aug 10 13:26:35 2014 +0200
+++ b/thermferm/thermferm.h	Sun Aug 10 14:45:11 2014 +0200
@@ -182,9 +182,12 @@
     char		*name;			/* Configuration name		*/
     int			my_port;		/* my client/server port	*/
     unsigned char	tempFormat;		/* Temperature format, C or F	*/
-    char		*air_address;		/* 1-wire environment sensor	*/
-    int			air_state;		/* 0=ok, 1=missing, 2=error	*/
-    int			air_temperature;	/* Air temperature in C * 1000	*/
+    char		*temp_address;		/* Environment temperature	*/
+    int			temp_state;		/* 0=ok, 1=missing, 2=error	*/
+    int			temp_value;		/* Air temperature in C * 1000	*/
+    char		*hum_address;		/* Environment huminity		*/
+    int			hum_state;		/* 0=ok, 1=missing, 2=error	*/
+    int			hum_value;		/* Huminity in % * 1000		*/
 #ifdef HAVE_WIRINGPI_H
     int			lcd_cols;		/* LCD display columns		*/
     int			lcd_rows;		/* LCD display rows		*/

mercurial