Merge pull request #128 from blddk/experimental

Reported wrong temperature in M190
This commit is contained in:
kliment 2012-01-22 12:53:50 -08:00
commit fa63b839c6

View file

@ -980,7 +980,7 @@ inline void process_commands()
Serial.print("T:");
Serial.print( tt );
Serial.print(" B:");
Serial.println( analog2temp(current_bed_raw) );
Serial.println(analog2tempBed(current_bed_raw));
codenum = millis();
}
manage_heater();