Skip to content

Commit

Permalink
ctb: Add EPAX E6/E10-4k/E10-5k support
Browse files Browse the repository at this point in the history
  • Loading branch information
ezrec committed Jan 23, 2021
1 parent d990134 commit 2d16ea7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
20 changes: 5 additions & 15 deletions README.md
Expand Up @@ -175,7 +175,9 @@ The command line tool is designed to be used in a 'pipeline' style, for example:

Known machines:

e6 EPAX E6 Size: 1620x2560, 81x128 mm, Format: .ctb --version=3
e10-4k EPAX E10 mono 4K Size: 2400x3840, 120x192 mm, Format: .ctb --version=3
e10-5k EPAX E10 mono 5K Size: 2880x4920, 135x216 mm, Format: .ctb --version=3
e6 EPAX E6 mono Size: 1620x2560, 81x128 mm, Format: .ctb --version=3
elfin Nova3D Elfin Size: 1410x2550, 73x132 mm, Format: .cws
inkspire Zortrax Inkspire Size: 1440x2560, 72x128 mm, Format: .zcodex
ld-002r Creality LD-002R Size: 1440x2560, 68x121 mm, Format: .ctb --version=2
Expand All @@ -201,17 +203,5 @@ The command line tool is designed to be used in a 'pipeline' style, for example:
x1n EPAX X1N Size: 1440x2560, 68x121 mm, Format: .ctb --version=2
x9 EPAX X9 Size: 1600x2560, 120x192 mm, Format: .cbddlp

Known resins: (from /home/jmcmullan/.config/ChiTuBox/machine/7.cfg)

EPAX Dental Model for 0.05mm bottom 8 layers, 50; nominal 6
EPAX General Purpose Rapid for 0.05mm bottom 8 layers, 50; nominal 6
EPAX Hard and Tough for 0.05mm bottom 8 layers, 50; nominal 6
EPAX Hard for 0.05mm bottom 8 layers, 50; nominal 6
EPAX Jewelry Castable for 0.05mm bottom 8 layers, 50; nominal 16
EPAX Porcelain-like Resin for 0.05mm bottom 8 layers, 50; nominal 6
EPAX Soy for 0.05mm bottom 8 layers, 50; nominal 9
EPAX Water Washable for 0.05mm bottom 8 layers, 50; nominal 9
Profile bottom 8 layers, 50; nominal 22
eSUN Hard and Tough for 0.05mm bottom 8 layers, 50; nominal 8
eSUN Standard/Bio for 0.05mm bottom 8 layers, 50; nominal 6
eSUN Water Washable for 0.05mm bottom 8 layers, 50; nominal 9
Known resins: (from local user ChiTuBox config)

3 changes: 3 additions & 0 deletions ctb/init.go
Expand Up @@ -20,6 +20,9 @@ var (
machines_ctb_3 = map[string]uv3dp.Machine{
"mars2-pro": {Vendor: "Elegoo", Model: "Mars 2 Pro", Size: uv3dp.MachineSize{1620, 2560, 82.62, 130.56}},
"sonic-mini-4k": {Vendor: "Phrozen", Model: "Sonic Mini 4K", Size: uv3dp.MachineSize{3840, 2160, 134.4, 75.6}},
"e6": {Vendor: "EPAX", Model: "E6 mono", Size: uv3dp.MachineSize{1620, 2560, 81.0, 128.0}},
"e10-4k": {Vendor: "EPAX", Model: "E10 mono 4K", Size: uv3dp.MachineSize{2400, 3840, 120.0, 192.0}},
"e10-5k": {Vendor: "EPAX", Model: "E10 mono 5K", Size: uv3dp.MachineSize{2880, 4920, 135.0, 216.0}},
}
)

Expand Down

0 comments on commit 2d16ea7

Please sign in to comment.