mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-08-06 21:44:14 -06:00
✅ Add build variant hints
This commit is contained in:
parent
a2ae0dd72e
commit
3a47c01a4c
12 changed files with 133 additions and 26 deletions
|
@ -26,16 +26,17 @@
|
|||
/**
|
||||
* Choose your version:
|
||||
*/
|
||||
// normal size or plus?
|
||||
|
||||
// Normal or Plus size?
|
||||
#define ANYCUBIC_KOSSEL_PLUS
|
||||
|
||||
// Anycubic Probe version 1 or 2 see README.md; 0 for no probe
|
||||
#define ANYCUBIC_PROBE_VERSION 2
|
||||
|
||||
// Heated Bed:
|
||||
// 0 ... no heated bed
|
||||
// 1 ... aluminium heated bed with "BuildTak-like" sticker
|
||||
// 2 ... ultrabase heated bed
|
||||
// 0 ... No heated bed
|
||||
// 1 ... Aluminium heated bed with "BuildTak-like" sticker
|
||||
// 2 ... Ultrabase heated bed
|
||||
#define ANYCUBIC_KOSSEL_ENABLE_BED 2
|
||||
|
||||
/**
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ANYCUBIC_KOSSEL_PLUS": { "0":"Kossel", "1":"Kossel Plus" },
|
||||
"ANYCUBIC_PROBE_VERSION": { "0":"No Probe", "1":"Anycubic Probe V1", "2":"Anycubic Probe V2" },
|
||||
"ANYCUBIC_KOSSEL_ENABLE_BED": { "0":"No Bed", "1":"Aluminum Bed", "2":"Ultrabase Bed" },
|
||||
"default": {
|
||||
"ANYCUBIC_KOSSEL_PLUS": 1,
|
||||
"ANYCUBIC_PROBE_VERSION": 2,
|
||||
"ANYCUBIC_KOSSEL_ENABLE_BED": 2
|
||||
}
|
||||
}
|
|
@ -26,16 +26,17 @@
|
|||
/**
|
||||
* Choose your version:
|
||||
*/
|
||||
// normal size or plus?
|
||||
|
||||
// Normal or Plus size?
|
||||
//#define ANYCUBIC_KOSSEL_PLUS
|
||||
|
||||
// Anycubic Probe version 1 or 2 see README.md; 0 for no probe
|
||||
#define ANYCUBIC_PROBE_VERSION 0
|
||||
|
||||
// Heated Bed:
|
||||
// 0 ... no heated bed
|
||||
// 1 ... aluminium heated bed with "BuildTak-like" sticker
|
||||
// 2 ... ultrabase heated bed
|
||||
// 0 ... No heated bed
|
||||
// 1 ... Aluminium heated bed with "BuildTak-like" sticker
|
||||
// 2 ... Ultrabase heated bed
|
||||
#define ANYCUBIC_KOSSEL_ENABLE_BED 0
|
||||
|
||||
/**
|
||||
|
|
12
config/examples/delta/Anycubic/Kossel/variants.json
Normal file
12
config/examples/delta/Anycubic/Kossel/variants.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"permute": {
|
||||
"ANYCUBIC_KOSSEL_PLUS": { "0":"Kossel", "1":"Kossel Plus" },
|
||||
"ANYCUBIC_PROBE_VERSION": { "0":"No Probe", "1":"Anycubic Probe V1", "2":"Anycubic Probe V2" },
|
||||
"ANYCUBIC_KOSSEL_ENABLE_BED": { "0":"No Bed", "1":"Aluminum Bed", "2":"Ultrabase Bed" }
|
||||
},
|
||||
"default": {
|
||||
"ANYCUBIC_KOSSEL_PLUS": 0,
|
||||
"ANYCUBIC_PROBE_VERSION": 0,
|
||||
"ANYCUBIC_KOSSEL_ENABLE_BED": 0
|
||||
}
|
||||
}
|
11
config/examples/delta/Velleman/K8800/variants.json
Normal file
11
config/examples/delta/Velleman/K8800/variants.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"groups": [{
|
||||
"type": "exclusive",
|
||||
"required": 1,
|
||||
"options": [ "K8800_UBL", "K8800_BILINEAR" ],
|
||||
}],
|
||||
"default": {
|
||||
"K8800_UBL": 1,
|
||||
"K8800_BILINEAR": 0
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue