Arduino LM335 and visual basic 6

Thanks for the hint....beginning to understand it...But
after doing what you said this is the output:

@24.
15@
@24.
15@
@24.
15@
@24.
15@
67@
@24.
64@
@24.
15@
@24.
15@
@23.
67@

is it my Arduino program? here it is
float temp_in_celsius = 0, temp_in_kelvin=0, temp_in_fahrenheit=0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
//Reads the input and converts it to Kelvin degrees
temp_in_kelvin = analogRead(0) * 0.004882812 * 100;

//Converts Kelvin to Celsius minus 2.5 degrees error
temp_in_celsius = temp_in_kelvin - 2.5 - 273.15;

temp_in_fahrenheit = ((temp_in_kelvin - 2.5) * 9 / 5) - 459.67;

//Print the temperature in Celsius to the serial port
// Serial.print("Celsius: ");
Serial.print(temp_in_celsius);
Serial.print("@");
//Print the temperature in Fahrenheit to the serial port
//Serial.print("Fahrenheit: ");
//Serial.println(temp_in_fahrenheit);
// Serial.println();

delay(1000);
}

tried to change the
RThreshold = 4
SThreshold = 3

to
.RThreshold = 5
.SThreshold = 3

and then the outcome is:
23.67@
24.15@
23.67@
23.67@
24.15@
23.67@
24.15@
24.15@
24.15@
24.15@
24.15@

CLOSER!!!:slight_smile: but how to i get rid of the @

second question
can i use this in a label or ex mschart?