mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
Store current temp in bed_temperature instead of dict with target & current
CURA-1036
This commit is contained in:
parent
61565561ff
commit
99a30573ce
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
|||
temperature = self._json_printer_state["heads"][0]["extruders"][index]["hotend"]["temperature"]["current"]
|
||||
self._setHotendTemperature(index, temperature)
|
||||
|
||||
bed_temperature = self._json_printer_state["bed"]["temperature"]
|
||||
bed_temperature = self._json_printer_state["bed"]["temperature"]["current"]
|
||||
self._setBedTemperature(bed_temperature)
|
||||
|
||||
head_x = self._json_printer_state["heads"][0]["position"]["x"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue