Make resolve function of bed temperature use max

We want the bed to have the highest temperature of the two. This causes some melting for softer materials, but it is required for harder materials to stick to the build plate.
This commit is contained in:
Ghostkeeper 2016-10-13 13:15:16 +02:00
parent f7fe59c707
commit ce6e3982fe
No known key found for this signature in database
GPG Key ID: 701948C5954A7385

View File

@ -1149,7 +1149,7 @@
"description": "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually.",
"unit": "°C",
"type": "float",
"resolve": "sum(extruderValues('material_bed_temperature')) / len(extruderValues('material_bed_temperature'))",
"resolve": "max(extruderValues('material_bed_temperature'))",
"default_value": 60,
"minimum_value": "-273.15",
"minimum_value_warning": "0",