Arduino Result to text file

Serial.print("Inch value=");      //print inch text
Serial.println(inchvalue);
//Serial.print("cm=");
//Serial.println(cm);
delay(500);                      //optional delay 1 second
digitalWrite(configPin,LOW);      //turn off Calibration ring and sensor
delay(500);                      //delay 1 second
Serial.print("#S|LOGTEST|[");
Serial.print(itoa((value), buffer, 10));  //function. Itoa() is a function that will take an integer and return it
//converted to it’s string representation.
Serial.println("]#");

This look to me like you are sendeing something to GoBetwino AND something that is not meant to go to GoBetwino. That will not work. When you use GoBetwino you can ONLY send well formed GoBetwino commands, otherwise GoBewtino will try to interpret it a commands and fail miserably.

I bet you get all kinds of errormessage in he GoBetwino window - right ?