From da560dd684c00e8cd7128a4aad3bb984f2256ed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tiago=20Concei=C3=A7=C3=A3o?= Date: Sat, 31 Dec 2022 05:09:37 +0000 Subject: [PATCH] Add Anet N4 to machine presets --- UVtools.Core/Printer/Machine.cs | 2 ++ UVtools.Core/Printer/PrinterBrand.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/UVtools.Core/Printer/Machine.cs b/UVtools.Core/Printer/Machine.cs index 2eadd17..1cc2b88 100644 --- a/UVtools.Core/Printer/Machine.cs +++ b/UVtools.Core/Printer/Machine.cs @@ -212,6 +212,8 @@ namespace UVtools.Core.Printer new(PrinterBrand.Creality, "CT133 Pro", "CT133PRO", 3840, 2160, 293.76f, 165.24f, 300), new(PrinterBrand.Creality, "CT-005 Pro", "CT-005", 3840, 2400, 192, 120, 250),*/ + new(PrinterBrand.Anet, "Anet N4", "N4", 1440, 2560, 68.04f, 120.96f, 135f, FlipDirection.Horizontally), + new(PrinterBrand.AnyCubic, "AnyCubic Photon M3", "Photon M3", 4096, 2560, 163.84f, 102.40f, 180f, FlipDirection.Horizontally), new(PrinterBrand.AnyCubic, "AnyCubic Photon M3 Max", "Photon M3 Max", 6480, 3600, 298.08f, 165.60f, 300f, FlipDirection.Horizontally), new(PrinterBrand.AnyCubic, "AnyCubic Photon M3 Plus", "Photon M3 Plus", 5760, 3600, 198.15f, 123.84f, 245f, FlipDirection.Horizontally), diff --git a/UVtools.Core/Printer/PrinterBrand.cs b/UVtools.Core/Printer/PrinterBrand.cs index 3bfd459..92056f3 100644 --- a/UVtools.Core/Printer/PrinterBrand.cs +++ b/UVtools.Core/Printer/PrinterBrand.cs @@ -10,6 +10,7 @@ namespace UVtools.Core.Printer public enum PrinterBrand : byte { Generic, + Anet, AnyCubic, Creality, Elegoo,