Add Anycubic Kobra Neo 0.4 nozzle printer profiles (#12913)

## Summary

Adds proper system profiles for the **Anycubic Kobra Neo** with 0.4mm nozzle (stock Marlin firmware).

This replaces the profiles from #12341 which had several issues:
- All files had `"from": "User"` instead of `"from": "system"` — causing profile loading failures
- No `inherits` or `type` fields — broke the inheritance chain
- Klipper-only gcode (not stock firmware)
- No `Anycubic.json` index entries — printer never appeared in the UI
- Cover image was 382x600 instead of 240x240 (displayed squashed)
- Profiles were subsequently removed in #12889

### Files added/modified

| File | Description |
|------|-------------|
| `machine/Anycubic Kobra Neo.json` | Base machine model (220x220x250mm) |
| `machine/Anycubic Kobra Neo 0.4 nozzle.json` | 0.4mm nozzle variant, stock Marlin gcode |
| `process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json` | Detail process profile |
| `process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json` | Standard process profile |
| `process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json` | Standard process profile |
| `process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json` | Standard process profile |
| `filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json` | PLA filament profile |
| `Anycubic Kobra Neo_cover.png` | Resized to 240x240 |
| `Anycubic.json` | Added index entries for all new profiles |

### Approach

- Based on the working **Anycubic Kobra 2 Neo** profiles (similar hardware — direct drive, 220x220 bed)
- Start gcode uses `G29` for auto bed leveling (stock Kobra Neo probes fresh each print)
- Profiles use proper `"from": "system"` and `"inherits": "fdm_machine_common"` / `"fdm_process_common"` chains
- Buildplate model and texture from #12341 are already in the repo

### Testing

- Verified profiles load correctly in OrcaSlicer 2.3.2 (no errors in log)
- Printer appears in Printer Selection dialog with correct 240x240 cover image
- Process/filament presets appear when printer is selected
- **Note:** Start/end gcode adapted from Kobra 2 Neo for stock Marlin — testing on stock firmware by Kobra Neo owners would be appreciated

Closes the gap left by #12341 and #12889.
This commit is contained in:
AndyHazz
2026-04-08 04:34:38 +01:00
committed by GitHub
parent 1b2ff12868
commit bd184655f4
9 changed files with 1695 additions and 1 deletions

View File

@@ -67,6 +67,10 @@
{
"name": "Anycubic i3 Mega S",
"sub_path": "machine/Anycubic i3 Mega S.json"
},
{
"name": "Anycubic Kobra Neo",
"sub_path": "machine/Anycubic Kobra Neo.json"
}
],
"process_list": [
@@ -253,6 +257,22 @@
{
"name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle",
"sub_path": "process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json"
},
{
"name": "0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle",
"sub_path": "process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json"
},
{
"name": "0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle",
"sub_path": "process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
},
{
"name": "0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle",
"sub_path": "process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
},
{
"name": "0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle",
"sub_path": "process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
}
],
"filament_list": [
@@ -435,6 +455,10 @@
{
"name": "Generic TPU @Anycubic Kobra 3 0.4 nozzle",
"sub_path": "filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json"
},
{
"name": "Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle",
"sub_path": "filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json"
}
],
"machine_list": [
@@ -517,6 +541,10 @@
{
"name": "Anycubic i3 Mega S 0.4 nozzle",
"sub_path": "machine/Anycubic i3 Mega S 0.4 nozzle.json"
},
{
"name": "Anycubic Kobra Neo 0.4 nozzle",
"sub_path": "machine/Anycubic Kobra Neo 0.4 nozzle.json"
}
]
}
}