diff -r 6d97eb820cc1 -r 3518c07737d8 thermferm/thermferm.h --- a/thermferm/thermferm.h Sat Apr 20 11:48:20 2024 +0200 +++ b/thermferm/thermferm.h Mon Apr 22 11:33:04 2024 +0200 @@ -363,12 +363,11 @@ typedef struct _sys_config { char *name; /* Configuration name */ - int my_port; /* my client/server port */ - unsigned char tempFormat; /* Temperature format, C or F */ - char *temp_address; /* Environment temperature */ + int server_port; /* my client/server port */ + char *temp_uuid; /* Environment temperature */ int temp_state; /* 0=ok, 1=missing, 2=error */ int temp_value; /* Air temperature in C * 1000 */ - char *hum_address; /* Environment huminity */ + char *hum_uuid; /* Environment huminity */ int hum_state; /* 0=ok, 1=missing, 2=error */ int hum_value; /* Huminity in % * 1000 */ int temp_hum_idx; /* Domoticz idx */ @@ -377,7 +376,6 @@ int lcd_address; /* LCD display i2c address */ int next_unit; /* Next unit alias name */ units_list *units; /* Fermenter units */ -// profiles_list *profiles; /* Ferment profiles */ devices_list *devices; /* Sensors and switches */ #ifdef USE_SIMULATOR simulator_list *simulators; /* Simulators */