Index: /tools/PlotTempsViaGnuplot/main.c
===================================================================
--- /tools/PlotTempsViaGnuplot/main.c	(revision 105)
+++ /tools/PlotTempsViaGnuplot/main.c	(revision 106)
@@ -44,9 +44,9 @@
 		,plotfile);
 
-	sprintf(usingStr, "($6>\%d ? $6-\%d : 1/0)", startTime, startTime);
+	sprintf(usingStr, "($10>\%d ? $10-\%d : 1/0)", startTime, startTime);
 	
 	fputs("plot ",plotfile);
 	
-	fprintf(plotfile, "\"%s\" using %s:8 title 'water out' with points"
+	fprintf(plotfile, "\"%s\" using %s:12 title 'water out' with points"
 				,tempFilename
 				,usingStr
@@ -54,30 +54,30 @@
 	
 	fputs(", \\\n", plotfile);
-	fprintf(plotfile, "\"%s\" using %s:9 title 'upper right' with points" 
+	fprintf(plotfile, "\"%s\" using %s:13 title 'upper right' with points" 
 				,tempFilename
 				,usingStr
 				);	
 	fputs(", \\\n", plotfile);
-	fprintf(plotfile, "\"%s\" using %s:10 title 'upper left' with points" 
+	fprintf(plotfile, "\"%s\" using %s:14 title 'upper left' with points" 
 				,tempFilename
 				,usingStr
 				);	
 	fputs(", \\\n", plotfile);
-	fprintf(plotfile, "\"%s\" using %s:11 title 'lower left' with points" 
+	fprintf(plotfile, "\"%s\" using %s:15 title 'lower left' with points" 
 				,tempFilename
 				,usingStr
 				);	
 	fputs(", \\\n", plotfile);
-	fprintf(plotfile, "\"%s\" using %s:12 title 'lower right' with points" 
+	fprintf(plotfile, "\"%s\" using %s:16 title 'lower right' with points" 
 				,tempFilename
 				,usingStr
 				);	
 	fputs(", \\\n", plotfile);
-	fprintf(plotfile, "\"%s\" using %s:13 title 'water in' with points" 
+	fprintf(plotfile, "\"%s\" using %s:17 title 'water in' with points" 
 				,tempFilename
 				,usingStr
 				);	
 	fputs(", \\\n", plotfile);
-	fprintf(plotfile, "\"%s\" using %s:14 title 'humidity temp' with points" 
+	fprintf(plotfile, "\"%s\" using %s:18 title 'humidity temp' with points" 
 				,tempFilename
 				,usingStr
