Browse Source

Access hotend/bed temperatures as float

pull/1/head
Scott Lahteine 7 years ago
parent
commit
ebcd1aaf88
  1. 4
      Marlin/temperature.h

4
Marlin/temperature.h

@ -327,13 +327,13 @@ class Temperature {
//inline so that there is no performance decrease.
//deg=degreeCelsius
static int16_t degHotend(uint8_t e) {
static float degHotend(uint8_t e) {
#if HOTENDS == 1
UNUSED(e);
#endif
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)
static int16_t rawHotendTemp(uint8_t e) {

Loading…
Cancel
Save