lamandi / brewtroller

Automatically exported from code.google.com/p/brewtroller
0 stars 0 forks source link

Temp displaying incorrectly #72

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Setting to USEMETRIC
2. In the "Boil Menu" -> "Boil Temp" the temperature displayed is double. e.g 
instead of 100C it shows 200C

What is the expected output? What do you see instead?
e.g instead of 100C it shows 200C

What version of the product are you using? On what operating system?
2.5 975

Please provide any additional information below.

To fix change line 1040 of UI.PDE to
        //vftoa(getBoilTemp() * 100, buf, 100, 1);
        vftoa(getBoilTemp(), buf, SETPOINT_DIV, 1);

Original issue reported on code.google.com by m...@woodandbelle.com on 10 Oct 2012 at 1:02