profiles: deterministic setting_id from vendor/type/name (#14432)

* profiles: enforce globally-unique, per-vendor-namespaced setting_id

Many non-Bambu vendors copied Bambu's generic setting_ids (GFSA04 alone
appeared in 1557 files), so setting_id was not globally unique. This
namespaces every vendor's ids and reserves Bambu/OrcaFilamentLibrary space.

- Reserve "G*" (Bambu) and "O*" (OrcaFilamentLibrary) id spaces.
- Assign each other vendor a 2-char prefix (first+last letter, collision
  resolved) and renumber every instantiated preset to <PREFIX><NNNN>.
- Strip setting_id from base profiles (instantiation:false) per Bambu's
  convention; assign one to instantiated presets that lacked it.
- Remove the pre-existing misspelled "settings_id" key (91 files).
- filament_id is left untouched (it is a per-material id).
- Add one-time migration script scripts/assign_vendor_setting_ids.py with a
  persisted registry resources/profiles/vendor_prefixes.json. Re-runs freeze
  existing ids; only new vendors/profiles get new ids.
- Bump version in each changed vendor index file.
- Extend scripts/orca_extra_profile_check.py with a CI guard: global
  uniqueness, in-namespace, no base setting_id, no gaps, no settings_id typo.

7425 profile files changed across 61 vendors; 0 cross-vendor collisions;
validator clean; migration idempotent. BBL and OrcaFilamentLibrary id spaces
untouched.

* profiles: add setting_id authoring guide for new vendors / profiles

* profiles: drop in-repo README; setting_id guide now lives in the wiki

* profiles: derive setting_id deterministically from vendor/type/name

* bump profile version
This commit is contained in:
SoftFever
2026-06-27 20:11:25 +08:00
parent 8ccae50e1b
commit 6d7eeb89dc
7876 changed files with 8152 additions and 6541 deletions

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 0.2 nozzle",
"inherits": "Elegoo Centauri 0.4 nozzle",
"from": "system",
"setting_id": "EC02",
"setting_id": "XoxhdPS9GunkuReP",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 0.4 nozzle",
"inherits": "fdm_elegoo_3dp_001_common",
"from": "system",
"setting_id": "EC04",
"setting_id": "Tzf5yPxAneRY9c7W",
"instantiation": "true",
"nozzle_diameter": [
"0.4"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 0.6 nozzle",
"inherits": "Elegoo Centauri 0.4 nozzle",
"from": "system",
"setting_id": "EC06",
"setting_id": "jTSxLQlbwCsrFlqv",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 0.8 nozzle",
"inherits": "Elegoo Centauri 0.4 nozzle",
"from": "system",
"setting_id": "EC08",
"setting_id": "CAp2D99kAoNTTHAg",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 2 0.2 nozzle",
"inherits": "Elegoo Centauri 2 0.4 nozzle",
"from": "system",
"setting_id": "EC202",
"setting_id": "m8Qdj0hA47eDYqRW",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 2 0.4 nozzle",
"inherits": "fdm_elegoo_3dp_001_common",
"from": "system",
"setting_id": "EC204",
"setting_id": "oMZnP0H4FRc9GCSJ",
"instantiation": "true",
"nozzle_diameter": [
"0.4"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 2 0.6 nozzle",
"inherits": "Elegoo Centauri 2 0.4 nozzle",
"from": "system",
"setting_id": "EC206",
"setting_id": "JjSXSI3aQLdsqvFO",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri 2 0.8 nozzle",
"inherits": "Elegoo Centauri 2 0.4 nozzle",
"from": "system",
"setting_id": "EC208",
"setting_id": "KLhNXQpky6IUfmWz",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 0.2 nozzle",
"inherits": "Elegoo Centauri Carbon 0.4 nozzle",
"from": "system",
"setting_id": "ECC02",
"setting_id": "snOU0RMJW8uNmbap",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 0.4 nozzle",
"inherits": "fdm_elegoo_3dp_001_common",
"from": "system",
"setting_id": "ECC04",
"setting_id": "LyL8izVzYFaXHlPb",
"instantiation": "true",
"nozzle_diameter": [
"0.4"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 0.6 nozzle",
"inherits": "Elegoo Centauri Carbon 0.4 nozzle",
"from": "system",
"setting_id": "ECC06",
"setting_id": "PuL9y6ue61mrGpzi",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 0.8 nozzle",
"inherits": "Elegoo Centauri Carbon 0.4 nozzle",
"from": "system",
"setting_id": "ECC08",
"setting_id": "lCZzm0T7xxIG25jo",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 2 0.2 nozzle",
"inherits": "Elegoo Centauri Carbon 2 0.4 nozzle",
"from": "system",
"setting_id": "ECC202",
"setting_id": "V2r3qWSf5W6ql5A9",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 2 0.4 nozzle",
"inherits": "fdm_elegoo_3dp_001_common",
"from": "system",
"setting_id": "ECC204",
"setting_id": "hjSig28o75Oxgd7J",
"instantiation": "true",
"nozzle_diameter": [
"0.4"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 2 0.6 nozzle",
"inherits": "Elegoo Centauri Carbon 2 0.4 nozzle",
"from": "system",
"setting_id": "ECC206",
"setting_id": "JshHPoQUPY5rrW4i",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Centauri Carbon 2 0.8 nozzle",
"inherits": "Elegoo Centauri Carbon 2 0.4 nozzle",
"from": "system",
"setting_id": "ECC208",
"setting_id": "PFAN6GUXHbdiurYP",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN104",
"setting_id": "zECkpVCtequEr3jC",
"name": "Elegoo Neptune 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 0.6 nozzle",
"inherits": "Elegoo Neptune 0.4 nozzle",
"from": "system",
"setting_id": "EN106",
"setting_id": "dJSZaxrjMdr8NZmM",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 0.8 nozzle",
"inherits": "Elegoo Neptune 0.4 nozzle",
"from": "system",
"setting_id": "EN108",
"setting_id": "ItXtnm9IlN7x2L4v",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN204",
"setting_id": "WButFYamVx0MBjUr",
"name": "Elegoo Neptune 2 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 2 0.6 nozzle",
"inherits": "Elegoo Neptune 2 0.4 nozzle",
"from": "system",
"setting_id": "EN206",
"setting_id": "cqs9rtbVF84El6mQ",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 2 0.8 nozzle",
"inherits": "Elegoo Neptune 2 0.4 nozzle",
"from": "system",
"setting_id": "EN208",
"setting_id": "3UufhNki3YqAAGdK",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN2D04",
"setting_id": "9KnJva7m7E5M1quB",
"name": "Elegoo Neptune 2D 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 2D 0.6 nozzle",
"inherits": "Elegoo Neptune 2D 0.4 nozzle",
"from": "system",
"setting_id": "EN2D06",
"setting_id": "V8TJL5hhtqh5jxTD",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 2D 0.8 nozzle",
"inherits": "Elegoo Neptune 2D 0.4 nozzle",
"from": "system",
"setting_id": "EN2D08",
"setting_id": "zBdxUOQ9Z0VSHf27",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN2S04",
"setting_id": "a8iTteroepkgXrLV",
"name": "Elegoo Neptune 2S 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 2S 0.6 nozzle",
"inherits": "Elegoo Neptune 2S 0.4 nozzle",
"from": "system",
"setting_id": "EN2S06",
"setting_id": "2jqqltrFF1c691PH",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 2S 0.8 nozzle",
"inherits": "Elegoo Neptune 2S 0.4 nozzle",
"from": "system",
"setting_id": "EN2S08",
"setting_id": "FAOkOzZYSPd5wvb4",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN304",
"setting_id": "rdKmVhTTrup3yqgA",
"name": "Elegoo Neptune 3 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 0.6 nozzle",
"inherits": "Elegoo Neptune 3 0.4 nozzle",
"from": "system",
"setting_id": "EN306",
"setting_id": "1DAAZUN7vSF4psKv",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 0.8 nozzle",
"inherits": "Elegoo Neptune 3 0.4 nozzle",
"from": "system",
"setting_id": "EN308",
"setting_id": "VXYl3hwOhUqY7Qp2",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "ENX04",
"setting_id": "krz8Xh3MatGnm8pm",
"name": "Elegoo Neptune X 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune X 0.6 nozzle",
"inherits": "Elegoo Neptune X 0.4 nozzle",
"from": "system",
"setting_id": "ENX06",
"setting_id": "tOSS0yXNuCbCwg3H",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune X 0.8 nozzle",
"inherits": "Elegoo Neptune X 0.4 nozzle",
"from": "system",
"setting_id": "ENX08",
"setting_id": "zRvTUy0LSkhGeN0z",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Max 0.2 nozzle",
"inherits": "Elegoo Neptune 3 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN3Max02",
"setting_id": "G5NQq9PxbLuKm7Qq",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN3MAX04",
"setting_id": "8CM5vaCDh096ZzUs",
"name": "Elegoo Neptune 3 Max 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Max 0.6 nozzle",
"inherits": "Elegoo Neptune 3 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN3Max06",
"setting_id": "gyXEi22nfynYutnt",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Max 0.8 nozzle",
"inherits": "Elegoo Neptune 3 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN3Max08",
"setting_id": "iHe18x08x7EvXgTu",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Max 1.0 nozzle",
"inherits": "Elegoo Neptune 3 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN3Max10",
"setting_id": "Ep5u0wG4Lcu1G1Uu",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Plus 0.2 nozzle",
"inherits": "Elegoo Neptune 3 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN3Plus02",
"setting_id": "cCqmgZLewIRDq5Wk",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN3PLUS04",
"setting_id": "FylvH6NMzPbR9Bz6",
"name": "Elegoo Neptune 3 Plus 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Plus 0.6 nozzle",
"inherits": "Elegoo Neptune 3 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN3Plus06",
"setting_id": "mIi6IBXu83TvmdFq",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Plus 0.8 nozzle",
"inherits": "Elegoo Neptune 3 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN3Plus08",
"setting_id": "kWVh2kfVC5UwtWBp",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Plus 1.0 nozzle",
"inherits": "Elegoo Neptune 3 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN3Plus10",
"setting_id": "rgRZr00YVbeOIibg",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Pro 0.2 nozzle",
"inherits": "Elegoo Neptune 3 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN3Pro02",
"setting_id": "73sWSdtYxp1nWtet",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -1,6 +1,6 @@
{
"type": "machine",
"setting_id": "EN3PRO04",
"setting_id": "9vUFjjVwWAggcbwk",
"name": "Elegoo Neptune 3 Pro 0.4 nozzle",
"from": "system",
"instantiation": "true",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Pro 0.6 nozzle",
"inherits": "Elegoo Neptune 3 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN3Pro06",
"setting_id": "dySDdgA29fbSGyAh",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Pro 0.8 nozzle",
"inherits": "Elegoo Neptune 3 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN3Pro08",
"setting_id": "GOTa31fZoQO5DBD1",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 3 Pro 1.0 nozzle",
"inherits": "Elegoo Neptune 3 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN3Pro10",
"setting_id": "mfgMcZmlBBG3VCGQ",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 0.2 nozzle",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"from": "system",
"setting_id": "EN402",
"setting_id": "YGH30n1CBw3of81j",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -2,7 +2,7 @@
"type": "machine",
"name": "Elegoo Neptune 4 0.4 nozzle",
"from": "system",
"setting_id": "EN404",
"setting_id": "69QdWuRQwAZk9rFu",
"instantiation": "true",
"inherits": "fdm_elegoo_3dp_001_common",
"host_type": "elegoolink",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 0.6 nozzle",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"from": "system",
"setting_id": "EN406",
"setting_id": "hAlEcYQJUiRdXvP3",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 0.8 nozzle",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"from": "system",
"setting_id": "EN408",
"setting_id": "2lAqJ4y4QPkkG3Eq",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 1.0 nozzle",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"from": "system",
"setting_id": "EN410",
"setting_id": "4HgOQhJrRHmdoUQC",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Max 0.2 nozzle",
"inherits": "Elegoo Neptune 4 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN4MAX02",
"setting_id": "cnSthrwdZaeijtbD",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -2,7 +2,7 @@
"type": "machine",
"name": "Elegoo Neptune 4 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN4MAX04",
"setting_id": "Ie1QF4p1mjA7QqZf",
"instantiation": "true",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"host_type": "elegoolink",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Max 0.6 nozzle",
"inherits": "Elegoo Neptune 4 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN4MAX06",
"setting_id": "DXxpsdZ4r73cfNT7",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Max 0.8 nozzle",
"inherits": "Elegoo Neptune 4 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN4MAX08",
"setting_id": "licXMWyXGDavpuvu",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Max 1.0 nozzle",
"inherits": "Elegoo Neptune 4 Max 0.4 nozzle",
"from": "system",
"setting_id": "EN4MAX10",
"setting_id": "Ch4AZDWe7gKdw9hT",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Plus 0.2 nozzle",
"inherits": "Elegoo Neptune 4 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN4PLUS02",
"setting_id": "i5vcoYRF6cqkYBg9",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -2,7 +2,7 @@
"type": "machine",
"name": "Elegoo Neptune 4 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN4PLUS04",
"setting_id": "Rc54LjtIhvBWRS2Y",
"instantiation": "true",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"host_type": "elegoolink",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Plus 0.6 nozzle",
"inherits": "Elegoo Neptune 4 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN4PLUS06",
"setting_id": "nCRrAqumiiZpu5Re",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Plus 0.8 nozzle",
"inherits": "Elegoo Neptune 4 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN4PLUS08",
"setting_id": "CM0ZVy6UJRObNbMV",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Plus 1.0 nozzle",
"inherits": "Elegoo Neptune 4 Plus 0.4 nozzle",
"from": "system",
"setting_id": "EN4PLUS10",
"setting_id": "S8qunSr5mu2KwyHN",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Pro 0.2 nozzle",
"inherits": "Elegoo Neptune 4 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN4PRO02",
"setting_id": "tjxZec78rbpYkEM2",
"instantiation": "true",
"nozzle_diameter": [
"0.2"

View File

@@ -2,7 +2,7 @@
"type": "machine",
"name": "Elegoo Neptune 4 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN4PRO04",
"setting_id": "H1wMUu4EMaiQzxeD",
"instantiation": "true",
"inherits": "Elegoo Neptune 4 0.4 nozzle",
"host_type": "elegoolink",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Pro 0.6 nozzle",
"inherits": "Elegoo Neptune 4 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN4PRO06",
"setting_id": "f9xvw4oHKtdZq7oq",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Pro 0.8 nozzle",
"inherits": "Elegoo Neptune 4 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN4PRO08",
"setting_id": "nd5TLZa3xnDu1s4W",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo Neptune 4 Pro 1.0 nozzle",
"inherits": "Elegoo Neptune 4 Pro 0.4 nozzle",
"from": "system",
"setting_id": "EN4PRO10",
"setting_id": "eK8gxFLjDsdD2xzW",
"instantiation": "true",
"nozzle_diameter": [
"1.0"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo OrangeStorm Giga 0.4 nozzle",
"inherits": "fdm_elegoo_3dp_001_common",
"from": "system",
"setting_id": "EOSG04",
"setting_id": "PCZpqnHSGs2twFx9",
"instantiation": "true",
"host_type": "elegoolink",
"printer_model": "Elegoo OrangeStorm Giga",

View File

@@ -3,7 +3,7 @@
"name": "Elegoo OrangeStorm Giga 0.6 nozzle",
"inherits": "Elegoo OrangeStorm Giga 0.4 nozzle",
"from": "system",
"setting_id": "EOSG06",
"setting_id": "RuNyL7RmDS58vurf",
"instantiation": "true",
"nozzle_diameter": [
"0.6"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo OrangeStorm Giga 0.8 nozzle",
"inherits": "Elegoo OrangeStorm Giga 0.4 nozzle",
"from": "system",
"setting_id": "EOSG08",
"setting_id": "pdXtGNJKHmtMAO1x",
"instantiation": "true",
"nozzle_diameter": [
"0.8"

View File

@@ -3,7 +3,7 @@
"name": "Elegoo OrangeStorm Giga 1.0 nozzle",
"inherits": "Elegoo OrangeStorm Giga 0.4 nozzle",
"from": "system",
"setting_id": "EOSG10",
"setting_id": "YXzwDjQ5qWHTHCWH",
"instantiation": "true",
"nozzle_diameter": [
"1.0"