Skip to content

Commit

Permalink
Photon Mono X2
Browse files Browse the repository at this point in the history
  • Loading branch information
InfiniteCoder01 committed Jan 20, 2025
1 parent 7e30439 commit a9cd93e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Photonic Etcher is a browser-based tool for converting gerber files into "printa
- AnyCubic Photon Mono (.pwmo)
- AnyCubic Photon Mono SE (.pwms)
- AnyCubic Photon Mono X (.pwmx)
- AnyCubic Photon Mono X2 (.pmx2)
- AnyCubic Photon & Photon S (.pws)
- AnyCubic Photon X (.pwx)

Expand Down
11 changes: 10 additions & 1 deletion src/ui/export_dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface PrinterModel {
previewResolution: [number, number],
rotate180: boolean,
encoding: "RLE" | "RLE4",
fileFormat: "dlp" | "pm3" | "pm3m" | "pmsq" | "pw0" | "pwma" | "pwmb" | "pwmo" | "pwms" | "pwmx" | "pws" | "photon" | "pwx"
fileFormat: "dlp" | "pm3" | "pm3m" | "pmsq" | "pw0" | "pwma" | "pwmb" | "pwmo" | "pwms" | "pwmx" | "pmx2" | "pws" | "photon" | "pwx"
}
const printerModels: { [key: string]: PrinterModel } = {
'AnyCubic Photon Ultra (.dlp)': {
Expand Down Expand Up @@ -110,6 +110,15 @@ const printerModels: { [key: string]: PrinterModel } = {
"encoding": "RLE4",
"fileFormat": "pwmx"
},
'AnyCubic Photon Mono X2 (.pmx2)': {
"fileVersion": [1, 4],
"xyRes": 0.050,
"resolution": [4096, 2560],
"previewResolution": [224, 168],
"rotate180": false,
"encoding": "RLE4",
"fileFormat": "pmx2"
},
'AnyCubic Photon & Photon S (.pws)': {
"fileVersion": [1, 4],
"xyRes": 0.047,
Expand Down

0 comments on commit a9cd93e

Please sign in to comment.