valve measurement board

Dependencies:   mbed ads1115_test SDFileSystem

Branch:
UplinkEnabled
Revision:
39:e5b10a982174
Parent:
38:67754c11cf6f
Child:
40:d02e4dac4bf3
--- a/main.cpp	Sun Mar 07 15:58:02 2021 +0900
+++ b/main.cpp	Sun Mar 07 16:43:59 2021 +0900
@@ -122,7 +122,7 @@
 			}
 			// -----------------------------------------------------------------------------------------
 
-			wireless.printf("Tank Pressure is %d now.\r\n",press_bit1);
+			wireless.printf("%cTank Pressure is %d now.\r\n", (char)50, press_bit1);
 			dt = time;
 		}
 		//valvcontroler auto pressure limitation----------------------------------------------------
@@ -140,7 +140,7 @@
 		}
 		else if(!APLFlug)
 		{
-			wireless.printf("Auto Pressure Limitation is Disabled.");
+			wireless.printf("%cAuto Pressure Limitation is Disabled.\r\n",(char)50);
 		}
 		//------------------------------------------------------------------------------------------
 		fprintf(fp, "%d\t%d\t%d\t%f\t%f\r\n", time, press_bit1, press_bit2, temp1, temp2);
@@ -171,6 +171,6 @@
 	}
 	else
 	{
-		wireless.printf("You send invaild command");
+		wireless.printf("%cYou send invaild command", (char)50);
 	}
 }