# HG changeset patch # User Michiel Broek # Date 1404760544 -7200 # Node ID 38ee038f4cec8bec72fcbb5b86607675a8c10627 # Parent b759f814469d4ff2500f80867d526c7610295e66 Fixed possible one character short on LCD. Added environment air temperature sensor diff -r b759f814469d -r 38ee038f4cec thermferm/lcd-pcf8574.c --- a/thermferm/lcd-pcf8574.c Fri Jul 04 23:37:53 2014 +0200 +++ b/thermferm/lcd-pcf8574.c Mon Jul 07 21:15:44 2014 +0200 @@ -28,7 +28,7 @@ #ifdef HAVE_WIRINGPI_H int lcdHandle; -unsigned char lcdbuf[MAX_LCDS][20][4]; +unsigned char lcdbuf[MAX_LCDS][21][4]; struct lcdDataStruct { diff -r b759f814469d -r 38ee038f4cec thermferm/thermferm.h --- a/thermferm/thermferm.h Fri Jul 04 23:37:53 2014 +0200 +++ b/thermferm/thermferm.h Mon Jul 07 21:15:44 2014 +0200 @@ -147,6 +147,7 @@ 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 */ w1_therm *w1therms; /* 1-wire temp sensors */ #ifdef HAVE_WIRINGPI_H int lcd_cols; /* LCD display columns */