Access hotend/bed temperatures as float
This commit is contained in:
parent
0e1f0efc4b
commit
ebcd1aaf88
@ -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…
Reference in New Issue
Block a user