diff options
Diffstat (limited to 'response.c')
-rw-r--r-- | response.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,6 @@ #include "response.h" #include "socket-common.h" +#include "lcd.h" #include "i2c.h" #include <string.h> #include <stdlib.h> @@ -106,6 +107,9 @@ void responseCb(gpointer instance, GObject *arg1, gpointer user_data) // remove leading and trailing whitespace g_strstrip (str); + // I2C/LCD test function + LCD_display_error_message(str); + guchar status = 0; // delete me, later - FIXME // I2C test code I2C_Write (PCF8574A + Upper_Encoder_Port, 0xff); |