Merge branch 'main' into feat/configurable-bambu-network-lib

This commit is contained in:
SoftFever
2025-12-27 23:40:35 +08:00
committed by GitHub
216 changed files with 3875 additions and 529 deletions

View File

@@ -48,16 +48,17 @@ concurrency:
jobs:
build_linux:
build_linux: # Separate so unit tests can wait on just Linux builds to complete.
name: Build Linux
strategy:
fail-fast: false
# Don't run scheduled builds on forks:
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
uses: ./.github/workflows/build_check_cache.yml
uses: ./.github/workflows/build_deps.yml
with:
os: ubuntu-24.04
build-deps-only: ${{ inputs.build-deps-only || false }}
force-build: ${{ github.event_name == 'schedule' }}
secrets: inherit
build_all:
name: Build Non-Linux
@@ -70,7 +71,7 @@ jobs:
arch: arm64
# Don't run scheduled builds on forks:
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
uses: ./.github/workflows/build_check_cache.yml
uses: ./.github/workflows/build_deps.yml
with:
os: ${{ matrix.os }}
arch: ${{ matrix.arch }}
@@ -112,7 +113,7 @@ jobs:
path: build/tests/**/*.log
- name: Publish Test Results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
uses: EnricoMi/publish-unit-test-result-action/linux@v2
with:
files: "ctest_results.xml"
flatpak:

View File

@@ -1,62 +0,0 @@
name: Check Cache
on:
workflow_call:
inputs:
os:
required: true
type: string
arch:
required: false
type: string
build-deps-only:
required: false
type: boolean
force-build:
required: false
type: boolean
jobs:
check_cache: # determines if there is a cache and outputs variables used in caching process
name: Check Cache
runs-on: ${{ inputs.os }}
outputs:
cache-key: ${{ steps.set_outputs.outputs.cache-key }}
cache-path: ${{ steps.set_outputs.outputs.cache-path }}
valid-cache: ${{ steps.cache_deps.outputs.cache-hit }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
lfs: 'true'
- name: set outputs
id: set_outputs
env:
dep-folder-name: ${{ inputs.os != 'macos-14' && '/OrcaSlicer_dep' || '' }}
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
run: |
echo cache-key=${{ inputs.os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }}
- name: load cache
id: cache_deps
uses: actions/cache@v4
with:
path: ${{ steps.set_outputs.outputs.cache-path }}
key: ${{ steps.set_outputs.outputs.cache-key }}
lookup-only: true
build_deps: # call next step
name: Build Deps
needs: [check_cache]
uses: ./.github/workflows/build_deps.yml
with:
cache-key: ${{ needs.check_cache.outputs.cache-key }}
cache-path: ${{ needs.check_cache.outputs.cache-path }}
valid-cache: ${{ needs.check_cache.outputs.valid-cache == 'true' }}
os: ${{ inputs.os }}
arch: ${{ inputs.arch }}
build-deps-only: ${{ inputs.build-deps-only }}
force-build: ${{ inputs.force-build }}
secrets: inherit

View File

@@ -1,15 +1,6 @@
on:
workflow_call:
inputs:
cache-key:
required: true
type: string
cache-path:
required: true
type: string
valid-cache:
required: true
type: boolean
os:
required: true
type: string
@@ -26,55 +17,62 @@ on:
jobs:
build_deps:
name: Build Deps
if: ${{ !cancelled() && (inputs.build-deps-only || inputs.force-build || inputs.valid-cache != true) }}
runs-on: ${{ inputs.os }}
outputs:
artifact-name: ${{ env.ARTIFACT_NAME }}
artifact-path: ${{ env.DEPS_PATH }}
env:
date:
DO_BUILD: ${{ inputs.build-deps-only || inputs.force-build }}
DEPS_PATH: ${{ github.workspace }}/deps/build${{ inputs.os != 'macos-14' && '/OrcaSlicer_dep' || '' }}
ARTIFACT_NAME: OrcaSlicer_dep_${{ inputs.os }}_${{ inputs.arch }}
steps:
# Setup the environment
- name: Checkout
uses: actions/checkout@v6
with:
lfs: 'true'
# Cached deps are just the final outputs, no intermediate files.
# So building XOR cache loading.
# We use `lookup-only` to skip pulling cache.
- name: load cached deps
uses: actions/cache@v4
uses: actions/cache/restore@v4
id: cache-load
with:
path: ${{ inputs.cache-path }}
key: ${{ inputs.cache-key }}
path: ${{ env.DEPS_PATH }}
key: ${{ inputs.os }}-${{ inputs.arch }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }}
lookup-only: ${{ env.DO_BUILD == 'true' }} # Doing this instead of `if` preserves the outputs of this step
- uses: lukka/get-cmake@latest
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') }}
with:
cmakeVersion: "~3.28.0" # use most recent 3.28.x version
- name: setup dev on Windows
if: inputs.os == 'windows-latest'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && inputs.os == 'windows-latest' }}
uses: microsoft/setup-msbuild@v2
- name: Get the date on Ubuntu and macOS
if: inputs.os != 'windows-latest'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && inputs.os != 'windows-latest' }}
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
shell: bash
- name: Get the date on Windows
if: inputs.os == 'windows-latest'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && inputs.os == 'windows-latest' }}
run: echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
shell: pwsh
# Build Dependencies
- name: Build on Windows
if: inputs.os == 'windows-latest'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && inputs.os == 'windows-latest' }}
working-directory: ${{ github.workspace }}
run: |
choco install strawberryperl
.\build_release_vs.bat deps
.\build_release_vs.bat pack
cd ${{ github.workspace }}/deps/build
# Windows and Linux don't need to delete any directories, because they only package up deps/build/OrcaSlicer_dep.
# But Mac has multiple and we're preserving their directory structure relationship.
# So the garbage siblings of OrcaSlicer_dep can be deleted to save artifact and cache space.
- name: Build on Mac ${{ inputs.arch }}
if: inputs.os == 'macos-14'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && inputs.os == 'macos-14' }}
working-directory: ${{ github.workspace }}
run: |
brew install automake texinfo libtool
@@ -87,53 +85,40 @@ jobs:
done
brew install zstd
- name: Apt-Install Dependencies
if: inputs.os == 'ubuntu-24.04'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && inputs.os == 'ubuntu-24.04' }}
uses: ./.github/actions/apt-install-deps
- name: Build on Ubuntu
if: inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04'
if: ${{ !cancelled() && (env.DO_BUILD == 'true' || steps.cache-load.outputs.cache-hit != 'true') && (inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04') }}
working-directory: ${{ github.workspace }}
run: |
mkdir -p ${{ github.workspace }}/deps/build/destdir
./build_linux.sh -dr
cd deps/build
tar -czvf OrcaSlicer_dep_ubuntu_$(date +"%Y%m%d").tar.gz destdir
# Upload Artifacts
# - name: Upload Mac ${{ inputs.arch }} artifacts
# if: inputs.os == 'macos-14'
# uses: actions/upload-artifact@v5
# with:
# name: OrcaSlicer_dep_mac_${{ env.date }}
# path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.tar.gz
- name: Upload Windows artifacts
if: inputs.os == 'windows-latest'
- name: Upload OrcaSlicer_dep director(ies) for use later
if: ${{ !cancelled() && ! env.ACT}}
uses: actions/upload-artifact@v5
with:
name: OrcaSlicer_dep_win64_${{ env.date }}
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.zip
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.DEPS_PATH }}
retention-days: 10 # It's not too big, but we don't need it for a very long time.
if-no-files-found: error
- name: Upload Ubuntu artifacts
if: ${{ ! env.ACT && inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04' }}
env:
ubuntu-ver: ${{ (inputs.os == 'ubuntu-20.04' && '2004') || (inputs.os == 'ubuntu-24.04' && '2404') || '' }}
uses: actions/upload-artifact@v5
- name: Save cache from main branch
if: ${{ !cancelled() && github.ref == 'refs/heads/main' && steps.cache-load.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v4
with:
name: OrcaSlicer_dep_ubuntu_${{ env.ubuntu-ver }}_${{ env.date }}
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep_ubuntu_*.tar.gz
path: ${{ env.DEPS_PATH }}
key: ${{ steps.cache-load.outputs.cache-primary-key }}
build_orca:
name: Build OrcaSlicer
needs: [build_deps]
if: ${{ !cancelled() && !inputs.build-deps-only && (inputs.force-build || (inputs.valid-cache == true && needs.build_deps.result == 'skipped') || (inputs.valid-cache != true && success())) }}
if: ${{ !cancelled() && (!inputs.build-deps-only || inputs.force-build) }}
uses: ./.github/workflows/build_orca.yml
with:
cache-key: ${{ inputs.cache-key }}
cache-path: ${{ inputs.cache-path }}
artifact-name: ${{ needs.build_deps.outputs.artifact-name }}
artifact-path: ${{ needs.build_deps.outputs.artifact-path }}
os: ${{ inputs.os }}
arch: ${{ inputs.arch }}
secrets: inherit

View File

@@ -1,10 +1,10 @@
on:
workflow_call:
inputs:
cache-key:
artifact-name:
required: true
type: string
cache-path:
artifact-path:
required: true
type: string
os:
@@ -30,12 +30,11 @@ jobs:
with:
lfs: 'true'
- name: load cached deps
uses: actions/cache@v4
- name: Download deps artifacts
uses: actions/download-artifact@v4
with:
path: ${{ inputs.cache-path }}
key: ${{ inputs.cache-key }}
fail-on-cache-miss: false
name: ${{ inputs.artifact-name }}
path: ${{ inputs.artifact-path }}
- uses: lukka/get-cmake@latest
with:

View File

@@ -21,7 +21,7 @@ function usage() {
echo " -p: boost ccache hit rate by disabling precompiled headers (default: ON)"
echo " -r: skip RAM and disk checks (low RAM compiling)"
echo " -s: build the Orca Slicer (optional)"
echo " -t: build tests (optional), requires -s flag"
echo " -t: build tests (optional)"
echo " -u: install system dependencies (asks for sudo password; build prerequisite)"
echo " -l: use Clang instead of GCC (default: GCC)"
echo " -L: use ld.lld as linker (if available)"

View File

@@ -1,59 +0,0 @@
--- a/BGL/include/CGAL/boost/graph/iterator.h 2022-10-07 19:04:41 UTC
+++ b/BGL/include/CGAL/boost/graph/iterator.h
@@ -213,18 +213,7 @@ class Halfedge_around_source_iterator { (public)
{}
#ifndef DOXYGEN_RUNNING
- // design patter: "safe bool"
- // will be replaced by explicit operator bool with C++11
- typedef void (Halfedge_around_source_iterator::*bool_type)() const;
- void this_type_does_not_support_comparisons() const {}
-
- operator bool_type() const
- {
- return (! (this->base() == nullptr)) ?
- &Halfedge_around_source_iterator::this_type_does_not_support_comparisons : 0;
- }
-
bool operator==( const Self& i) const {
CGAL_assertion( anchor == anchor);
return ( g == i.g) && ( pos == i.pos) && ( winding == i.winding);
@@ -313,18 +302,7 @@ class Halfedge_around_target_iterator { (public)
{}
#ifndef DOXYGEN_RUNNING
- // design patter: "safe bool"
- // will be replaced by explicit operator bool with C++11
- typedef void (Halfedge_around_target_iterator::*bool_type)() const;
- void this_type_does_not_support_comparisons() const {}
-
- operator bool_type() const
- {
- return (! (this->base() == nullptr)) ?
- &Halfedge_around_target_iterator::this_type_does_not_support_comparisons : 0;
- }
-
bool operator==( const Self& i) const {
CGAL_assertion( anchor == anchor);
return ( g == i.g) && ( pos == i.pos) && ( winding == i.winding);
@@ -411,18 +389,6 @@ class Halfedge_around_face_iterator { (public)
const value_type& operator * ( ) const { return pos; }
pointer operator -> ( ) { return &pos; }
const value_type* operator -> ( ) const { return &pos; }
-
- // design patter: "safe bool"
- // will be replaced by explicit operator bool with C++11
- typedef void (Halfedge_around_face_iterator::*bool_type)() const;
-
- void this_type_does_not_support_comparisons() const {}
-
- operator bool_type() const
- {
- return (! (this->base() == nullptr)) ?
- &Halfedge_around_face_iterator::this_type_does_not_support_comparisons : 0;
- }
bool operator==( const Self& i) const {
CGAL_assertion( anchor == anchor);

View File

@@ -5,11 +5,10 @@ endif ()
orcaslicer_add_cmake_project(
CGAL
# GIT_REPOSITORY https://github.com/CGAL/cgal.git
# GIT_TAG bec70a6d52d8aacb0b3d82a7b4edc3caa899184b # releases/CGAL-5.0
# GIT_TAG 3654f780ae0c64675cabaef0e5ddaf904c48b4b7 # releases/CGAL-5.6.3
# For whatever reason, this keeps downloading forever (repeats downloads if finished)
URL https://github.com/CGAL/cgal/archive/refs/tags/v5.4.zip
URL_HASH SHA256=d7605e0a5a5ca17da7547592f6f6e4a59430a0bc861948974254d0de43eab4c0
PATCH_COMMAND git apply ${CGAL_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-clang19.patch
URL https://github.com/CGAL/cgal/releases/download/v5.6.3/CGAL-5.6.3.zip
URL_HASH SHA256=5d577acb4a9918ccb960491482da7a3838f8d363aff47e14d703f19fd84733d4
DEPENDS dep_Boost dep_GMP dep_MPFR
)

View File

@@ -0,0 +1,37 @@
{
"name": "M3D",
"version": "1.0.0",
"force_update": "0",
"description": "Configuration for M3D printers",
"machine_model_list": [
{
"name": "M3D Enabler D8500 MM Model",
"sub_path": "machine/M3D Enabler D8500 MM Model.json"
}
],
"machine_list": [
{
"name": "fdm_machine_common",
"sub_path": "machine/fdm_machine_common.json"
},
{
"name": "M3D Enabler D8500 MM",
"sub_path": "machine/M3D Enabler D8500 MM.json"
}
],
"process_list": [
{
"name": "fdm_process_common",
"sub_path": "process/fdm_process_common.json"
},
{
"name": "0.15mm MM @D8500",
"sub_path": "process/0.15mm MM @D8500.json"
},
{
"name": "0.20mm MM @D8500",
"sub_path": "process/0.20mm MM @D8500.json"
}
],
"filament_list": []
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 KiB

View File

@@ -0,0 +1,12 @@
{
"type": "machine_model",
"name": "M3D Enabler D8500 MM Model",
"model_id": "M3D_D8500_MM",
"family": "M3D",
"machine_tech": "FFF",
"nozzle_diameter": "0.4",
"bed_model": "model/M3D_bed_model.stl",
"bed_texture": "model/M3D_bed_texture.png",
"default_materials": "Generic PLA @system",
"scan_folder": "1"
}

View File

@@ -0,0 +1,166 @@
{
"type": "machine",
"name": "M3D Enabler D8500 MM",
"printer_model": "M3D Enabler D8500 MM Model",
"printer_variant": "0.4",
"inherits": "fdm_machine_common",
"from": "system",
"instantiation": "true",
"is_custom_defined": "0",
"setting_id": "M3D_D8500_MM_04",
"version": "1.0.0",
"auxiliary_fan": "1",
"change_filament_gcode": "M18 E",
"deretraction_speed": [
"50",
"50"
],
"extruder_clearance_height_to_rod": "19",
"extruder_clearance_radius": "100",
"extruder_colour": [
"#FCE94F",
"#FCE94F"
],
"extruder_offset": [
"0x0",
"0x0"
],
"fan_speedup_time": "1",
"host_type": "esp3d",
"long_retractions_when_cut": [
"0",
"0"
],
"machine_end_gcode": "; ===== ORCA END GCODE =====\nM400\nM83\nG92 E0\nG1 E-17 F1800 ; retract BEFORE any moves or power changes\n\n; Now lift and park\nG91\nG1 Z2 F2000\nG90\nG1 X100 Y160 F3000 ; parking point\n\n; Power down in order\nM104 T0 S0\nM104 T1 S0\nM106 S50 ; keep fan at ~50% while cooling (adjust if desired)\n; (Leave steppers on by omitting M84)\n; ===== END ORCA END GCODE =====\n",
"machine_load_filament_time": "0.5",
"machine_max_acceleration_e": [
"10000",
"10000"
],
"machine_max_acceleration_x": [
"2000",
"2000"
],
"machine_max_acceleration_y": [
"2000",
"2000"
],
"machine_max_acceleration_z": [
"400",
"400"
],
"machine_max_speed_e": [
"30",
"30"
],
"machine_max_speed_x": [
"400",
"400"
],
"machine_max_speed_y": [
"300",
"300"
],
"machine_max_speed_z": [
"12",
"12"
],
"machine_start_gcode": "; ===== ORCA START GCODE =====\n; minx:{first_layer_print_min[0]}\n; miny:{first_layer_print_min[1]}\n; maxx:{first_layer_print_max[0]}\n; maxy:{first_layer_print_max[1]}\n; used_0:{is_extruder_used[0]}\n; used_1:{is_extruder_used[1]}\n\n; Heaters\n{if is_extruder_used[0]}M104 T0 S{first_layer_temperature[0]}{endif}\n{if !is_extruder_used[0]}M104 T0 S150{endif}\n{if is_extruder_used[1]}M104 T1 S{first_layer_temperature[1]}{endif}\n{if !is_extruder_used[1]}M104 T1 S150{endif}\nM140 S0\nM106 S50\n\n; Home and clearance\nG28 X Y\nG28 Z\nG91\nG1 Z10 F1200 ; lift 10mm\nG90\n\n; Bed wait (dummy)\nM190 S0\n\n; Wait for target temps\n{if is_extruder_used[0]}M109 T0 S{first_layer_temperature[0]}{endif}\n{if is_extruder_used[1]}M109 T1 S{first_layer_temperature[1]}{endif}\n\n; Absolute XYZ / Relative E\nG90\nM83\n\n; ===== Dynamic Bed Leveling ====\nT0\nG1 Z3 F3000\nG1 X15 Y15 F6000\nG1 Z0.25 F1000; Otherwise Orca displays with a 3mm height\n; Single probe touch\nG30\nM420 S1\n; Bias the contact as -0.25 and fix Z-zero\nG92 Z-0.25 ; probed contact now treated as Z = -0.25\nG1 Z0.3 F300\n\n; ===== PRIME / TWO-LINE WIPES (sparse, no air extrude) =====\n\n; --- Tool 0: lines at Y=5 and Y=6 ---\n{if is_extruder_used[0]}\nT0\nG92 E0\nG1 X20 Y5 F3000\nG1 Z0.30 F600\nG1 X180 E18 F700\nG1 Y6.0 F1200\nG1 X20 E18 F700\nG92 E0\n{endif}\n\n; --- Tool 1: lines at Y=7 and Y=8 ---\n{if is_extruder_used[1]}\nT1\nG92 E0\nG1 X20 Y7 F3000\nG1 Z0.30 F600\nG1 X180 E18 F700\nG1 Y8.0 F1200\nG1 X20 E18 F700\nG92 E0\n{endif}\n\n; Activate initial tool (no retracts; Orca starts immediately)\nT{initial_extruder}\nG92 E0\n; ===== END ORCA START GCODE =====\n",
"machine_tool_change_time": "0.5",
"machine_unload_filament_time": "0.5",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
"machine_pause_gcode": "M601",
"max_layer_height": [
"0.32",
"0.32"
],
"min_layer_height": [
"0.1",
"0.1"
],
"nozzle_diameter": [
"0.4",
"0.4"
],
"nozzle_type": "brass",
"print_host": "m3d-enabler.local",
"printable_area": [
"0x0",
"210x0",
"210x150",
"0x150"
],
"printer_settings_id": "M3D Enabler D8500 MM",
"retract_before_wipe": [
"100%",
"100%"
],
"retract_length_toolchange": [
"17",
"17"
],
"retract_lift_above": [
"0",
"0"
],
"retract_lift_below": [
"0",
"0"
],
"retract_lift_enforce": [
"All Surfaces",
"All Surfaces"
],
"retract_restart_extra": [
"0",
"0"
],
"retract_restart_extra_toolchange": [
"0",
"0"
],
"retract_when_changing_layer": [
"1",
"1"
],
"retraction_distances_when_cut": [
"18",
"18"
],
"retraction_length": [
"4.5",
"4.5"
],
"retraction_minimum_travel": [
"2.5",
"2.5"
],
"retraction_speed": [
"60",
"60"
],
"single_extruder_multi_material": "0",
"thumbnails": "120x60/PNG",
"travel_slope": [
"45",
"45"
],
"wipe": [
"1",
"1"
],
"wipe_distance": [
"2",
"2"
],
"z_hop": [
"0",
"0"
],
"z_hop_types": [
"Normal Lift",
"Normal Lift"
]
}

View File

@@ -0,0 +1,126 @@
{
"type": "machine",
"name": "fdm_machine_common",
"from": "system",
"instantiation": "false",
"printer_technology": "FFF",
"printer_settings_id": "fdm_machine_common",
"version": "1.0.0.0",
"nozzle_diameter": [
"0.4"
],
"printable_area": [
"0x0",
"210x0",
"210x150",
"0x150"
],
"thumbnails": [
"16x16"
],
"auxiliary_fan": "1",
"change_filament_gcode": "M18 E",
"deretraction_speed": [
"50"
],
"extruder_clearance_height_to_rod": "19",
"extruder_clearance_radius": "100",
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"fan_speedup_time": "1",
"host_type": "esp3d",
"long_retractions_when_cut": [
"0"
],
"machine_end_gcode": "; ===== ORCA END GCODE =====\nM400\nM83\nG92 E0\nG1 E-17 F1800 ; retract BEFORE any moves or power changes\n\n; Now lift and park\nG91\nG1 Z2 F2000\nG90\nG1 X100 Y160 F3000 ; parking point\n\n; Power down in order\nM104 T0 S0\nM104 T1 S0\nM106 S50 ; keep fan at ~50% while cooling (adjust if desired)\n; (Leave steppers on by omitting M84)\n; ===== END ORCA END GCODE =====\n",
"machine_load_filament_time": "0.5",
"machine_max_acceleration_e": [
"10000"
],
"machine_max_acceleration_x": [
"2000"
],
"machine_max_acceleration_y": [
"2000"
],
"machine_max_acceleration_z": [
"400"
],
"machine_max_speed_e": [
"30"
],
"machine_max_speed_x": [
"400"
],
"machine_max_speed_y": [
"300"
],
"machine_max_speed_z": [
"12"
],
"machine_start_gcode": "; ===== ORCA START GCODE =====\n; minx:{first_layer_print_min[0]}\n; miny:{first_layer_print_min[1]}\n; maxx:{first_layer_print_max[0]}\n; maxy:{first_layer_print_max[1]}\n; used_0:{is_extruder_used[0]}\n; used_1:{is_extruder_used[1]}\n\n; Heaters\n{if is_extruder_used[0]}M104 T0 S{first_layer_temperature[0]}{endif}\n{if !is_extruder_used[0]}M104 T0 S150{endif}\n{if is_extruder_used[1]}M104 T1 S{first_layer_temperature[1]}{endif}\n{if !is_extruder_used[1]}M104 T1 S150{endif}\nM140 S0\nM106 S50\n\n; Home and clearance\nG28 X Y\nG28 Z\nG91\nG1 Z10 F1200 ; lift 10mm\nG90\n\n; Bed wait (dummy)\nM190 S0\n\n; Wait for target temps\n{if is_extruder_used[0]}M109 T0 S{first_layer_temperature[0]}{endif}\n{if is_extruder_used[1]}M109 T1 S{first_layer_temperature[1]}{endif}\n\n; Absolute XYZ / Relative E\nG90\nM83\n\n; ===== Dynamic Bed Leveling ====\nT0\nG1 Z3 F3000\nG1 X15 Y15 F6000\nG1 Z0.25 F1000; Otherwise Orca displays with a 3mm height\n; Single probe touch\nG30\nM420 S1\n; Bias the contact as -0.25 and fix Z-zero\nG92 Z-0.25 ; probed contact now treated as Z = -0.25\nG1 Z0.3 F300\n\n; ===== PRIME / TWO-LINE WIPES (sparse, no air extrude) =====\n\n; --- Tool 0: lines at Y=5 and Y=6 ---\n{if is_extruder_used[0]}\nT0\nG92 E0\nG1 X20 Y5 F3000\nG1 Z0.30 F600\nG1 X180 E18 F700\nG1 Y6.0 F1200\nG1 X20 E18 F700\nG92 E0\n{endif}\n\n; --- Tool 1: lines at Y=7 and Y=8 ---\n{if is_extruder_used[1]}\nT1\nG92 E0\nG1 X20 Y7 F3000\nG1 Z0.30 F600\nG1 X180 E18 F700\nG1 Y8.0 F1200\nG1 X20 E18 F700\nG92 E0\n{endif}\n\n; Activate initial tool (no retracts; Orca starts immediately)\nT{initial_extruder}\nG92 E0\n; ===== END ORCA START GCODE =====\n",
"machine_tool_change_time": "0.5",
"machine_unload_filament_time": "0.5",
"max_layer_height": [
"0.32"
],
"min_layer_height": [
"0.1"
],
"retract_before_wipe": [
"100%"
],
"retract_length_toolchange": [
"17"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"0"
],
"retract_lift_enforce": [
"All Surfaces"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_distances_when_cut": [
"18"
],
"retraction_length": [
"4.5"
],
"retraction_minimum_travel": [
"2.5"
],
"retraction_speed": [
"60"
],
"single_extruder_multi_material": "0",
"travel_slope": [
"45"
],
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0"
],
"z_hop_types": [
"Normal Lift"
]
}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -0,0 +1,45 @@
{
"type": "process",
"name": "0.15mm MM @D8500",
"inherits": "fdm_process_common",
"from": "system",
"instantiation": "true",
"compatible_printers": [
"M3D Enabler D8500 MM"
],
"brim_type": "no_brim",
"support_object_first_layer_gap": "1",
"support_object_xy_distance": "0.5",
"bridge_acceleration": "50%",
"default_acceleration": "1000",
"initial_layer_acceleration": "500",
"inner_wall_acceleration": "1000",
"internal_solid_infill_acceleration": "100%",
"outer_wall_acceleration": "1000",
"sparse_infill_acceleration": "100%",
"top_surface_acceleration": "1000",
"travel_acceleration": "1000",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "1",
"filename_format": "{input_filename_base}_{print_time}.gcode",
"gap_infill_speed": "60",
"initial_layer_speed": "35",
"inner_wall_line_width": "0.4",
"inner_wall_speed": "90",
"internal_solid_infill_speed": "60",
"layer_height": "0.15",
"outer_wall_speed": "45",
"prime_tower_brim_width": "1",
"prime_tower_width": "40",
"prime_volume": "30",
"slow_down_layers": "1",
"sparse_infill_density": "5%",
"sparse_infill_speed": "60",
"support_interface_speed": "30",
"support_type": "normal(manual)",
"travel_speed": "100",
"wall_loops": "2",
"wipe_tower_extra_spacing": "200%",
"wipe_tower_filament": "2"
}

View File

@@ -0,0 +1,46 @@
{
"type": "process",
"name": "0.20mm MM @D8500",
"inherits": "fdm_process_common",
"from": "system",
"instantiation": "true",
"compatible_printers": [
"M3D Enabler D8500 MM"
],
"brim_type": "no_brim",
"support_object_first_layer_gap": "1",
"support_object_xy_distance": "0.5",
"bridge_acceleration": "50%",
"default_acceleration": "1000",
"initial_layer_acceleration": "500",
"inner_wall_acceleration": "1000",
"internal_solid_infill_acceleration": "100%",
"outer_wall_acceleration": "1000",
"sparse_infill_acceleration": "100%",
"top_surface_acceleration": "1000",
"travel_acceleration": "1000",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "1",
"filename_format": "{input_filename_base}_{print_time}.gcode",
"gap_infill_speed": "60",
"initial_layer_speed": "35",
"inner_wall_line_width": "0.4",
"inner_wall_speed": "90",
"internal_solid_infill_speed": "60",
"layer_height": "0.2",
"outer_wall_speed": "45",
"prime_tower_brim_width": "1",
"prime_tower_width": "40",
"prime_volume": "30",
"slow_down_layers": "1",
"sparse_infill_density": "5%",
"sparse_infill_speed": "60",
"support_interface_speed": "30",
"support_type": "normal(manual)",
"top_surface_speed": "40",
"travel_speed": "100",
"wall_loops": "2",
"wipe_tower_extra_spacing": "200%",
"wipe_tower_filament": "2"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_common",
"from": "system",
"instantiation": "false",
"brim_type": "no_brim",
"enable_overhang_speed": "0",
"enable_prime_tower": "1",
"enable_support": "1",
"filename_format": "{input_filename_base}_{print_time}.gcode",
"gap_infill_speed": "60",
"initial_layer_speed": "35",
"inner_wall_line_width": "0.4",
"inner_wall_speed": "90",
"internal_solid_infill_speed": "60",
"outer_wall_speed": "45",
"prime_tower_brim_width": "1",
"prime_tower_width": "40",
"prime_volume": "30",
"slow_down_layers": "1",
"sparse_infill_density": "5%",
"sparse_infill_speed": "60",
"support_interface_speed": "30",
"support_type": "normal(manual)",
"top_surface_speed": "40",
"travel_speed": "100",
"wall_loops": "2",
"wipe_tower_extra_spacing": "200%",
"wipe_tower_filament": "2"
}

View File

@@ -0,0 +1,198 @@
{
"name": "OpenEYE",
"url": "http://www.openeye.tech",
"version": "01.00.00.03",
"force_update": "0",
"description": "OpenEYE Printers Configurations",
"machine_model_list": [
{
"name": "OpenEYE Peacock V2",
"sub_path": "machine/OpenEYE Peacock V2.json"
}
],
"process_list": [
{
"name": "fdm_process_common",
"sub_path": "process/fdm_process_common.json"
},
{
"name": "fdm_process_openeye_common",
"sub_path": "process/fdm_process_openeye_common.json"
},
{
"name": "fdm_process_openeye_0.06_nozzle_0.2",
"sub_path": "process/fdm_process_openeye_0.06_nozzle_0.2.json"
},
{
"name": "fdm_process_openeye_0.08_nozzle_0.4",
"sub_path": "process/fdm_process_openeye_0.08_nozzle_0.4.json"
},
{
"name": "fdm_process_openeye_0.08_nozzle_0.2",
"sub_path": "process/fdm_process_openeye_0.08_nozzle_0.2.json"
},
{
"name": "fdm_process_openeye_0.10_nozzle_0.2",
"sub_path": "process/fdm_process_openeye_0.10_nozzle_0.2.json"
},
{
"name": "fdm_process_openeye_0.12_nozzle_0.4",
"sub_path": "process/fdm_process_openeye_0.12_nozzle_0.4.json"
},
{
"name": "fdm_process_openeye_0.12_nozzle_0.2",
"sub_path": "process/fdm_process_openeye_0.12_nozzle_0.2.json"
},
{
"name": "fdm_process_openeye_0.14_nozzle_0.2",
"sub_path": "process/fdm_process_openeye_0.14_nozzle_0.2.json"
},
{
"name": "fdm_process_openeye_0.16_nozzle_0.4",
"sub_path": "process/fdm_process_openeye_0.16_nozzle_0.4.json"
},
{
"name": "fdm_process_openeye_0.18_nozzle_0.6",
"sub_path": "process/fdm_process_openeye_0.18_nozzle_0.6.json"
},
{
"name": "fdm_process_openeye_0.20_nozzle_0.4",
"sub_path": "process/fdm_process_openeye_0.20_nozzle_0.4.json"
},
{
"name": "fdm_process_openeye_0.24_nozzle_0.4",
"sub_path": "process/fdm_process_openeye_0.24_nozzle_0.4.json"
},
{
"name": "fdm_process_openeye_0.24_nozzle_0.6",
"sub_path": "process/fdm_process_openeye_0.24_nozzle_0.6.json"
},
{
"name": "fdm_process_openeye_0.24_nozzle_0.8",
"sub_path": "process/fdm_process_openeye_0.24_nozzle_0.8.json"
},
{
"name": "fdm_process_openeye_0.28_nozzle_0.4",
"sub_path": "process/fdm_process_openeye_0.28_nozzle_0.4.json"
},
{
"name": "fdm_process_openeye_0.30_nozzle_0.6",
"sub_path": "process/fdm_process_openeye_0.30_nozzle_0.6.json"
},
{
"name": "fdm_process_openeye_0.32_nozzle_0.8",
"sub_path": "process/fdm_process_openeye_0.32_nozzle_0.8.json"
},
{
"name": "fdm_process_openeye_0.36_nozzle_0.6",
"sub_path": "process/fdm_process_openeye_0.36_nozzle_0.6.json"
},
{
"name": "fdm_process_openeye_0.40_nozzle_0.8",
"sub_path": "process/fdm_process_openeye_0.40_nozzle_0.8.json"
},
{
"name": "fdm_process_openeye_0.42_nozzle_0.6",
"sub_path": "process/fdm_process_openeye_0.42_nozzle_0.6.json"
},
{
"name": "fdm_process_openeye_0.48_nozzle_0.8",
"sub_path": "process/fdm_process_openeye_0.48_nozzle_0.8.json"
},
{
"name": "fdm_process_openeye_0.56_nozzle_0.8",
"sub_path": "process/fdm_process_openeye_0.56_nozzle_0.8.json"
},
{
"name": "0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle",
"sub_path": "process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json"
},
{
"name": "0.08mm Extra Fine @OpenEYE Peacock V2",
"sub_path": "process/0.08mm Extra Fine @OpenEYE Peacock V2.json"
},
{
"name": "0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle",
"sub_path": "process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json"
},
{
"name": "0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle",
"sub_path": "process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json"
},
{
"name": "0.12mm Fine @OpenEYE Peacock V2",
"sub_path": "process/0.12mm Fine @OpenEYE Peacock V2.json"
},
{
"name": "0.16mm Balanced Quality @OpenEYE Peacock V2",
"sub_path": "process/0.16mm Balanced Quality @OpenEYE Peacock V2.json"
},
{
"name": "0.16mm Standard @OpenEYE Peacock V2",
"sub_path": "process/0.16mm Standard @OpenEYE Peacock V2.json"
},
{
"name": "0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle",
"sub_path": "process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json"
},
{
"name": "0.20mm Balanced Strength @OpenEYE Peacock V2",
"sub_path": "process/0.20mm Balanced Strength @OpenEYE Peacock V2.json"
},
{
"name": "0.20mm Standard @OpenEYE Peacock V2",
"sub_path": "process/0.20mm Standard @OpenEYE Peacock V2.json"
},
{
"name": "0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle",
"sub_path": "process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json"
},
{
"name": "0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle",
"sub_path": "process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json"
},
{
"name": "0.24mm Standard @OpenEYE Peacock V2",
"sub_path": "process/0.24mm Standard @OpenEYE Peacock V2.json"
},
{
"name": "0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle",
"sub_path": "process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json"
},
{
"name": "0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle",
"sub_path": "process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json"
},
{
"name": "0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle",
"sub_path": "process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json"
}
],
"filament_list": [],
"machine_list": [
{
"name": "fdm_machine_common",
"sub_path": "machine/fdm_machine_common.json"
},
{
"name": "fdm_openeye_common",
"sub_path": "machine/fdm_openeye_common.json"
},
{
"name": "OpenEYE Peacock V2 0.4 nozzle",
"sub_path": "machine/OpenEYE Peacock V2 0.4 nozzle.json"
},
{
"name": "OpenEYE Peacock V2 0.2 nozzle",
"sub_path": "machine/OpenEYE Peacock V2 0.2 nozzle.json"
},
{
"name": "OpenEYE Peacock V2 0.6 nozzle",
"sub_path": "machine/OpenEYE Peacock V2 0.6 nozzle.json"
},
{
"name": "OpenEYE Peacock V2 0.8 nozzle",
"sub_path": "machine/OpenEYE Peacock V2 0.8 nozzle.json"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

View File

@@ -0,0 +1,24 @@
{
"type": "machine",
"name": "OpenEYE Peacock V2 0.2 nozzle",
"inherits": "OpenEYE Peacock V2 0.4 nozzle",
"from": "system",
"setting_id": "GM002",
"instantiation": "true",
"nozzle_diameter": [
"0.2"
],
"printer_model": "OpenEYE Peacock V2",
"printer_variant": "0.2",
"default_print_profile": "0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle",
"default_bed_type": "Textured PEI Plate",
"max_layer_height": [
"0.14"
],
"min_layer_height": [
"0.04"
],
"retraction_length": [
"0.4"
]
}

View File

@@ -0,0 +1,48 @@
{
"default_print_profile": "0.20mm Standard @OpenEYE Peacock V2",
"default_bed_type": "Textured PEI Plate",
"from": "system",
"inherits": "fdm_openeye_common",
"instantiation": "true",
"layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}\n_MMU_UPDATE_HEIGHT",
"machine_end_gcode": "MMU_END\nEND_PRINT",
"machine_load_filament_time": "30",
"machine_max_speed_e": [
"60",
"60"
],
"machine_max_speed_x": [
"500",
"500"
],
"machine_max_speed_y": [
"500",
"500"
],
"machine_max_speed_z": [
"30",
"30"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": "SET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\nMMU_START_SETUP INITIAL_TOOL={initial_tool} TOTAL_TOOLCHANGES=!total_toolchanges! REFERENCED_TOOLS=!referenced_tools! TOOL_COLORS=!colors! TOOL_TEMPS=!temperatures! TOOL_MATERIALS=!materials! FILAMENT_NAMES=!filament_names! PURGE_VOLUMES=!purge_volumes!\nMMU_START_CHECK\nSTART_PRINT BED_TEMP=[bed_temperature_initial_layer] EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TYPE=\"{curr_bed_type}\"\n; Enter YOUR exist start_print macro call here (minus purging logic because tool may not be loaded yet)\nMMU_START_LOAD_INITIAL_TOOL\n; Optionally add YOUR additional start logic (like purging) here to run just prior to start\nSTART_PRINT_SECONDARY\nSET_PRINT_STATS_INFO TOTAL_LAYER={total_layer_count} ; For pause at layer functionality and better print stats",
"machine_unload_filament_time": "30",
"name": "OpenEYE Peacock V2 0.4 nozzle",
"nozzle_diameter": [
"0.4"
],
"printable_area": [
"1.5x7",
"235x7",
"235x235",
"1.5x235"
],
"printable_height": "200",
"printer_model": "OpenEYE Peacock V2",
"printer_variant": "0.4",
"retract_lift_below": [
"180",
"180"
],
"setting_id": "GM001",
"type": "machine"
}

View File

@@ -0,0 +1,24 @@
{
"type": "machine",
"name": "OpenEYE Peacock V2 0.6 nozzle",
"inherits": "OpenEYE Peacock V2 0.4 nozzle",
"from": "system",
"setting_id": "GM003",
"instantiation": "true",
"nozzle_diameter": [
"0.6"
],
"printer_model": "OpenEYE Peacock V2",
"printer_variant": "0.6",
"default_print_profile": "0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle",
"default_bed_type": "Textured PEI Plate",
"max_layer_height": [
"0.42"
],
"min_layer_height": [
"0.12"
],
"retraction_length": [
"1.4"
]
}

View File

@@ -0,0 +1,24 @@
{
"type": "machine",
"name": "OpenEYE Peacock V2 0.8 nozzle",
"inherits": "OpenEYE Peacock V2 0.4 nozzle",
"from": "system",
"setting_id": "GM004",
"instantiation": "true",
"nozzle_diameter": [
"0.8"
],
"printer_model": "OpenEYE Peacock V2",
"printer_variant": "0.8",
"default_print_profile": "0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle",
"default_bed_type": "Textured PEI Plate",
"max_layer_height": [
"0.56"
],
"min_layer_height": [
"0.16"
],
"retraction_length": [
"3"
]
}

View File

@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "OpenEYE Peacock V2",
"nozzle_diameter": "0.4;0.2;0.6;0.8",
"url": "http://www.openeye.tech",
"bed_model": "Plate.stl",
"bed_texture": "pei.png",
"default_bed_type": "Textured PEI Plate",
"family": "OpenEYE",
"machine_tech": "FFF",
"model_id": "openeye_01",
"default_materials": "Generic ABS @System;Generic PLA @System;Generic PLA-CF @System;Generic PETG @System;Generic TPU @System;Generic ASA @System;Generic PC @System;Generic PVA @System;Generic PA @System;Generic PA-CF @System"
}

View File

@@ -0,0 +1,121 @@
{
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"best_object_pos": "0.5x0.5",
"change_filament_gcode": "",
"default_filament_profile": [],
"default_print_profile": "",
"deretraction_speed": [
"40"
],
"extruder_clearance_height_to_lid": "140",
"extruder_clearance_height_to_rod": "34",
"extruder_clearance_radius": "65",
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"from": "system",
"gcode_flavor": "marlin",
"instantiation": "false",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
"machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end",
"machine_max_acceleration_e": [
"5000"
],
"machine_max_acceleration_extruding": [
"10000"
],
"machine_max_acceleration_retracting": [
"1000"
],
"machine_max_acceleration_x": [
"10000"
],
"machine_max_acceleration_y": [
"10000"
],
"machine_max_acceleration_z": [
"100"
],
"machine_max_jerk_e": [
"5"
],
"machine_max_jerk_x": [
"8"
],
"machine_max_jerk_y": [
"8"
],
"machine_max_jerk_z": [
"3"
],
"machine_max_speed_e": [
"60"
],
"machine_max_speed_x": [
"500"
],
"machine_max_speed_y": [
"500"
],
"machine_max_speed_z": [
"10"
],
"machine_min_extruding_rate": [
"0"
],
"machine_min_travel_rate": [
"0"
],
"machine_pause_gcode": "M601",
"machine_start_gcode": "G0 Z20 F9000\nG92 E0; G1 E-10 F1200\nG28\nM970 Q1 A10 B10 C130 K0\nM970 Q1 A10 B131 C250 K1\nM974 Q1 S1 P0\nM970 Q0 A10 B10 C130 H20 K0\nM970 Q0 A10 B131 C250 K1\nM974 Q0 S1 P0\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nG29 ;Home\nG90;\nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S205;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder \nG1 X110 Y110 Z2.0 F3000 ;Move Z Axis up",
"max_layer_height": [
"0.28"
],
"min_layer_height": [
"0.08"
],
"name": "fdm_machine_common",
"nozzle_diameter": [
"0.4"
],
"printable_height": "250",
"printer_settings_id": "",
"printer_technology": "FFF",
"printer_variant": "0.4",
"retract_before_wipe": [
"70%"
],
"retract_length_toolchange": [
"1"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"5"
],
"retraction_minimum_travel": [
"2"
],
"retraction_speed": [
"60"
],
"silent_mode": "0",
"single_extruder_multi_material": "1",
"type": "machine",
"wipe": [
"1"
],
"z_hop": [
"0"
]
}

View File

@@ -0,0 +1,226 @@
{
"adaptive_bed_mesh_margin": "0",
"auxiliary_fan": "0",
"bed_exclude_area": [
"0x0"
],
"bed_mesh_max": "99999,99999",
"bed_mesh_min": "-99999,-99999",
"bed_mesh_probe_distance": "50,50",
"bed_temperature_formula": "by_highest_temp",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\nTIMELAPSE_TAKE_FRAME",
"best_object_pos": "0.5,0.5",
"change_filament_gcode": "",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_bed_type": "Textured PEI Plate",
"default_filament_profile": [
"Generic PLA @System"
],
"default_print_profile": "0.20mm Standard @OpenEYE Peacock V2",
"deretraction_speed": [
"30"
],
"disable_m73": "0",
"emit_machine_limits_to_gcode": "0",
"enable_filament_ramming": "0",
"enable_long_retraction_when_cut": "0",
"extra_loading_move": "0",
"extruder_clearance_height_to_lid": "34",
"extruder_clearance_height_to_rod": "34",
"extruder_clearance_radius": "47",
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"from": "system",
"gcode_flavor": "klipper",
"head_wrap_detect_zone": [],
"high_current_on_filament_swap": "0",
"host_type": "octoprint",
"inherits": "fdm_machine_common",
"instantiation": "false",
"layer_change_gcode": "SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}\n_MMU_UPDATE_HEIGHT",
"long_retractions_when_cut": [
"0"
],
"machine_end_gcode": "MMU_END\nEND_PRINT",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"9000",
"9000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"500",
"500"
],
"machine_max_jerk_e": [
"2.5",
"2.5"
],
"machine_max_jerk_x": [
"9",
"9"
],
"machine_max_jerk_y": [
"9",
"9"
],
"machine_max_jerk_z": [
"3",
"3"
],
"machine_max_junction_deviation": [
"0",
"0"
],
"machine_max_speed_e": [
"60",
"60"
],
"machine_max_speed_x": [
"500",
"500"
],
"machine_max_speed_y": [
"500",
"500"
],
"machine_max_speed_z": [
"30",
"30"
],
"machine_min_extruding_rate": [
"0",
"0"
],
"machine_min_travel_rate": [
"0",
"0"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": "SET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\nMMU_START_SETUP INITIAL_TOOL={initial_tool} TOTAL_TOOLCHANGES=!total_toolchanges! REFERENCED_TOOLS=!referenced_tools! TOOL_COLORS=!colors! TOOL_TEMPS=!temperatures! TOOL_MATERIALS=!materials! FILAMENT_NAMES=!filament_names! PURGE_VOLUMES=!purge_volumes!\nMMU_START_CHECK\nSTART_PRINT BED_TEMP=[bed_temperature_initial_layer] EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TYPE=\"{curr_bed_type}\"\n; Enter YOUR exist start_print macro call here (minus purging logic because tool may not be loaded yet)\nMMU_START_LOAD_INITIAL_TOOL\n; Optionally add YOUR additional start logic (like purging) here to run just prior to start\nSTART_PRINT_SECONDARY\nSET_PRINT_STATS_INFO TOTAL_LAYER={total_layer_count} ; For pause at layer functionality and better print stats",
"machine_tool_change_time": "0",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"max_layer_height": [
"0.28"
],
"max_resonance_avoidance_speed": "120",
"min_layer_height": [
"0.08"
],
"min_resonance_avoidance_speed": "70",
"name": "fdm_openeye_common",
"nozzle_diameter": [
"0.4",
"0.4"
],
"nozzle_height": "2.5",
"nozzle_hrc": "0",
"nozzle_type": "brass",
"nozzle_volume": "0",
"parking_pos_retraction": "0",
"pellet_modded_printer": "0",
"preferred_orientation": "0",
"print_host": "openeye3dpi.local",
"printable_height": "250",
"printer_settings_id": "",
"printer_technology": "FFF",
"printer_variant": "0.4",
"printing_by_object_gcode": "",
"purge_in_prime_tower": "1",
"resonance_avoidance": "0",
"retract_before_wipe": [
"0%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"180",
"180"
],
"retract_lift_enforce": [
"All Surfaces"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_distances_when_cut": [
"18"
],
"retraction_length": [
"0.8"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"30"
],
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "0",
"support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"template_custom_gcode": "",
"thumbnails": "48x48/PNG, 300x300/PNG",
"thumbnails_format": "PNG",
"time_cost": "0",
"time_lapse_gcode": "",
"travel_slope": [
"3"
],
"type": "machine",
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"wipe": [
"1"
],
"wipe_distance": [
"1"
],
"z_hop": [
"0.4"
],
"z_hop_types": [
"Auto Lift"
],
"z_offset": "0"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 562 KiB

View File

@@ -0,0 +1,18 @@
{
"type": "process",
"name": "0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle",
"inherits": "fdm_process_openeye_0.08_nozzle_0.2",
"from": "system",
"setting_id": "GP139",
"instantiation": "true",
"description": "High quality profile for 0.2mm nozzle, prioritizing print quality.",
"default_acceleration": "8000",
"initial_layer_speed": "40",
"overhang_1_4_speed": "60",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.2 nozzle"
]
}

View File

@@ -0,0 +1,27 @@
{
"type": "process",
"name": "0.08mm Extra Fine @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.08_nozzle_0.4",
"from": "system",
"setting_id": "GP136",
"instantiation": "true",
"default_acceleration": "4000",
"gap_infill_speed": "50",
"initial_layer_infill_speed": "70",
"initial_layer_speed": "40",
"inner_wall_speed": "120",
"internal_solid_infill_speed": "120",
"outer_wall_acceleration": "2000",
"outer_wall_speed": "60",
"overhang_1_4_speed": "60",
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
"top_surface_speed": "120",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,16 @@
{
"type": "process",
"name": "0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle",
"inherits": "fdm_process_openeye_0.10_nozzle_0.2",
"from": "system",
"setting_id": "GP123",
"instantiation": "true",
"default_acceleration": "8000",
"initial_layer_speed": "40",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.2 nozzle"
]
}

View File

@@ -0,0 +1,17 @@
{
"type": "process",
"name": "0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle",
"inherits": "fdm_process_openeye_0.12_nozzle_0.2",
"from": "system",
"setting_id": "GP140",
"instantiation": "true",
"default_acceleration": "8000",
"initial_layer_speed": "40",
"overhang_1_4_speed": "60",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.2 nozzle"
]
}

View File

@@ -0,0 +1,31 @@
{
"type": "process",
"name": "0.12mm Fine @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.12_nozzle_0.4",
"from": "system",
"setting_id": "GP142",
"instantiation": "true",
"bottom_shell_layers": "7",
"default_acceleration": "4000",
"gap_infill_speed": "50",
"initial_layer_infill_speed": "70",
"initial_layer_speed": "40",
"inner_wall_speed": "120",
"internal_solid_infill_speed": "150",
"outer_wall_acceleration": "2000",
"outer_wall_speed": "60",
"overhang_1_4_speed": "60",
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
"top_color_penetration_layers": "7",
"top_shell_layers": "9",
"top_shell_thickness": "0.8",
"top_surface_speed": "150",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,26 @@
{
"type": "process",
"name": "0.16mm Balanced Quality @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.16_nozzle_0.4",
"from": "system",
"setting_id": "GP174",
"instantiation": "true",
"description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.",
"default_acceleration": "4000",
"initial_layer_speed": "50",
"inner_wall_speed": "150",
"internal_solid_infill_speed": "180",
"outer_wall_acceleration": "2000",
"outer_wall_speed": "60",
"overhang_1_4_speed": "60",
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "180",
"top_surface_speed": "150",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,21 @@
{
"type": "process",
"name": "0.16mm Standard @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.16_nozzle_0.4",
"from": "system",
"setting_id": "GP143",
"instantiation": "true",
"description": "Standard profile for 0.16mm layer height, prioritizing speed.",
"default_acceleration": "8000",
"initial_layer_speed": "50",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_1_4_speed": "60",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,26 @@
{
"type": "process",
"name": "0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle",
"inherits": "fdm_process_openeye_0.18_nozzle_0.6",
"from": "system",
"setting_id": "GP137",
"instantiation": "true",
"description": "High quality profile for 0.6mm nozzle, prioritizing print quality and strength.",
"bridge_speed": "50",
"default_acceleration": "8000",
"gap_infill_speed": "250",
"initial_layer_infill_speed": "105",
"initial_layer_speed": "50",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_3_4_speed": "30",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"top_surface_speed": "200",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.6 nozzle"
]
}

View File

@@ -0,0 +1,26 @@
{
"type": "process",
"name": "0.20mm Balanced Strength @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.20_nozzle_0.4",
"from": "system",
"setting_id": "GP173",
"instantiation": "true",
"description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.",
"bottom_shell_layers": "4",
"default_acceleration": "4000",
"initial_layer_speed": "50",
"inner_wall_speed": "150",
"internal_solid_infill_speed": "200",
"outer_wall_acceleration": "2000",
"outer_wall_speed": "60",
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "200",
"top_shell_layers": "6",
"top_surface_speed": "150",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,21 @@
{
"type": "process",
"name": "0.20mm Standard @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.20_nozzle_0.4",
"from": "system",
"setting_id": "GP124",
"instantiation": "true",
"description": "Standard profile for 0.4mm nozzle, prioritizing speed.",
"default_acceleration": "8000",
"initial_layer_speed": "50",
"internal_solid_infill_speed": "250",
"inner_wall_speed": "300",
"outer_wall_speed": "200",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,27 @@
{
"type": "process",
"name": "0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle",
"inherits": "fdm_process_openeye_0.24_nozzle_0.8",
"from": "system",
"setting_id": "GP138",
"instantiation": "true",
"description": "High quality profile for 0.8mm nozzle, prioritizing print quality.",
"bridge_speed": "50",
"default_acceleration": "8000",
"gap_infill_speed": "250",
"initial_layer_infill_speed": "105",
"initial_layer_speed": "50",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"top_surface_speed": "200",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.8 nozzle"
]
}

View File

@@ -0,0 +1,26 @@
{
"type": "process",
"name": "0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle",
"inherits": "fdm_process_openeye_0.24_nozzle_0.6",
"from": "system",
"setting_id": "GP146",
"instantiation": "true",
"description": "Strength profile for 0.6mm nozzle, prioritizing strength.",
"bridge_speed": "50",
"default_acceleration": "8000",
"gap_infill_speed": "250",
"initial_layer_infill_speed": "105",
"initial_layer_speed": "50",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_3_4_speed": "30",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"top_surface_speed": "200",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.6 nozzle"
]
}

View File

@@ -0,0 +1,19 @@
{
"type": "process",
"name": "0.24mm Standard @OpenEYE Peacock V2",
"inherits": "fdm_process_openeye_0.24_nozzle_0.4",
"from": "system",
"setting_id": "GP144",
"instantiation": "true",
"default_acceleration": "8000",
"initial_layer_speed": "50",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.4 nozzle"
]
}

View File

@@ -0,0 +1,26 @@
{
"type": "process",
"name": "0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle",
"inherits": "fdm_process_openeye_0.30_nozzle_0.6",
"from": "system",
"setting_id": "GP125",
"instantiation": "true",
"description": "Standard profile for 0.6mm nozzle, prioritizing speed.",
"bridge_speed": "50",
"default_acceleration": "8000",
"gap_infill_speed": "250",
"initial_layer_infill_speed": "105",
"initial_layer_speed": "50",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_3_4_speed": "30",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"top_surface_speed": "200",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.6 nozzle"
]
}

View File

@@ -0,0 +1,27 @@
{
"type": "process",
"name": "0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle",
"inherits": "fdm_process_openeye_0.32_nozzle_0.8",
"from": "system",
"setting_id": "GP149",
"instantiation": "true",
"description": "Strength profile for 0.8mm nozzle, prioritizing strength.",
"bridge_speed": "50",
"default_acceleration": "8000",
"gap_infill_speed": "250",
"initial_layer_infill_speed": "105",
"initial_layer_speed": "50",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"top_surface_speed": "200",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.8 nozzle"
]
}

View File

@@ -0,0 +1,27 @@
{
"type": "process",
"name": "0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle",
"inherits": "fdm_process_openeye_0.40_nozzle_0.8",
"from": "system",
"setting_id": "GP126",
"instantiation": "true",
"description": "Standard profile for 0.8mm nozzle, prioritizing speed.",
"bridge_speed": "50",
"default_acceleration": "8000",
"gap_infill_speed": "250",
"initial_layer_infill_speed": "105",
"initial_layer_speed": "50",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"outer_wall_speed": "200",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"sparse_infill_speed": "350",
"top_surface_speed": "200",
"travel_speed": "500",
"compatible_printers": [
"OpenEYE Peacock V2 0.8 nozzle"
]
}

View File

@@ -0,0 +1,116 @@
{
"type": "process",
"name": "fdm_process_common",
"from": "system",
"instantiation": "false",
"adaptive_layer_height": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bottom_surface_pattern": "monotonic",
"bridge_flow": "0.95",
"bridge_no_support": "0",
"bridge_speed": "25",
"brim_object_gap": "0.1",
"brim_width": "5",
"compatible_printers_condition": "",
"default_acceleration": "10000",
"detect_overhang_wall": "1",
"detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_prime_tower": "1",
"enable_support": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"gap_infill_speed": "30",
"infill_combination": "0",
"infill_direction": "45",
"infill_wall_overlap": "15%",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "40",
"interface_shells": "0",
"internal_bridge_support_thickness": "0.8",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "40",
"ironing_flow": "10%",
"ironing_inset": "0.21",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.2",
"line_width": "0.42",
"max_bridge_length": "0",
"max_travel_detour_distance": "0",
"minimum_sparse_infill_area": "15",
"only_one_wall_top": "1",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "120",
"prime_tower_width": "35",
"print_sequence": "by layer",
"print_settings_id": "",
"prime_tower_brim_width": "3",
"raft_layers": "0",
"reduce_crossing_wall": "0",
"reduce_infill_retraction": "1",
"resolution": "0.012",
"scarf_angle_threshold": "155",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"sparse_infill_density": "15%",
"skeleton_infill_density": "15%",
"skin_infill_density": "15%",
"sparse_infill_line_width": "0.45",
"skin_infill_line_width": "0.45",
"skin_infill_depth": "2.0",
"skeleton_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "50",
"spiral_mode": "0",
"standby_temperature_delta": "-5",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_bottom_z_distance": "0.2",
"support_expansion": "0",
"support_filament": "0",
"support_interface_bottom_layers": "2",
"support_interface_filament": "0",
"support_interface_loop_pattern": "0",
"support_interface_pattern": "auto",
"support_interface_spacing": "0.5",
"support_interface_speed": "80",
"support_interface_top_layers": "2",
"support_line_width": "0.42",
"support_object_xy_distance": "0.35",
"support_on_build_plate_only": "0",
"support_speed": "40",
"support_style": "default",
"support_threshold_angle": "30",
"support_top_z_distance": "0.2",
"support_type": "tree(auto)",
"seam_slope_type": "none",
"seam_slope_start_height": "10%",
"seam_slope_min_length": "10",
"symmetric_infill_y_axis": "0",
"top_shell_layers": "3",
"top_shell_thickness": "0.8",
"top_surface_line_width": "0.42",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "30",
"travel_acceleration": "10000",
"travel_speed": "400",
"tree_support_branch_angle": "45",
"tree_support_branch_diameter": "2",
"tree_support_wall_count": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
"wipe_tower_no_sparse_layers": "0",
"xy_contour_compensation": "0",
"xy_hole_compensation": "0"
}

View File

@@ -0,0 +1,33 @@
{
"type": "process",
"name": "fdm_process_openeye_0.06_nozzle_0.2",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "5",
"bottom_color_penetration_layers": "5",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.22",
"internal_solid_infill_line_width": "0.22",
"ironing_inset": "0.11",
"initial_layer_infill_speed": "70",
"layer_height": "0.06",
"line_width": "0.22",
"outer_wall_line_width": "0.22",
"sparse_infill_line_width": "0.22",
"skin_infill_line_width": "0.22",
"skeleton_infill_line_width": "0.22",
"sparse_infill_speed": "100",
"support_bottom_z_distance": "0.06",
"support_line_width": "0.22",
"support_top_z_distance": "0.06",
"top_shell_layers": "7",
"top_color_penetration_layers": "7",
"top_surface_line_width": "0.22",
"top_surface_speed": "150",
"wall_loops": "4"
}

View File

@@ -0,0 +1,33 @@
{
"type": "process",
"name": "fdm_process_openeye_0.08_nozzle_0.2",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "5",
"bottom_color_penetration_layers": "5",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.22",
"internal_solid_infill_line_width": "0.22",
"ironing_inset": "0.11",
"initial_layer_infill_speed": "70",
"layer_height": "0.08",
"line_width": "0.22",
"outer_wall_line_width": "0.22",
"sparse_infill_line_width": "0.22",
"skin_infill_line_width": "0.22",
"skeleton_infill_line_width": "0.22",
"sparse_infill_speed": "100",
"support_bottom_z_distance": "0.08",
"support_line_width": "0.22",
"support_top_z_distance": "0.08",
"top_shell_layers": "7",
"top_color_penetration_layers": "7",
"top_surface_line_width": "0.22",
"top_surface_speed": "150",
"wall_loops": "4"
}

View File

@@ -0,0 +1,25 @@
{
"type": "process",
"name": "fdm_process_openeye_0.08_nozzle_0.4",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "7",
"bottom_color_penetration_layers": "7",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"gap_infill_speed": "250",
"initial_layer_speed":"20",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"ironing_flow": "8%",
"initial_layer_infill_speed": "105",
"layer_height": "0.08",
"sparse_infill_speed": "270",
"support_bottom_z_distance": "0.08",
"support_threshold_angle": "15",
"support_top_z_distance": "0.08",
"top_shell_layers": "9",
"top_color_penetration_layers": "9",
"top_shell_thickness": "1.0"
}

View File

@@ -0,0 +1,33 @@
{
"type": "process",
"name": "fdm_process_openeye_0.10_nozzle_0.2",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "5",
"bottom_color_penetration_layers": "5",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.22",
"internal_solid_infill_line_width": "0.22",
"ironing_inset": "0.11",
"initial_layer_infill_speed": "70",
"layer_height": "0.1",
"line_width": "0.22",
"outer_wall_line_width": "0.22",
"sparse_infill_line_width": "0.22",
"skin_infill_line_width": "0.22",
"skeleton_infill_line_width": "0.22",
"sparse_infill_speed": "100",
"support_bottom_z_distance": "0.1",
"support_line_width": "0.22",
"support_top_z_distance": "0.1",
"top_shell_layers": "7",
"top_color_penetration_layers": "7",
"top_surface_line_width": "0.22",
"top_surface_speed": "150",
"wall_loops": "4"
}

View File

@@ -0,0 +1,33 @@
{
"type": "process",
"name": "fdm_process_openeye_0.12_nozzle_0.2",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "5",
"bottom_color_penetration_layers": "5",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.22",
"internal_solid_infill_line_width": "0.22",
"ironing_inset": "0.11",
"initial_layer_infill_speed": "70",
"layer_height": "0.12",
"line_width": "0.22",
"outer_wall_line_width": "0.22",
"sparse_infill_line_width": "0.22",
"skin_infill_line_width": "0.22",
"skeleton_infill_line_width": "0.22",
"sparse_infill_speed": "100",
"support_bottom_z_distance": "0.12",
"support_line_width": "0.22",
"support_top_z_distance": "0.12",
"top_shell_layers": "7",
"top_color_penetration_layers": "7",
"top_surface_line_width": "0.22",
"top_surface_speed": "150",
"wall_loops": "4"
}

View File

@@ -0,0 +1,24 @@
{
"type": "process",
"name": "fdm_process_openeye_0.12_nozzle_0.4",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "5",
"bottom_color_penetration_layers": "5",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"gap_infill_speed": "250",
"initial_layer_speed": "20",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"layer_height": "0.12",
"sparse_infill_speed": "270",
"support_bottom_z_distance": "0.12",
"support_threshold_angle": "20",
"support_top_z_distance": "0.12",
"top_shell_layers": "5",
"top_color_penetration_layers": "5",
"top_shell_thickness": "0.6"
}

View File

@@ -0,0 +1,33 @@
{
"type": "process",
"name": "fdm_process_openeye_0.14_nozzle_0.2",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "5",
"bottom_color_penetration_layers": "5",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.22",
"internal_solid_infill_line_width": "0.22",
"ironing_inset": "0.11",
"initial_layer_infill_speed": "70",
"layer_height": "0.14",
"line_width": "0.22",
"outer_wall_line_width": "0.22",
"sparse_infill_line_width": "0.22",
"skin_infill_line_width": "0.22",
"skeleton_infill_line_width": "0.22",
"sparse_infill_speed": "100",
"support_bottom_z_distance": "0.14",
"support_line_width": "0.22",
"support_top_z_distance": "0.14",
"top_shell_layers": "7",
"top_color_penetration_layers": "7",
"top_surface_line_width": "0.22",
"top_surface_speed": "150",
"wall_loops": "4"
}

View File

@@ -0,0 +1,24 @@
{
"type": "process",
"name": "fdm_process_openeye_0.16_nozzle_0.4",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bottom_shell_layers": "4",
"bottom_color_penetration_layers": "4",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"gap_infill_speed": "250",
"initial_layer_speed": "20",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"layer_height": "0.16",
"sparse_infill_speed": "270",
"support_bottom_z_distance": "0.16",
"support_threshold_angle": "25",
"support_top_z_distance": "0.16",
"top_shell_layers": "6",
"top_color_penetration_layers": "6",
"top_shell_thickness": "1.0"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_openeye_0.18_nozzle_0.6",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.62",
"internal_solid_infill_line_width": "0.62",
"ironing_inset": "0.31",
"initial_layer_infill_speed": "55",
"layer_height": "0.18",
"line_width": "0.62",
"outer_wall_line_width": "0.62",
"overhang_3_4_speed": "15",
"sparse_infill_line_width": "0.62",
"skin_infill_line_width": "0.62",
"skeleton_infill_line_width": "0.62",
"sparse_infill_speed": "100",
"support_bottom_z_distance": "0.18",
"support_line_width": "0.62",
"support_top_z_distance": "0.18",
"top_surface_line_width": "0.62",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,18 @@
{
"type": "process",
"name": "fdm_process_openeye_0.20_nozzle_0.4",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"gap_infill_speed": "250",
"initial_layer_speed": "20",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"sparse_infill_speed": "270",
"top_shell_layers": "5",
"top_color_penetration_layers": "5",
"top_shell_thickness": "1.0"
}

View File

@@ -0,0 +1,21 @@
{
"type": "process",
"name": "fdm_process_openeye_0.24_nozzle_0.4",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"gap_infill_speed": "250",
"initial_layer_speed": "20",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"layer_height": "0.24",
"sparse_infill_speed": "270",
"support_threshold_angle": "35",
"top_shell_layers": "4",
"top_color_penetration_layers": "4",
"top_shell_thickness": "1.0",
"top_surface_line_width": "0.45"
}

View File

@@ -0,0 +1,28 @@
{
"type": "process",
"name": "fdm_process_openeye_0.24_nozzle_0.6",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.62",
"internal_solid_infill_line_width": "0.62",
"ironing_inset": "0.31",
"initial_layer_infill_speed": "55",
"layer_height": "0.24",
"line_width": "0.62",
"outer_wall_line_width": "0.62",
"overhang_3_4_speed": "15",
"sparse_infill_line_width": "0.62",
"skin_infill_line_width": "0.62",
"skeleton_infill_line_width": "0.62",
"sparse_infill_speed": "100",
"support_line_width": "0.62",
"top_surface_line_width": "0.62",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_openeye_0.24_nozzle_0.8",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.82",
"internal_solid_infill_line_width": "0.82",
"ironing_inset": "0.41",
"initial_layer_infill_speed": "55",
"layer_height": "0.24",
"line_width": "0.82",
"outer_wall_line_width": "0.82",
"overhang_3_4_speed": "25",
"overhang_4_4_speed": "5",
"sparse_infill_line_width": "0.82",
"skin_infill_line_width": "0.82",
"skeleton_infill_line_width": "0.82",
"sparse_infill_speed": "100",
"support_line_width": "0.82",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonic",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,21 @@
{
"type": "process",
"name": "fdm_process_openeye_0.28_nozzle_0.4",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"elefant_foot_compensation": "0.15",
"gap_infill_speed": "250",
"initial_layer_speed": "20",
"inner_wall_speed": "300",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"layer_height": "0.28",
"sparse_infill_speed": "270",
"support_threshold_angle": "40",
"top_shell_layers": "4",
"top_color_penetration_layers": "4",
"top_shell_thickness": "1.0",
"top_surface_line_width": "0.45"
}

View File

@@ -0,0 +1,28 @@
{
"type": "process",
"name": "fdm_process_openeye_0.30_nozzle_0.6",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.62",
"internal_solid_infill_line_width": "0.62",
"ironing_inset": "0.31",
"initial_layer_infill_speed": "55",
"layer_height": "0.3",
"line_width": "0.62",
"outer_wall_line_width": "0.62",
"overhang_3_4_speed": "15",
"sparse_infill_line_width": "0.62",
"skin_infill_line_width": "0.62",
"skeleton_infill_line_width": "0.62",
"sparse_infill_speed": "100",
"support_line_width": "0.62",
"top_surface_line_width": "0.62",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_openeye_0.32_nozzle_0.8",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.82",
"internal_solid_infill_line_width": "0.82",
"ironing_inset": "0.41",
"initial_layer_infill_speed": "55",
"layer_height": "0.32",
"line_width": "0.82",
"outer_wall_line_width": "0.82",
"overhang_3_4_speed": "25",
"overhang_4_4_speed": "5",
"sparse_infill_line_width": "0.82",
"skin_infill_line_width": "0.82",
"skeleton_infill_line_width": "0.82",
"sparse_infill_speed": "100",
"support_line_width": "0.82",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonic",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,28 @@
{
"type": "process",
"name": "fdm_process_openeye_0.36_nozzle_0.6",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.62",
"internal_solid_infill_line_width": "0.62",
"ironing_inset": "0.31",
"initial_layer_infill_speed": "55",
"layer_height": "0.36",
"line_width": "0.62",
"outer_wall_line_width": "0.62",
"overhang_3_4_speed": "15",
"sparse_infill_line_width": "0.62",
"skin_infill_line_width": "0.62",
"skeleton_infill_line_width": "0.62",
"sparse_infill_speed": "100",
"support_line_width": "0.62",
"top_surface_line_width": "0.62",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_openeye_0.40_nozzle_0.8",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.82",
"internal_solid_infill_line_width": "0.82",
"ironing_inset": "0.41",
"initial_layer_infill_speed": "55",
"layer_height": "0.4",
"line_width": "0.82",
"outer_wall_line_width": "0.82",
"overhang_3_4_speed": "25",
"overhang_4_4_speed": "5",
"sparse_infill_line_width": "0.82",
"skin_infill_line_width": "0.82",
"skeleton_infill_line_width": "0.82",
"sparse_infill_speed": "100",
"support_line_width": "0.82",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonic",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,28 @@
{
"type": "process",
"name": "fdm_process_openeye_0.42_nozzle_0.6",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.62",
"internal_solid_infill_line_width": "0.62",
"ironing_inset": "0.31",
"initial_layer_infill_speed": "55",
"layer_height": "0.42",
"line_width": "0.62",
"outer_wall_line_width": "0.62",
"overhang_3_4_speed": "15",
"sparse_infill_line_width": "0.62",
"skin_infill_line_width": "0.62",
"skeleton_infill_line_width": "0.62",
"sparse_infill_speed": "100",
"support_line_width": "0.62",
"top_surface_line_width": "0.62",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_openeye_0.48_nozzle_0.8",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.82",
"internal_solid_infill_line_width": "0.82",
"ironing_inset": "0.41",
"initial_layer_infill_speed": "55",
"layer_height": "0.48",
"line_width": "0.82",
"outer_wall_line_width": "0.82",
"overhang_3_4_speed": "25",
"overhang_4_4_speed": "5",
"sparse_infill_line_width": "0.82",
"skin_infill_line_width": "0.82",
"skeleton_infill_line_width": "0.82",
"sparse_infill_speed": "100",
"support_line_width": "0.82",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonic",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,30 @@
{
"type": "process",
"name": "fdm_process_openeye_0.56_nozzle_0.8",
"inherits": "fdm_process_openeye_common",
"from": "system",
"instantiation": "false",
"bridge_flow": "1",
"bridge_speed": "30",
"elefant_foot_compensation": "0.15",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "20",
"inner_wall_line_width": "0.82",
"internal_solid_infill_line_width": "0.82",
"ironing_inset": "0.41",
"initial_layer_infill_speed": "55",
"layer_height": "0.56",
"line_width": "0.82",
"outer_wall_line_width": "0.82",
"overhang_3_4_speed": "25",
"overhang_4_4_speed": "5",
"sparse_infill_line_width": "0.82",
"skin_infill_line_width": "0.82",
"skeleton_infill_line_width": "0.82",
"sparse_infill_speed": "100",
"support_line_width": "0.82",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonic",
"top_surface_speed": "150"
}

View File

@@ -0,0 +1,54 @@
{
"type": "process",
"name": "fdm_process_openeye_common",
"inherits": "fdm_process_common",
"from": "system",
"instantiation": "false",
"align_infill_direction_to_model": "1",
"exclude_object": "1",
"bridge_speed": "50",
"default_acceleration": "10000",
"enable_overhang_speed": "1",
"gap_infill_speed": "50",
"initial_layer_acceleration": "500",
"initial_layer_infill_speed": "60",
"initial_layer_speed": "30",
"inner_wall_acceleration": "0",
"inner_wall_speed": "150",
"internal_solid_infill_speed": "150",
"outer_wall_acceleration": "5000",
"outer_wall_speed": "120",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"reduce_crossing_wall": "1",
"role_based_wipe_speed": "1",
"scarf_angle_threshold": "155",
"scarf_joint_flow_ratio": "1",
"scarf_joint_speed": "100%",
"scarf_overhang_threshold": "40%",
"seam_gap": "10%",
"seam_position": "aligned_back",
"seam_slope_conditional": "1",
"seam_slope_entire_loop": "0",
"seam_slope_inner_walls": "1",
"seam_slope_min_length": "20",
"seam_slope_start_height": "0",
"seam_slope_steps": "10",
"seam_slope_type": "none",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_speed": "250",
"support_interface_speed": "80",
"support_speed": "150",
"support_on_build_plate_only": "1",
"travel_acceleration": "10000",
"top_surface_acceleration": "2000",
"top_surface_speed": "200",
"travel_speed": "500",
"travel_speed_z": "0",
"wipe_tower_wall_type": "rib",
"wipe_tower_rib_width": "8"
}

View File

@@ -1212,9 +1212,80 @@
"name": "COEX PLA+Silk @System",
"sub_path": "filament/COEX/COEX PLA+Silk @System.json"
},
{
"name": "Numakers PLA+ @System",
{ "name": "Numakers PLA+ @System",
"sub_path": "filament/Numakers/Numakers PLA+ @System.json"
},
{
"name": "Eolas Prints PLA Premium @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Premium @System.json"
},
{
"name": "Eolas Prints PLA Matte @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Matte @System.json"
},
{
"name": "Eolas Prints PLA Silk @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Silk @System.json"
},
{
"name": "Eolas Prints PLA Neon @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Neon @System.json"
},
{
"name": "Eolas Prints PLA High Speed @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA High Speed @System.json"
},
{
"name": "Eolas Prints PLA INGEO 850 @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json"
},
{
"name": "Eolas Prints PLA INGEO 870 @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json"
},
{
"name": "Eolas Prints PLA Antibacterial @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json"
},
{
"name": "Eolas Prints PLA Transition @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PLA Transition @System.json"
},
{
"name": "Eolas Prints PETG @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PETG @System.json"
},
{
"name": "Eolas Prints PETG UV Resistant @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json"
},
{
"name": "Eolas Prints PETG Transition @System",
"sub_path": "filament/Eolas Prints/Eolas Prints PETG Transition @System.json"
},
{
"name": "Eolas Prints TPU Flex 93A @System",
"sub_path": "filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json"
},
{
"name": "Eolas Prints TPU Flex D53 @System",
"sub_path": "filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json"
},
{
"name": "Eolas Prints TPU Flex D60 UV Resistant @System",
"sub_path": "filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json"
},
{
"name": "Eolas Prints TPU Transition @System",
"sub_path": "filament/Eolas Prints/Eolas Prints TPU Transition @System.json"
},
{
"name": "Eolas Prints ABS @System",
"sub_path": "filament/Eolas Prints/Eolas Prints ABS @System.json"
},
{
"name": "Eolas Prints ASA @System",
"sub_path": "filament/Eolas Prints/Eolas Prints ASA @System.json"
}
],
"process_list": [],

View File

@@ -0,0 +1,23 @@
{
"type": "filament",
"filament_id": "GFSEP017",
"setting_id": "GFSEP017_00",
"name": "Eolas Prints ABS @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["ABS"],
"nozzle_temperature": ["255"],
"nozzle_temperature_initial_layer": ["260"],
"nozzle_temperature_range_low": ["240"],
"nozzle_temperature_range_high": ["270"],
"hot_plate_temp": ["100"],
"hot_plate_temp_initial_layer": ["105"],
"chamber_temperature": ["40"],
"filament_density": ["1.04"],
"filament_cost": ["19.50"],
"filament_spool_weight": ["900"],
"filament_max_volumetric_speed": ["18"]
}

View File

@@ -0,0 +1,23 @@
{
"type": "filament",
"filament_id": "GFSEP018",
"setting_id": "GFSEP018_00",
"name": "Eolas Prints ASA @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_asa",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["ASA"],
"nozzle_temperature": ["260"],
"nozzle_temperature_initial_layer": ["270"],
"nozzle_temperature_range_low": ["245"],
"nozzle_temperature_range_high": ["275"],
"hot_plate_temp": ["100"],
"hot_plate_temp_initial_layer": ["105"],
"chamber_temperature": ["40"],
"filament_density": ["1.07"],
"filament_cost": ["22.50"],
"filament_spool_weight": ["900"],
"filament_max_volumetric_speed": ["18"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP010",
"setting_id": "GFSEP010_00",
"name": "Eolas Prints PETG @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pet",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PETG"],
"nozzle_temperature": ["240"],
"nozzle_temperature_initial_layer": ["245"],
"nozzle_temperature_range_low": ["230"],
"nozzle_temperature_range_high": ["260"],
"hot_plate_temp": ["80"],
"hot_plate_temp_initial_layer": ["85"],
"filament_density": ["1.27"],
"filament_cost": ["25.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP012",
"setting_id": "GFSEP012_00",
"name": "Eolas Prints PETG Transition @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pet",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PETG"],
"nozzle_temperature": ["240"],
"nozzle_temperature_initial_layer": ["245"],
"nozzle_temperature_range_low": ["230"],
"nozzle_temperature_range_high": ["260"],
"hot_plate_temp": ["80"],
"hot_plate_temp_initial_layer": ["85"],
"filament_density": ["1.27"],
"filament_cost": ["17.40"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP011",
"setting_id": "GFSEP011_00",
"name": "Eolas Prints PETG UV Resistant @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pet",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PETG"],
"nozzle_temperature": ["245"],
"nozzle_temperature_initial_layer": ["250"],
"nozzle_temperature_range_low": ["235"],
"nozzle_temperature_range_high": ["265"],
"hot_plate_temp": ["80"],
"hot_plate_temp_initial_layer": ["85"],
"filament_density": ["1.27"],
"filament_cost": ["30.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP008",
"setting_id": "GFSEP008_00",
"name": "Eolas Prints PLA Antibacterial @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["216"],
"nozzle_temperature_initial_layer": ["220"],
"nozzle_temperature_range_low": ["195"],
"nozzle_temperature_range_high": ["230"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["30.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP005",
"setting_id": "GFSEP005_00",
"name": "Eolas Prints PLA High Speed @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["220"],
"nozzle_temperature_initial_layer": ["220"],
"nozzle_temperature_range_low": ["210"],
"nozzle_temperature_range_high": ["240"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["25.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["17.8"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP006",
"setting_id": "GFSEP006_00",
"name": "Eolas Prints PLA INGEO 850 @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["210"],
"nozzle_temperature_initial_layer": ["215"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_range_high": ["230"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["25.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP007",
"setting_id": "GFSEP007_00",
"name": "Eolas Prints PLA INGEO 870 @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["220"],
"nozzle_temperature_initial_layer": ["225"],
"nozzle_temperature_range_low": ["200"],
"nozzle_temperature_range_high": ["235"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.22"],
"filament_cost": ["30.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP002",
"setting_id": "GFSEP002_00",
"name": "Eolas Prints PLA Matte @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["215"],
"nozzle_temperature_initial_layer": ["220"],
"nozzle_temperature_range_low": ["200"],
"nozzle_temperature_range_high": ["230"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["25.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP004",
"setting_id": "GFSEP004_00",
"name": "Eolas Prints PLA Neon @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["210"],
"nozzle_temperature_initial_layer": ["215"],
"nozzle_temperature_range_low": ["200"],
"nozzle_temperature_range_high": ["230"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["25.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["10"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP001",
"setting_id": "GFSEP001_00",
"name": "Eolas Prints PLA Premium @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["210"],
"nozzle_temperature_initial_layer": ["215"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_range_high": ["230"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["19.90"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP003",
"setting_id": "GFSEP003_00",
"name": "Eolas Prints PLA Silk @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["215"],
"nozzle_temperature_initial_layer": ["220"],
"nozzle_temperature_range_low": ["205"],
"nozzle_temperature_range_high": ["235"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["25.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["8"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP009",
"setting_id": "GFSEP009_00",
"name": "Eolas Prints PLA Transition @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["PLA"],
"nozzle_temperature": ["210"],
"nozzle_temperature_initial_layer": ["215"],
"nozzle_temperature_range_low": ["200"],
"nozzle_temperature_range_high": ["230"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.24"],
"filament_cost": ["13.90"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["15"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP013",
"setting_id": "GFSEP013_00",
"name": "Eolas Prints TPU Flex 93A @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_tpu",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["TPU"],
"nozzle_temperature": ["220"],
"nozzle_temperature_initial_layer": ["225"],
"nozzle_temperature_range_low": ["210"],
"nozzle_temperature_range_high": ["240"],
"hot_plate_temp": ["50"],
"hot_plate_temp_initial_layer": ["55"],
"filament_density": ["1.21"],
"filament_cost": ["34.99"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["6"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP014",
"setting_id": "GFSEP014_00",
"name": "Eolas Prints TPU Flex D53 @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_tpu",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["TPU"],
"nozzle_temperature": ["220"],
"nozzle_temperature_initial_layer": ["225"],
"nozzle_temperature_range_low": ["205"],
"nozzle_temperature_range_high": ["235"],
"hot_plate_temp": ["45"],
"hot_plate_temp_initial_layer": ["50"],
"filament_density": ["1.17"],
"filament_cost": ["38.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["8"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP015",
"setting_id": "GFSEP015_00",
"name": "Eolas Prints TPU D60 UV Resistant @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_tpu",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["TPU"],
"nozzle_temperature": ["225"],
"nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_low": ["215"],
"nozzle_temperature_range_high": ["245"],
"hot_plate_temp": ["55"],
"hot_plate_temp_initial_layer": ["60"],
"filament_density": ["1.16"],
"filament_cost": ["37.90"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["8"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFSEP016",
"setting_id": "GFSEP016_00",
"name": "Eolas Prints TPU Transition @System",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_tpu",
"filament_color": ["#4d9398"],
"filament_vendor": ["Eolas Prints"],
"filament_type": ["TPU"],
"nozzle_temperature": ["220"],
"nozzle_temperature_initial_layer": ["225"],
"nozzle_temperature_range_low": ["210"],
"nozzle_temperature_range_high": ["240"],
"hot_plate_temp": ["50"],
"hot_plate_temp_initial_layer": ["55"],
"filament_density": ["1.21"],
"filament_cost": ["22.50"],
"filament_spool_weight": ["1000"],
"filament_max_volumetric_speed": ["5"]
}

View File

@@ -94,6 +94,9 @@
],
"z_hop": [
"0.2"
],
"machine_max_junction_deviation": [
"0.01"
],
"fan_speedup_time": "0.2",
"fan_speedup_overhangs": "1",
@@ -102,7 +105,7 @@
"printable_height": "180",
"machine_end_gcode": "{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+2, max_print_height)} F720 ; Move print head up{endif}\nG1 X170 Y170 F4200 ; park print head\n{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+50, max_print_height)} F720 ; Move print head further up{endif}\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nM221 S100 ; reset flow\nM572 S0 ; reset PA\nM569 S1 X Y ; reset to stealthchop for X Y\nM84 ; disable motors\n; max_layer_z = [max_layer_z]",
"machine_pause_gcode": "M601",
"machine_start_gcode": "M862.3 P \"MINI\" ; printer model check\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM862.5 P2 ; g-code level check\nM862.6 P\"Input shaper\" ; FW feature check\nM115 U6.0.3+14902\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nG28 ; home all without mesh bed level\nM104 S170 ; set extruder temp for bed leveling\nM140 S[first_layer_bed_temperature] ; set bed temp\nM109 R170 ; wait for bed leveling temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM569 S1 X Y ; set stealthchop for X Y\nM204 T1250 ; set travel acceleration\nG29 ; mesh bed leveling \nM104 S[first_layer_temperature] ; set extruder temp\nG92 E0\n\nG1 X0 Y-2 Z3 F2400\n\nM109 S[first_layer_temperature] ; wait for extruder temp\n\n; intro line\nG1 X10 Z0.2 F1000\nG1 X70 E8 F900\nG1 X140 E10 F700\nG92 E0\n\nM569 S0 X Y ; set spreadcycle for X Y\nM204 T[machine_max_acceleration_travel] ; restore travel acceleration\nM572 W0.06 ; set smooth time\nM221 S95 ; set flow",
"machine_start_gcode": "M862.3 P \"MINI\" ; printer model check\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM862.5 P2 ; g-code level check\nM862.6 P\"Input shaper\" ; FW feature check\nM115 U6.4.0+11974\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nG28 ; home all without mesh bed level\nM104 S170 ; set extruder temp for bed leveling\nM140 S[first_layer_bed_temperature] ; set bed temp\nM109 R170 ; wait for bed leveling temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM569 S1 X Y ; set stealthchop for X Y\nM204 T1250 ; set travel acceleration\nG29 ; mesh bed leveling \nM104 S[first_layer_temperature] ; set extruder temp\nG92 E0\n\nG1 X0 Y-2 Z3 F2400\n\nM109 S[first_layer_temperature] ; wait for extruder temp\n\n; intro line\nG1 X10 Z0.2 F1000\nG1 X70 E8 F900\nG1 X140 E10 F700\nG92 E0\n\nM569 S0 X Y ; set spreadcycle for X Y\nM204 T[machine_max_acceleration_travel] ; restore travel acceleration\nM572 W0.06 ; set smooth time\nM221 S95 ; set flow",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\nM201 X{interpolate_table(extruded_weight_total, (0,4000), (1000,1700), (10000,1700))} Y{interpolate_table(extruded_weight_total, (0,4000), (1000,1700), (10000,1700))}",
"change_filament_gcode": "M600",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\n{if ! spiral_mode}M74 W[extruded_weight_total]{endif}\n",

View File

@@ -95,6 +95,9 @@
"z_hop": [
"0.2"
],
"machine_max_junction_deviation": [
"0.01"
],
"fan_speedup_time": "0.2",
"fan_speedup_overhangs": "1",
"fan_kickstart": "0",
@@ -102,7 +105,7 @@
"printable_height": "210",
"machine_end_gcode": "{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+1, max_print_height)} F720 ; Move print head up{endif}\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X241 Y201 F3600 ; park\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+23, max_print_height)} F300 ; Move print head up{endif}\nG4 ; wait\nM572 S0 ; reset PA\nM593 X T2 F0 ; disable IS\nM593 Y T2 F0 ; disable IS\nM84 X Y E ; disable motors\n; max_layer_z = [max_layer_z]",
"machine_pause_gcode": "M601",
"machine_start_gcode": "M17 ; enable steppers\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM862.3 P \"MK3.5\" ; printer model check\nM862.5 P2 ; g-code level check\nM862.6 P\"Input shaper\" ; FW feature check\nM115 U6.2.2+8853\n\nM555 X{(min(print_bed_max[0], first_layer_print_min[0] + 32) - 32)} Y{(max(0, first_layer_print_min[1]) - 4)} W{((min(print_bed_max[0], max(first_layer_print_min[0] + 32, first_layer_print_max[0])))) - ((min(print_bed_max[0], first_layer_print_min[0] + 32) - 32))} H{((first_layer_print_max[1])) - ((max(0, first_layer_print_min[1]) - 4))}\n\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\n\nG28 ; home all\n\nM140 S[first_layer_bed_temperature] ; set bed temp\nM104 T0 S170 ; set extruder temp for bed leveling\nM109 T0 R170 ; wait for temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\n\nG29 P1 ; invalidate mbl & probe print area\nG29 P1 X23 Y5 W80 H20 C ; probe near purge place\nG29 P3.2 ; interpolate mbl probes\nG29 P3.13 ; extrapolate mbl outside probe area\nG29 A ; activate mbl\n\n; prepare for purge\nM104 S{first_layer_temperature[0]}\nG0 X0 Y-4 Z15 F4800 ; move away and ready for the purge\nM109 S{first_layer_temperature[0]}\n\n; Extrude purge line\n\nG92 E0 ; reset extruder position\nG0 E7 X15 Z0.2 F500 ; purge\nG0 X25 E4 F500 ; purge\nG0 X35 E4 F650 ; purge\nG0 X45 E4 F800 ; purge\nG0 X{45 + 3} Z0.05 F8000 ; wipe, move close to the bed\nG0 X{45 + 3 * 2} Z0.2 F8000 ; wipe, move quickly away from the bed\n\nG92 E0\nM221 S100 ; reset flow to 100%\n",
"machine_start_gcode": "M17 ; enable steppers\nM862.1 P[nozzle_diameter] ; nozzle diameter check\nM862.3 P \"MK3.5\" ; printer model check\nM862.5 P2 ; g-code level check\nM862.6 P\"Input shaper\" ; FW feature check\nM115 U6.4.0+11974\n\nM555 X{(min(print_bed_max[0], first_layer_print_min[0] + 32) - 32)} Y{(max(0, first_layer_print_min[1]) - 4)} W{((min(print_bed_max[0], max(first_layer_print_min[0] + 32, first_layer_print_max[0])))) - ((min(print_bed_max[0], first_layer_print_min[0] + 32) - 32))} H{((first_layer_print_max[1])) - ((max(0, first_layer_print_min[1]) - 4))}\n\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\n\nG28 ; home all\n\nM140 S[first_layer_bed_temperature] ; set bed temp\nM104 T0 S170 ; set extruder temp for bed leveling\nM109 T0 R170 ; wait for temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\n\nG29 P1 ; invalidate mbl & probe print area\nG29 P1 X23 Y5 W80 H20 C ; probe near purge place\nG29 P3.2 ; interpolate mbl probes\nG29 P3.13 ; extrapolate mbl outside probe area\nG29 A ; activate mbl\n\n; prepare for purge\nM104 S{first_layer_temperature[0]}\nG0 X0 Y-4 Z15 F4800 ; move away and ready for the purge\nM109 S{first_layer_temperature[0]}\n\n; Extrude purge line\n\nG92 E0 ; reset extruder position\nG0 E7 X15 Z0.2 F500 ; purge\nG0 X25 E4 F500 ; purge\nG0 X35 E4 F650 ; purge\nG0 X45 E4 F800 ; purge\nG0 X{45 + 3} Z0.05 F8000 ; wipe, move close to the bed\nG0 X{45 + 3 * 2} Z0.2 F8000 ; wipe, move quickly away from the bed\n\nG92 E0\nM221 S100 ; reset flow to 100%\n",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\nM201 X{interpolate_table(extruded_weight_total, (0,4000), (1400,2500), (10000,2500))} Y{interpolate_table(extruded_weight_total, (0,4000), (1400,2500), (10000,2500))}\n",
"change_filament_gcode": "M600",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\n{if ! spiral_mode}M74 W[extruded_weight_total]{endif}\n",

View File

@@ -10,5 +10,8 @@
"support_interface_top_layers": "3",
"initial_layer_infill_speed": "45",
"initial_layer_speed": "25",
"compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25"
"compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25",
"gap_infill_speed": "45",
"small_perimeter_speed": "45",
"outer_wall_speed": "45"
}

View File

@@ -19,6 +19,9 @@
"top_shell_layers": "13",
"bottom_shell_thickness": "0.5",
"bottom_shell_layers": "10",
"support_base_pattern_spacing": "1",
"support_top_z_distance": "0.09",
"support_bottom_z_distance": "0.09",
"compatible_printers": [
"Prusa MINIIS 0.25 nozzle"
]

View File

@@ -19,7 +19,9 @@
"top_shell_layers": "13",
"bottom_shell_thickness": "0.5",
"bottom_shell_layers": "10",
"support_base_pattern_spacing": "1",
"support_top_z_distance": "0.09",
"support_bottom_z_distance": "0.09",
"compatible_printers": [
"Prusa MK3.5 0.25 nozzle"
]

View File

@@ -10,5 +10,8 @@
"support_interface_top_layers": "3",
"initial_layer_infill_speed": "45",
"initial_layer_speed": "25",
"compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25"
"compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.25",
"gap_infill_speed": "45",
"small_perimeter_speed": "45",
"outer_wall_speed": "45"
}

View File

@@ -21,7 +21,9 @@
"bottom_shell_layers": "8",
"bridge_speed": "30",
"internal_solid_infill_speed": "140",
"support_top_z_distance": "0.1",
"support_base_pattern_spacing": "1",
"support_top_z_distance": "0.09",
"support_bottom_z_distance": "0.09",
"compatible_printers": [
"Prusa MINIIS 0.25 nozzle"
]

View File

@@ -21,7 +21,9 @@
"bottom_shell_layers": "8",
"bridge_speed": "30",
"internal_solid_infill_speed": "140",
"support_top_z_distance": "0.1",
"support_base_pattern_spacing": "1",
"support_top_z_distance": "0.09",
"support_bottom_z_distance": "0.09",
"compatible_printers": [
"Prusa MK3.5 0.25 nozzle"
]

View File

@@ -13,5 +13,8 @@
"support_interface_top_layers": "3",
"initial_layer_infill_speed": "100",
"initial_layer_speed": "45",
"compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4"
"compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE.*/ and nozzle_diameter[0]==0.4",
"small_perimeter_speed": "145",
"inner_wall_speed": "145",
"outer_wall_speed": "145"
}

View File

@@ -4,9 +4,9 @@
"inherits": "0.10mm STRUCTURAL @MK4S 0.5",
"from": "system",
"instantiation": "true",
"inner_wall_speed": "80",
"small_perimeter_speed": "45",
"outer_wall_speed": "45",
"inner_wall_speed": "70",
"small_perimeter_speed": "50",
"outer_wall_speed": "50",
"travel_speed": "350",
"travel_acceleration": "7000",
"default_acceleration": "3000",

View File

@@ -24,7 +24,9 @@
"internal_solid_infill_acceleration": "3000",
"inner_wall_acceleration": "2000",
"outer_wall_acceleration": "1500",
"support_top_z_distance": "0.1",
"support_base_pattern_spacing": "2",
"support_top_z_distance": "0.17",
"support_bottom_z_distance": "0.17",
"compatible_printers": [
"Prusa MINIIS 0.4 nozzle"
]

View File

@@ -24,7 +24,9 @@
"internal_solid_infill_acceleration": "3000",
"inner_wall_acceleration": "2000",
"outer_wall_acceleration": "1500",
"support_top_z_distance": "0.1",
"support_base_pattern_spacing": "2",
"support_top_z_distance": "0.17",
"support_bottom_z_distance": "0.17",
"compatible_printers": [
"Prusa MK3.5 0.4 nozzle"
]

Some files were not shown because too many files have changed in this diff Show More