Access hotend/bed temperatures as float

This commit is contained in:
Scott Lahteine 2017-05-21 04:46:31 -05:00
parent 0e1f0efc4b
commit ebcd1aaf88

View File

@ -327,13 +327,13 @@ class Temperature {
//inline so that there is no performance decrease. //inline so that there is no performance decrease.
//deg=degreeCelsius //deg=degreeCelsius
static int16_t degHotend(uint8_t e) { static float degHotend(uint8_t e) {
#if HOTENDS == 1 #if HOTENDS == 1
UNUSED(e); UNUSED(e);
#endif #endif
return current_temperature[HOTEND_INDEX]; return current_temperature[HOTEND_INDEX];
} }
static int16_t degBed() { return current_temperature_bed; } static float degBed() { return current_temperature_bed; }
#if ENABLED(SHOW_TEMP_ADC_VALUES) #if ENABLED(SHOW_TEMP_ADC_VALUES)
static int16_t rawHotendTemp(uint8_t e) { static int16_t rawHotendTemp(uint8_t e) {