bmp085_read_temperature_and_pressure(&temperature,&pressure);
pressure = pressure - 10696; //adjust for sea level
client.print("The Temperature Is ");
client.print(temperature,DEC);
client.println();
client.print("The Barometer Reading: ");
client.print(pressure,DEC);
client.println();
The output looks something like this. "The Temperature Is 239 The Barometer Reading: 10334"
Now my issue, it's not 239 degrees in here nor is the pressure reading 10334, infact.. it's 23.9c and the pressure is 1033.4. How exactly do i get a . into the string? (simply insert a . and send it as a string) ..
Thanks

(p.s Really enjoying Arduino, just that my background is in Pascal not C and it's a little difficult to adjust)