How to increase max print height over 1200mm
 
Notifications
Clear all

How to increase max print height over 1200mm  

  RSS
Václav Musil
(@vaclav-musil)
Member
How to increase max print height over 1200mm

When I input higher value it gives an error 'Input value out of range'. Is there a way to increase the input range?

Posted : 14/10/2024 7:01 am
foobar
(@foobar-3)
Member
RE: How to increase max print height over 1200mm

Hello,

as far as I can see this is not possible. There is a maximum of 1200 defined in the sourcecode: https://github.com/prusa3d/PrusaSlicer/blob/5dc04b4e8f14f65bbcc5377d62cad3e86c2aea36/src/libslic3r/PrintConfig.cpp#L397

Posted : 14/10/2024 10:05 am
BaconFase liked
foobar
(@foobar-3)
Member
RE: How to increase max print height over 1200mm

To help readers in the future, here is the Link to this sourcecode in the `master` branch: https://github.com/prusa3d/PrusaSlicer/blob/master/src/libslic3r/PrintConfig.cpp#L397

[...]
    def = this->add("max_print_height", coFloat);
    def->label = L("Max print height");
    def->tooltip = L("Set this to the maximum height that can be reached by your extruder while printing.");
    def->sidetext = L("mm");
    def->min = 0;
    def->max = 1200; #<<<<<------ THIS
    def->mode = comAdvanced;
    def->set_default_value(new ConfigOptionFloat(200.0));
[...]
Posted : 14/10/2024 12:01 pm
Share: