Skip to content

Commit 9e11524

Browse files
Add PrusaSlicer configuration for Elegoo Mars 5 Ultra and recognize it as a tilt-bed printer. Make build scripts executable on Linux.
1 parent ccadb55 commit 9e11524

File tree

8 files changed

+45
-0
lines changed

8 files changed

+45
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# generated by PrusaSlicer 2.5.2+win64 on 2023-06-06 at 16:47:15 UTC
2+
absolute_correction = 0
3+
area_fill = 50
4+
bed_custom_model =
5+
bed_custom_texture =
6+
bed_shape = 0x0,153.36x0,153.36x77.76,0x77.76
7+
default_sla_material_profile = Prusa Orange Tough 0.05
8+
default_sla_print_profile = 0.05 Normal
9+
display_height = 77.76
10+
display_mirror_x = 1
11+
display_mirror_y = 0
12+
display_orientation = landscape
13+
display_pixels_x = 8520
14+
display_pixels_y = 4320
15+
display_width = 153.36
16+
elefant_foot_compensation = 0.2
17+
elefant_foot_min_width = 0.2
18+
fast_tilt_time = 5
19+
gamma_correction = 1
20+
high_viscosity_tilt_time = 10
21+
host_type = octoprint
22+
inherits = Original Prusa SL1
23+
max_exposure_time = 120
24+
max_initial_exposure_time = 300
25+
max_print_height = 165
26+
min_exposure_time = 1
27+
min_initial_exposure_time = 1
28+
print_host =
29+
printer_model = SL1
30+
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_SL1\nPRINTER_VENDOR_ELEGOO\nPRINTER_MODEL_MARS5_ULTRA\nFILEFORMAT_ENCRYPTED.CTB\n\nSTART_CUSTOM_VALUES\nBottomLiftHeight_0.05\nLiftHeight_0.05\nBottomLiftSpeed_0.05\nLiftSpeed_0.05\nRetractSpeed_0.05\nBottomLightPWM_255\nLightPWM_255\nEND_CUSTOM_VALUES
31+
printer_settings_id =
32+
printer_technology = SLA
33+
printer_variant = default
34+
printer_vendor =
35+
printhost_apikey =
36+
printhost_cafile =
37+
relative_correction = 1,1
38+
relative_correction_x = 1
39+
relative_correction_y = 1
40+
relative_correction_z = 1
41+
slow_tilt_time = 8
42+
thumbnails = 290x290,116x116

UVtools.Core/FileFormats/CTBEncryptedFile.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -703,6 +703,7 @@ public override bool HaveTiltingVat
703703
get
704704
{
705705
if (MachineName.Contains("Saturn 4 Ultra", StringComparison.OrdinalIgnoreCase)) return true;
706+
if (MachineName.Contains("Mars 5 Ultra", StringComparison.OrdinalIgnoreCase)) return true;
706707
return LayerHeight == LiftHeight && LiftHeight < 0.5 && LiftSpeed < 0.5;
707708
}
708709
}

UVtools.Core/FileFormats/GooFile.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -637,6 +637,7 @@ public override bool HaveTiltingVat
637637
get
638638
{
639639
if (MachineName.Contains("Saturn 4 Ultra", StringComparison.OrdinalIgnoreCase)) return true;
640+
if (MachineName.Contains("Mars 5 Ultra", StringComparison.OrdinalIgnoreCase)) return true;
640641
return LayerHeight == LiftHeight && LiftHeight < 0.5 && LiftSpeed < 0.5;
641642
}
642643
}

UVtools.Core/Printer/Machine.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ public Machine Clone()
285285
new(PrinterBrand.Elegoo, "Elegoo Mars 4 DLP", "Mars 4 DLP", 4098, 2560, 132.8f, 74.7f, 150f, FlipDirection.Horizontally),
286286
new(PrinterBrand.Elegoo, "Elegoo Mars 4 Max", "Mars 4 Max", 5760, 3600, 195.84f, 122.4f, 150f, FlipDirection.Horizontally),
287287
new(PrinterBrand.Elegoo, "Elegoo Mars 4 Ultra", "Mars 4 Ultra", 8520, 4320, 153.36f, 77.76f, 165f, FlipDirection.Horizontally),
288+
new(PrinterBrand.Elegoo, "Elegoo Mars 5 Ultra", "Mars 5 Ultra", 8520, 4320, 153.36f, 77.76f, 165f, FlipDirection.Horizontally),
288289
new(PrinterBrand.Elegoo, "Elegoo Mars C", "Mars C", 1440, 2560, 68.04f, 120.96f, 150f, FlipDirection.Horizontally),
289290
new(PrinterBrand.Elegoo, "Elegoo Saturn", "Saturn", 3840, 2400, 192f, 120f, 200f, FlipDirection.Horizontally),
290291
new(PrinterBrand.Elegoo, "Elegoo Saturn 2", "Saturn 2", 7680, 4320, 218.88f, 123.12f, 250f, FlipDirection.Horizontally),

build/compile.sh

100644100755
File mode changed.

build/createRelease.sh

100644100755
File mode changed.

build/libcvextern.sh

100644100755
File mode changed.

build/run.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)