├── .gitignore ├── .gitattributes ├── vendor ├── AnkerMakeCE │ ├── M5-CE-bed.stl │ ├── M5C-CE-bed.stl │ ├── M5-CE_thumbnail.png │ ├── M5C-CE_thumbnail.png │ └── M5-CE-texture.svg ├── AnkerMakeCE.idx └── AnkerMakeCE.ini ├── CODEOWNERS ├── install.ps1 ├── readme.md ├── install.sh ├── changelog.md ├── LICENSE └── AMCE_config_bundle.ini /.gitignore: -------------------------------------------------------------------------------- 1 | release/ -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | *.ps1 eol=crlf 3 | 4 | * text=auto -------------------------------------------------------------------------------- /vendor/AnkerMakeCE/M5-CE-bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/HEAD/vendor/AnkerMakeCE/M5-CE-bed.stl -------------------------------------------------------------------------------- /vendor/AnkerMakeCE/M5C-CE-bed.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/HEAD/vendor/AnkerMakeCE/M5C-CE-bed.stl -------------------------------------------------------------------------------- /vendor/AnkerMakeCE/M5-CE_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/HEAD/vendor/AnkerMakeCE/M5-CE_thumbnail.png -------------------------------------------------------------------------------- /vendor/AnkerMakeCE/M5C-CE_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/HEAD/vendor/AnkerMakeCE/M5C-CE_thumbnail.png -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # This is a comment. 2 | # Each line is a file pattern followed by one or more owners. 3 | 4 | # These owners will be the default owners for everything in 5 | # the repo. Unless a later match takes precedence, 6 | # @global-owner1 and @global-owner2 will be requested for 7 | # review when someone opens a pull request. 8 | * @just-trey 9 | -------------------------------------------------------------------------------- /vendor/AnkerMakeCE.idx: -------------------------------------------------------------------------------- 1 | min_slic3r_version = 2.6.0 2 | 2.4.1 Add AnkerMake M5C missing images 3 | 2.4.0 Add AnkerMake M5C 4 | 2.3.3 TPU Profile 5 | 2.3.2 PETG improvements 6 | min_slic3r_version = 2.6.0-alpha6 7 | 2.3.1 Add profile for import 8 | 2.3.0 Remove "Classic" Printers 9 | 2.2.0 significant parameter changes and setup options 10 | 2.1.1 fix version mismatch 11 | 2.1.0 Implement high speed 12 | 2.0.0 Initial migrated version 13 | min_slic3r_version = 2.5.0-alpha3 14 | 1.0.0 Initial Version 15 | -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- 1 | # Look for PrusaSlicer config directory 2 | $selection 3 | $availableApps = @() 4 | 5 | $compatibleApps = @( 6 | [pscustomobject]@{appName = 'PrusaSlicer'; directory = $HOME + '\AppData\Roaming\PrusaSlicer' } 7 | [pscustomobject]@{appName = 'PrusaSlicer Alpha'; directory = $HOME + '\AppData\Roaming\PrusaSlicer-alpha' } 8 | [pscustomobject]@{appName = 'PrusaSlicer Beta'; directory = $HOME + '\AppData\Roaming\PrusaSlicer-beta' } 9 | # [pscustomobject]@{appName = 'AnkerMake Alpha'; directory = $HOME + '\AppData\Roaming\AnkerMake_alpha-alpha' } 10 | ) 11 | 12 | foreach ($app in $compatibleApps) { 13 | if (Test-Path -Path $app.directory) { 14 | Write-Host 'dir: '+ $app.directory + ' app: ' + $app.appName 15 | $availableApps += $app 16 | } 17 | } 18 | 19 | # Check if any PrusaSlicer config directory exists 20 | if ($availableApps.Length -eq 0) { 21 | Write-Host "No compatible applications found." 22 | exit 1 23 | } 24 | 25 | If ($availableApps.Length -gt 1) { 26 | Write-Host "Multiple compatible applications found." 27 | Write-Host "Please choose which one you want to install the profiles to:" 28 | 29 | # Build the choices menu 30 | $choices = @() 31 | For ($index = 0; $index -lt $availableApps.Count; $index++) { 32 | Write-Host "[$index] $($availableApps[$index].appName)" 33 | # $choices += New-Object System.Management.Automation.Host.ChoiceDescription [$index], ($availablePrusaSlicerDirs[$index]) 34 | } 35 | $chosen = Read-host [Your selection] 36 | $selection = $availableApps[$chosen].directory 37 | } 38 | else { $selection = $availableApps[0].directory } 39 | 40 | Write-Host $selection 41 | 42 | $title = "Installing Profiles to $selection" 43 | $question = 'Are you sure you want to proceed?' 44 | 45 | $choices = New-Object Collections.ObjectModel.Collection[Management.Automation.Host.ChoiceDescription] 46 | $choices.Add((New-Object Management.Automation.Host.ChoiceDescription -ArgumentList '&Yes')) 47 | $choices.Add((New-Object Management.Automation.Host.ChoiceDescription -ArgumentList '&No')) 48 | 49 | $decision = $Host.UI.PromptForChoice($title, $question, $choices, 1) 50 | if ($decision -eq 0) { 51 | 52 | # Copy all folders from ./vendor to $prusaSlicerDir 53 | $srcDir = Join-Path -Path $PSScriptRoot -ChildPath 'vendor' 54 | 55 | # $destDir = Join-Path -Path $selection -ChildPath 'vendor' 56 | $destDir = $selection 57 | 58 | Write-Host "Copying $srcDir to $destDir" 59 | Copy-Item -Path $srcDir -Destination $destDir -Recurse -Force 60 | Write-Host 'Installation completed' 61 | 62 | # Set the destination directory 63 | $prusaVendorDir = Join-Path -Path $destDir -ChildPath 'vendor' 64 | Invoke-Item -Path "$prusaVendorDir" 65 | } 66 | else { 67 | Write-Host 'Installation cancelled' 68 | } 69 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # PrusaSlicer 2.7 AnkerMake Community Profiles 2 | 3 | [![GitHub release](https://img.shields.io/github/v/release/Ankermgmt/prusaslicer-ankermake-ce-profiles?display_name=tag&sort=semver&style=for-the-badge)](https://github.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/releases/latest) 4 | 5 | ![image](https://github.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/assets/10281380/77beb5cb-c6cb-4385-a266-0ff0e30ac9c2) 6 | 7 | ## Overview 8 | 9 | This repository holds the latest version and updates to AnkerMake M5 andAnkerMake M5C community profiles for the [initially developed and maintained by @just-trey](https://github.com/just-trey/ankermake-m5-profile). We have decided to continue to support these profiles to allow users an alternative to the official profiles provided by AnkerMake. You can install these profiles alongside the built-in AnkerMake profiles. Why not install both and see which one you prefer? 10 | 11 | ### "FAST" modes 12 | 13 | Please note that the FAST profile included is NOT the max acceleration and speed the printer can perform. Higher speed can be achieved by adjusting the speed and acceleration. We found the setting (thanks @Xelinor) provided to be the best compromise for quality vs. speed. 14 | 15 | ### A note about z-lift 16 | 17 | We have z-lift disabled by default as it impacts print times. If you find your nozzle scraping surfaces, plan on manual filament changes mid-print, or are using ironing, enabling z-lift is highly recommended. We recommend at least a .25 z-lift height. 18 | 19 | ## Known Issues 20 | 21 | - The speed multiplier (ex x1.8) is not correct. 22 | - Changing speeds via the touch screen or app after printing starts is not working 23 | 24 | ## Note 25 | 26 | The configuration authors strongly believe there is no "one size fits all" profile. These profiles provide an excellent base to get started, but we highly encourage users to learn and adjust their slicer settings to suit their use case. 27 | 28 | ## Installing the profile 29 | 30 | Due to recent changes in Prusa Slicer you can only import profiles. 31 | 32 | ### Importing Profiles 33 | 34 | 1. Download the [AMCE_config_bundle.ini](https://github.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/releases/latest/download/AMCE_config_bundle.ini) 35 | 1. Open Prusa Slicer, AnkerMake Studio, or Super Slicer 36 | 1. Go to File -> Import -> Import Config Bundle 37 | 2. Locate 'AMCE_config_bundle.ini' click open. 38 | 3. On the printer setting panel, select 'AnkerMake M5 (0.4 nozzle) @AMCE' or 'AnkerMake M5C (0.4 nozzle) @AMCE', then choose the filament and Print settings you would like to use. 39 | 40 | ## How to print via wifi after slicing 41 | 42 | Printing files via wifi is supported but not directly from PrusaSlicer. You may print via wifi using the AnkerMake Studio. 43 | 44 | ## Licences 45 | 46 | - Prusa profiles are under-released under the [GNU AFFERO GENERAL PUBLIC LICENSE](LICENSE). 47 | 48 | ## Changelog 49 | 50 | [View Changelog](/changelog.md) 51 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Function to check for macOS PrusaSlicer directories 4 | mac_directories() { 5 | if [ -d "$HOME/Library/Application Support/PrusaSlicer" ]; then 6 | echo "$HOME/Library/Application Support/PrusaSlicer" 7 | fi 8 | if [ -d "$HOME/Library/Application Support/PrusaSlicer-alpha" ]; then 9 | echo "$HOME/Library/Application Support/PrusaSlicer-alpha" 10 | fi 11 | if [ -d "$HOME/Library/Application Support/PrusaSlicer-beta" ]; then 12 | echo "$HOME/Library/Application Support/PrusaSlicer-beta" 13 | fi 14 | printf '%s\n' "${directories[@]}" 15 | } 16 | 17 | # Function to check for Linux PrusaSlicer directories 18 | linux_directories() { 19 | if [ -d "$HOME/.PrusaSlicer" ]; then 20 | echo "$HOME/.PrusaSlicer" 21 | fi 22 | if [ -d "$HOME/.config/PrusaSlicer" ]; then 23 | echo "$HOME/.config/PrusaSlicer" 24 | fi 25 | if [ -d "$HOME/.config/PrusaSlicer-alpha" ]; then 26 | echo "$HOME/.config/PrusaSlicer-alpha" 27 | fi 28 | if [ -d "$HOME/.config/PrusaSlicer-beta" ]; then 29 | echo "$HOME/.config/PrusaSlicer-beta" 30 | fi 31 | } 32 | 33 | # Detect the operating system and get the directories 34 | IFS=$'\n' 35 | directories=() 36 | if [[ "$OSTYPE" == "linux-gnu"* ]]; then 37 | directories=($(linux_directories)) 38 | elif [[ "$OSTYPE" == "darwin"* ]]; then 39 | directories=($(mac_directories)) 40 | else 41 | echo "Unsupported operating system." 42 | exit 1 43 | fi 44 | IFS=' \t\n' 45 | 46 | # Check the number of directories found 47 | count=${#directories[@]} 48 | if [ "$count" -eq 0 ]; then 49 | echo "PrusaSlicer directories not found." 50 | exit 1 51 | elif [ "$count" -eq 1 ]; then 52 | chosen_dir="${directories[0]}" 53 | else 54 | echo "Multiple PrusaSlicer directories found." 55 | echo "Please choose which one you want to use:" 56 | select slicer_dir in "${directories[@]}"; do 57 | chosen_dir="$slicer_dir" 58 | break 59 | done 60 | fi 61 | 62 | echo "You chose: $chosen_dir" 63 | 64 | # Destination directory 65 | dest_dir="$chosen_dir/vendor" 66 | 67 | # Files to copy 68 | files=("AnkerMakeCE" "AnkerMakeCE.idx" "AnkerMakeCE.ini") 69 | 70 | # Check if destination directory or files exist 71 | overwrite=false 72 | if [ -d "$dest_dir/${files[0]}" ] || [ -f "$dest_dir/${files[1]}" ] || [ -f "$dest_dir/${files[2]}" ]; then 73 | echo "Destination directory or files already exist:" 74 | [ -d "$dest_dir/${files[0]}" ] && echo " - $dest_dir/${files[0]} (directory)" 75 | [ -f "$dest_dir/${files[1]}" ] && echo " - $dest_dir/${files[1]} (file)" 76 | [ -f "$dest_dir/${files[2]}" ] && echo " - $dest_dir/${files[2]} (file)" 77 | read -p "Do you want to overwrite them? (y/n): " choice 78 | case "$choice" in 79 | y|Y) 80 | overwrite=true 81 | ;; 82 | n|N) 83 | echo "Skipping file copying." 84 | ;; 85 | *) 86 | echo "Invalid choice. Skipping file copying." 87 | ;; 88 | esac 89 | else 90 | overwrite=true 91 | fi 92 | if [ "$overwrite" = true ]; then 93 | # Create the destination directory if it doesn't exist 94 | if [ ! -d "$dest_dir" ]; then 95 | mkdir -p "$dest_dir" 96 | fi 97 | 98 | # Open the destination directory in the platform default file manager 99 | if [[ "$OSTYPE" == "darwin"* ]]; then 100 | open "$dest_dir" || true 101 | fi 102 | if [[ "$OSTYPE" == "linux-gnu"* ]]; then 103 | xdg-open "$dest_dir" || true 104 | fi 105 | 106 | script_dir=$(dirname "$0") 107 | 108 | # Copy the directory and files recursively 109 | cp -R "$script_dir/vendor/${files[0]}" "$dest_dir" 110 | cp "$script_dir/vendor/${files[1]}" "$dest_dir" 111 | cp "$script_dir/vendor/${files[2]}" "$dest_dir" 112 | 113 | echo "Files and directory copied successfully." 114 | fi 115 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## v2.4.2 4 | 5 | - Set first layer speeds to 50 rther then 50% as requested by @HansAndreManfredson 6 | - Changed M84 to M18 as suggested by @TheMasterOfTech 7 | - Went with fixed value (150 degrees) in start gcode to preven ooze on warmup 8 | 9 | ## v2.4.1 10 | 11 | - Add missing M5C images 12 | 13 | ## v2.4.0 14 | 15 | - Added AnkerMake M5C printer 16 | - Changed default PLA Color to yellow so it does not conflict with the selected object color (Green) 17 | - Merged PLA and PLA+ profiles as they were redundant 18 | 19 | ## v2.3.3 20 | 21 | - Added New Profile for TPU (by @natescherer) 22 | - switched primary branch from "master" to "main" 23 | 24 | ## v2.3.2 25 | 26 | - Improved PETG settings (by @Xelinor) 27 | - Added Lukagra's filament change gcode (better than just M600) 28 | - Slightly modified extrusion widths 29 | - Removed extruder default color so chosen filament color is used in the preview thumbnail 30 | - Removed duplicate filaments in the config bundle version 31 | 32 | ## v2.3.1 33 | 34 | - fixed pattern match so fast profiles are available 35 | - Added config bundle to allow import to AnkerMake Alpha Slicer 36 | - Removed build workflow is it was not working 37 | - fixed minor issue with brim settings behavior 38 | 39 | ## v2.3.0 40 | 41 | - Removed classic mode printer and tuned profiles to match performance 42 | - Added ooze reduction temps to start g-code (inspired by the Technical Ace's profiles) 43 | - Removed any settings that matched PrusaSlicer's default or have been deprecated to simplify configuration 44 | - Removed overhang speed reduction in fast mode. 45 | - Set organic supports as the default. support method 46 | - Tuning adjustments: 47 | - Enabled external_perimeters_first on fast mode for a SIGNIFICANT increase in surface quality 48 | - Modified gcode_resolution for finer slicing details 49 | - Modified the following to improve speeds 50 | - max_print_speed 51 | - solid_infill_speed 52 | - travel_acceleration 53 | - Modified the following to get smoother perimeters: 54 | - perimeter_acceleration 55 | - small_perimeter_speed 56 | - Modified skirt_distance to bring it slightly closer to print 57 | - first_layer_height now matches other layer heights 58 | - slight adjustments to better tune filaments 59 | - cleaned up windows install script 60 | 61 | ## v2.2.0 62 | 63 | - Time estimates are much more accurate than previous versions 64 | - Added scripted install (thank you, @spuder) 65 | - Renamed old printer setup to "CLASSIC" and removed FAST from printer options [more details are available in the readme.md](/readme.md#220-update-notice) 66 | - Allow higher quality profiles to be used in "FAST MODE." 67 | - Removed many unneeded settings that made no real difference 68 | - Tuned bridges (may still need some optimization) 69 | - Modified accelerations where they did not match firmware or provide better print quality. 70 | - Tuned printing speeds 71 | - Made default profiles have 3 perimeters 72 | - Fixed PETG temp bug 73 | 74 | ## v2.1.1 75 | 76 | - No changes to settings, fixing a version mismatch to avoid confusion. 77 | - removed version number from published zip file. 78 | 79 | ## v2.1.0 80 | 81 | - This version enables a fast mode consistently. See the [readme.md](https://github.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/blob/main/readme.md) for more details. 82 | - New community edition M5 icon for the configuration wizard 83 | - Optimized bottom and top surface patterns for regular profiles. (monotonic lines) 84 | - Tuned some speed settings and moved to percentages where possible. 85 | - Increased default fill density by 5% and reduced default perimeter to 2. 86 | - Increased infill overlap to close up some holes on surfaces 87 | - Minor adjuments to volumetric configurations to improve print quality and speeds 88 | - Implemented minimum print layer time on regular speed prints to increase quality. 89 | 90 | ## v2.0.0-beta-1 91 | 92 | - This is a rewrite of the entire configuration to leverage the new speed setting provided by AnkerMake. Additional changes have been made that are not listed. For a full diff of the main configuration, please look here: 93 | - Moved to Ankermgmt organization (NOT AFFILIATED WITH ANKER) 94 | - Moved Cura and PrusaSlicer configurations into separate repositories 95 | - **NOTE:** Moving forward, this repository will contain PrusaSlicer Configurations only 96 | - Moved the majority of configurations to an AnkerMake CE base profile. 97 | - Moved the remaining configurations to an AnkerMake CE M5 profile. 98 | - Added CE (Community Edition) to allow the profile to be installed separately from the built-in AnkerMake profile. 99 | - Modified layer heights to be .5 in difference (0.5, 1.0, 1.5, 2.0, 2.5, 3.0) 100 | - added three new SPEED profiles (1.5, 2.0, 2.5) 101 | - Complete rework of speeds for all profiles 102 | - update gcode flavor to marlin 2 to improve time estimates. (special thanks to discord member @dmbaio) 103 | - modified extrusion widths to be similar to other profiles 104 | - added max_volumetric_speed to base profile and also max_volumetric_speeds to filament types 105 | - enabled new overhang speeds 106 | - changed top layer infill to new "monotonic lines" option 107 | - added ironing settings provided by @TheMasterOfTech 108 | 109 | ## 1.10 110 | 111 | - Cura Profile Changes 112 | - Apply transparency to the bed plate to be able to work underneath 113 | - Add M420 S1 to start gcode for bed leveling (via contribution from @imadcat) 114 | - Fixed start gcode typo (via contribution from @JaredTamana) 115 | - Prusa Slicer Profile Changes 116 | - Apply transparency to bed plate to be able to work underneath 117 | - Add M420 S1 to start gcode for bed leveling (via contribution from @imadcat) 118 | - Fixed start gcode typo (via contribution from @JaredTamana) 119 | - Update file name format and remove commas to prevent export name issues on Mac 120 | - Other changes 121 | - Renamed primary branch to Main 122 | 123 | ## 1.9 124 | 125 | - Cura Profile Changes 126 | - Reset xy_offset_layer_0 to default to fix issue when using a brim 127 | - Added max acceleration speed logic 128 | - Prusa Slicer Profile Changes 129 | - Add a 0.6 nozzle profile 130 | - Other changes 131 | - Fix typo in Cura readme.md 132 | 133 | ## 1.8 - 12/7/2022 134 | 135 | - Cura Profile Changes 136 | - none 137 | - Prusa Slicer Profile Changes 138 | - Disabled "Thick bridges" to improve the quality on shorter bridges 139 | - Other changes 140 | - Migration from Google doc to GitHub repo for Prusa Slicer documentation and simplified install instructions and fixed nested directories in zip 141 | - Added required licenses 142 | - Added Repo Base Readme to point to both profile instructions 143 | - moved the changelog to its dedicated file 144 | - merged Prusa Slicer and Cura changelogs into one for ease of tracking 145 | 146 | ## 1.7 - 12/4/2022 147 | 148 | - Cura Profile Changes 149 | - Significant quality updates based on feedback from @Tenson_UK 150 | - For the normal profile, set the first layer height to match the rest of the print. (0.2) 151 | - Set "Initial Layer Horizontal Expansion" and "Hole Horizontal Expansion" to improve quality 152 | - Set "Top/Bottom Thickness" to improve quality 153 | - Changed infill logic to increase infill speeds. 154 | - NOTE: Part strength is slightly weaker, so adjust as needed. 155 | - Changed print temperature logic for more consistency 156 | - Changed "Top/Bottom Flow" and "Initial Layer Flow" to improve print quality 157 | - Set "Combing Mode" to "Within Infill" to reduce the number of retractions. 158 | - Complete rework of support settings that provides easy removal and good part support. 159 | - NOTE: Tree supports have no optimization at this time. 160 | - Adjusted the following experimental settings to improve print quality. 161 | - "Overhanging Wall Angle" 162 | - "Overhanging Wall Speed 163 | - "Small Hole Max Size" 164 | - "Small Feature Initial Layer Speed" 165 | - Regrouping/ordering of overrides to match base setting order 166 | - Prusa Slicer Profile Changes 167 | - none 168 | 169 | ## 1.6 - 12/4/2022 170 | 171 | - Cura Profile Changes 172 | - set retraciton speed to 60 to match AnkerMake defaults 173 | - Prusa Slicer Profile Changes 174 | - none 175 | 176 | ## 1.5 - 12/1/2022 177 | 178 | - Cura Profile Changes 179 | - add back in "extruder_nr": { "default_value": 0 }, to pass unit test and fix bug. 180 | - fix typos in readme.md 181 | - Prusa Slicer Profile Changes 182 | - none 183 | 184 | ## 1.4 - 12/1/2022 185 | 186 | - Cura Profile Changes 187 | - Complete refactor based on feedback from the Cura team to simplify the profile 188 | - Updated to follow new linting rules and suggestions 189 | - Significant reduction of base configuration overrides 190 | - Tested to ensure high-speed printing is functioning 191 | - Updated printing temperature logic to work correctly. 192 | - Added slight extrusion to start gcode to compensate for over-retraction after prime 193 | - Clarified instructions to locate folders 194 | - Migrated instructions From Google Docs to GitHub 195 | - Reversed the order of the changelog to show the newest first 196 | - Prusa Slicer Profile Changes 197 | - none 198 | 199 | ## 1.3 - 11/16/2022 200 | 201 | - Cura Profile Changes 202 | - Added “machine_head_with_fans_polygon” for one-at-a-time printing 203 | - Renamed image and platform object to match with GitHub submission. () 204 | - Slight modification to the file structure 205 | - Updated directions. 206 | - Prusa Slicer Profile Changes 207 | - none 208 | 209 | ## 1.2 - 10/22/2022 210 | 211 | - Cura Profile Changes 212 | - Fixed retraction amount defaults. 213 | - Adjusted acceleration to AnkerMake recommended settings. 214 | - Completely rebuilt settings from Anker profiles, so the values are consistent. 215 | - Update start and end gcode to Anker defaults 216 | - Added custom bed png image 217 | - Added more detailed settings provided by others 218 | - Prusa Slicer Profile Changes 219 | - Set default filament to PLA+ 220 | - Enabled detect bridging perimeters 221 | - Increase skirt count from 1-3 222 | - Disabled filament override for max volumetric speed. 223 | - Change fan to be disabled from 1 to 2 layers 224 | - Turned off enabled auto cooling to prevent speed reduction 225 | - Adjusted first_layer_temperature for all filaments to match Anker slicer 226 | - Adjusted bed temperatures for ABS 227 | - Fix PLA+ inheriting values from PLA 228 | 229 | ## 1.1 - Bug Fixes 230 | 231 | ## 1.0 - Initial Release 232 | -------------------------------------------------------------------------------- /vendor/AnkerMakeCE.ini: -------------------------------------------------------------------------------- 1 | # Community created printer profiles for AnkerMake printers. 2 | 3 | [vendor] 4 | # Vendor name will be shown by the Config Wizard. 5 | name = AnkerMake CE 6 | # Configuration version of this file. Config file will only be installed, if the config_version differs. 7 | # This means, the server may force the PrusaSlicer configuration to be downgraded. 8 | config_version = 2.4.2 9 | # Where to get the updates from? 10 | # config_update_url = https://github.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/releases/latest 11 | # changelog_url = https://github.com/Ankermgmt/prusaslicer-ankermake-ce-profiles/blob/main/changelog.md 12 | 13 | # The printer models will be shown by the Configuration Wizard in this order, 14 | # also the first model installed & the first nozzle installed will be activated after install. 15 | # Printer model name will be shown by the installation wizard. 16 | 17 | [printer_model:M5-CE] 18 | name = AnkerMake M5 CE 19 | variants = 0.4 20 | technology = FFF 21 | family = AnkerMake CE 22 | bed_model = M5-CE-bed.stl 23 | bed_texture = M5-CE-texture.svg 24 | thumbnail = M5-CE_thumbnail.png 25 | default_materials = Generic PLA+ @ANKER; Generic PLA @ANKER; Generic PET @ANKER; Generic ABS @ANKER; Generic TPU 95A @ANKER-CE; 26 | 27 | [printer_model:M5C-CE] 28 | name = AnkerMake M5C CE 29 | variants = 0.4 30 | technology = FFF 31 | family = AnkerMake CE 32 | bed_model = M5C-CE-bed.stl 33 | bed_texture = M5-CE-texture.svg 34 | thumbnail = M5C-CE_thumbnail.png 35 | default_materials = Generic PLA+ @ANKER; Generic PLA @ANKER; Generic PET @ANKER; Generic ABS @ANKER; Generic TPU 95A @ANKER-CE; 36 | 37 | # All presets starting with asterisk, for example *common*, are intermediate and they will 38 | # not make it into the user interface. 39 | 40 | # Common print preset 41 | [print:*common*] 42 | bottom_fill_pattern = monotonic 43 | bottom_solid_min_thickness = 0.50 44 | bridge_acceleration = 500 45 | bridge_flow_ratio = 0.95 46 | bridge_speed = 110 47 | brim_separation = 0.10 48 | default_acceleration = 2500 49 | elefant_foot_compensation = 0.2 50 | enable_dynamic_overhang_speeds = 1 51 | external_perimeter_extrusion_width = 0.42 52 | extruder_clearance_height = 30 53 | extruder_clearance_radius = 45 54 | extrusion_width = 0.45 55 | fill_density = 15% 56 | fill_pattern = cubic 57 | first_layer_acceleration = 2500 58 | first_layer_acceleration_over_raft = 500 59 | first_layer_extrusion_width = 0.45 60 | first_layer_height = 0.20 61 | # AnkerSlicer default setting for first_layer_speed is 50 mm/s -> first lay with a higher speed won't be successful 62 | first_layer_speed = 50 63 | first_layer_speed_over_raft = 50 64 | gap_fill_speed = 150 65 | gcode_resolution = 0.008 66 | infill_acceleration = 2500 67 | infill_extrusion_width = 0.48 68 | infill_overlap = 23% 69 | infill_speed = 250 70 | max_print_speed = 300 71 | min_skirt_length = 4 72 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 73 | perimeter_acceleration = 500 74 | perimeter_extrusion_width = 0.45 75 | perimeter_speed = 250 76 | raft_contact_distance = 0.20 77 | raft_first_layer_density = 80% 78 | single_extruder_multi_material_priming = 0 79 | skirt_distance = 3 80 | skirts = 2 81 | small_perimeter_speed = 40% 82 | solid_infill_below_area = 0 83 | solid_infill_extrusion_width = 0.45 84 | solid_infill_speed = 80% 85 | support_material_extrusion_width = 0.36 86 | support_material_interface_layers = 2 87 | support_material_interface_spacing = 0.2 88 | support_material_interface_speed = 100% 89 | support_material_speed = 125 90 | support_material_style = organic 91 | support_material_threshold = 40 92 | support_material_with_sheath = 0 93 | support_material_xy_spacing = 65% 94 | support_tree_angle = 30 95 | support_tree_angle_slow = 10 96 | support_tree_branch_diameter = 3 97 | support_tree_top_rate = 45% 98 | thick_bridges = 0 99 | thin_walls = 0 100 | top_fill_pattern = monotoniclines 101 | top_infill_extrusion_width = 0.40 102 | top_solid_infill_acceleration = 2500 103 | top_solid_infill_speed = 60% 104 | top_solid_min_thickness = 0.70 105 | travel_acceleration = 2500 106 | travel_speed = 300 107 | travel_speed_z = 50 108 | 109 | [print:*0.05mm*] 110 | inherits = *common* 111 | bottom_solid_layers = 10 112 | bridge_flow_ratio = 0.70 113 | first_layer_height = 0.05 114 | layer_height = 0.05 115 | raft_contact_distance = 0.05 116 | support_material_contact_distance = 0.05 117 | support_material_spacing = 1.50 118 | top_solid_layers = 14 119 | 120 | [print:*0.10mm*] 121 | inherits = *common* 122 | bottom_solid_layers = 7 123 | bridge_flow_ratio = 0.70 124 | first_layer_height = 0.10 125 | layer_height = 0.10 126 | raft_contact_distance = 0.10 127 | top_solid_layers = 9 128 | support_material_contact_distance = 0.10 129 | 130 | [print:*0.15mm*] 131 | inherits = *common* 132 | bottom_solid_layers = 5 133 | bridge_flow_ratio = 0.85 134 | first_layer_height = 0.15 135 | layer_height = 0.15 136 | raft_contact_distance = 0.15 137 | top_solid_layers = 6 138 | support_material_contact_distance = 0.15 139 | 140 | [print:*0.20mm*] 141 | inherits = *common* 142 | bottom_solid_layers = 4 143 | first_layer_height = 0.20 144 | layer_height = 0.20 145 | raft_contact_distance = 0.20 146 | top_solid_layers = 5 147 | support_material_contact_distance = 0.20 148 | 149 | [print:*0.25mm*] 150 | inherits = *common* 151 | bottom_solid_layers = 3 152 | first_layer_height = 0.25 153 | layer_height = 0.25 154 | raft_contact_distance = 0.25 155 | top_solid_layers = 3 156 | support_material_contact_distance = 0.25 157 | 158 | [print:*0.30mm*] 159 | inherits = *common* 160 | bottom_solid_layers = 2 161 | first_layer_height = 0.30 162 | layer_height = 0.30 163 | raft_contact_distance = 0.30 164 | top_solid_layers = 3 165 | support_material_contact_distance = 0.30 166 | 167 | [print:*fast*] 168 | bottom_fill_pattern = rectilinear 169 | bottom_solid_min_thickness = 0 170 | bridge_acceleration = 1500 171 | bridge_speed = 200 172 | default_acceleration = 6000 173 | enable_dynamic_overhang_speeds = 0 174 | external_perimeter_acceleration = 3000 175 | external_perimeters_first = 1 176 | fill_density = 10% 177 | fill_pattern = supportcubic 178 | first_layer_acceleration = 2500 179 | first_layer_acceleration_over_raft = 2500 180 | gap_fill_speed = 300 181 | infill_acceleration = 6000 182 | infill_speed = 600 183 | max_print_speed = 600 184 | perimeter_acceleration = 6000 185 | perimeter_speed = 600 186 | solid_infill_acceleration = 6000 187 | support_material_speed = 360 188 | top_fill_pattern = rectilinear 189 | top_solid_infill_acceleration = 2500 190 | top_solid_min_thickness = 0 191 | travel_acceleration = 6000 192 | travel_speed = 500 193 | 194 | [print:0.05mm ULTRADETAIL @ANKER-CE] 195 | inherits = *0.05mm* 196 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 197 | 198 | [print:0.10mm DETAIL @ANKER-CE] 199 | inherits = *0.10mm* 200 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 201 | 202 | [print:0.15mm OPTIMAL @ANKER-CE] 203 | inherits = *0.15mm* 204 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 205 | 206 | [print:0.20mm NORMAL @ANKER-CE] 207 | inherits = *0.20mm* 208 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 209 | 210 | [print:0.25mm DRAFT @ANKER-CE] 211 | inherits = *0.25mm*; 212 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 213 | 214 | [print:0.30mm SUPERDRAFT @ANKER-CE] 215 | inherits = *0.30mm* 216 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 217 | 218 | [print:0.15mm FAST @ANKER-CE] 219 | inherits = *0.15mm*; *fast* 220 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 221 | top_solid_layers = 5 222 | 223 | [print:0.20mm FAST @ANKER-CE] 224 | inherits = *0.20mm*; *fast* 225 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 226 | top_solid_layers = 4 227 | 228 | [print:0.25mm FAST @ANKER-CE] 229 | inherits = *0.25mm*; *fast* 230 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 231 | top_solid_layers = 3 232 | 233 | # When submitting new filaments please print the following temperature tower at 0.1mm layer height: 234 | # https://www.thingiverse.com/thing:2615842 235 | # Pay particular attention to bridging, overhangs and retractions. 236 | # Also print the following bed adhesion test at 0.1 layer height as well: 237 | # https://www.prusaprinters.org/prints/4634-bed-adhesion-warp-test 238 | # At least for PLA, please keep bed temp at 60, as many Creality printers do not have any ABL 239 | # So having some leeway to get good bed adhesion is not a luxury for many users 240 | 241 | [filament:*common*] 242 | cooling = 0 243 | disable_fan_first_layers = 1 244 | fan_always_on = 1 245 | 246 | [filament:*PLA*] 247 | inherits = *common* 248 | bed_temperature = 60 249 | bridge_fan_speed = 100 250 | extrusion_multiplier = 0.97 251 | filament_colour = #f2e34c 252 | filament_density = 1.24 253 | filament_max_volumetric_speed = 15 254 | filament_type = PLA 255 | first_layer_bed_temperature = 60 256 | first_layer_temperature = 215 257 | max_fan_speed = 100 258 | min_fan_speed = 100 259 | temperature = 215 260 | 261 | [filament:*PET*] 262 | inherits = *common* 263 | bed_temperature = 80 264 | bridge_fan_speed = 50 265 | extrusion_multiplier = 0.97 266 | disable_fan_first_layers = 3 267 | full_fan_speed_layer = 3 268 | filament_colour = #51a8f5 269 | filament_density = 1.27 270 | filament_max_volumetric_speed = 8 271 | filament_type = PETG 272 | first_layer_bed_temperature = 80 273 | first_layer_temperature = 240 274 | max_fan_speed = 50 275 | min_fan_speed = 30 276 | temperature = 240 277 | 278 | [filament:*ABS*] 279 | inherits = *common* 280 | bed_temperature = 90 281 | bridge_fan_speed = 25 282 | extrusion_multiplier = 0.97 283 | disable_fan_first_layers = 3 284 | filament_colour = #ed2f21 285 | filament_density = 1.04 286 | filament_max_volumetric_speed = 11 287 | filament_type = ABS 288 | first_layer_bed_temperature = 90 289 | first_layer_temperature = 240 290 | max_fan_speed = 30 291 | min_fan_speed = 20 292 | temperature = 240 293 | 294 | [filament:*TPU*] 295 | inherits = *common* 296 | bed_temperature = 30 297 | bridge_fan_speed = 50 298 | extrusion_multiplier = 1.03 299 | disable_fan_first_layers = 3 300 | full_fan_speed_layer = 3 301 | filament_colour = #8000FF 302 | filament_density = 1.24 303 | filament_max_volumetric_speed = 1.8 304 | filament_type = TPU 305 | first_layer_bed_temperature = 30 306 | first_layer_temperature = 225 307 | max_fan_speed = 80 308 | min_fan_speed = 30 309 | temperature = 225 310 | 311 | [filament:Generic PLA/PLA+ @ANKER-CE] 312 | inherits = *PLA* 313 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 314 | filament_vendor = Generic 315 | 316 | [filament:Generic PETG @ANKER-CE] 317 | inherits = *PET* 318 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 319 | filament_vendor = Generic 320 | filament_retract_length = 2.5 321 | filament_retract_speed = 20 322 | filament_deretract_speed = 60 323 | filament_retract_layer_change = 1 324 | filament_wipe = 1 325 | filament_retract_before_wipe = 100 326 | 327 | [filament:Generic ABS @ANKER-CE] 328 | inherits = *ABS* 329 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 330 | filament_vendor = Generic 331 | 332 | [filament:Generic TPU 95A @ANKER-CE] 333 | inherits = *TPU* 334 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 335 | filament_vendor = Generic 336 | filament_retract_length = 3.5 337 | filament_retract_speed = 90 338 | filament_deretract_speed = 50 339 | filament_retract_layer_change = 1 340 | filament_wipe = 1 341 | filament_retract_before_wipe = 100% 342 | 343 | # Common printer preset 344 | [printer:*common*] 345 | color_change_gcode = ;COLOR CHANGE (by Lukagra)\nG91\nG1 Z10 F600\nG90\nM600\nG91\nG1 E-3 F1200\nG1 Z-10 F600\nG90 346 | end_gcode = M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM18 347 | extruder_colour = "" 348 | gcode_flavor = marlin2 349 | machine_max_acceleration_e = 4000 350 | machine_max_acceleration_extruding = 6000 351 | machine_max_acceleration_retracting = 6000 352 | machine_max_acceleration_travel = 6000 353 | machine_max_acceleration_x = 6000 354 | machine_max_acceleration_y = 6000 355 | machine_max_acceleration_z = 100 356 | machine_max_feedrate_e = 50 357 | machine_max_feedrate_x = 600 358 | machine_max_feedrate_y = 600 359 | machine_max_feedrate_z = 80 360 | machine_max_jerk_e = 3 361 | machine_max_jerk_x = 8 362 | machine_max_jerk_y = 8 363 | machine_max_jerk_z = 0.3 364 | machine_min_extruding_rate = 0 365 | machine_min_travel_rate = 0 366 | max_layer_height = 0.32 367 | max_print_height = 250 368 | min_layer_height = 0.05 369 | retract_before_travel = 3 370 | retract_length = 1.5 371 | retract_speed = 60 372 | silent_mode = 0 373 | start_gcode = M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 S150 ; Set hotend temp to 150 degrees to prevent ooze\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home 374 | thumbnails = 128x128 375 | 376 | [printer:AnkerMake-CE M5 (0.4mm nozzle)] 377 | inherits = *common*; 378 | bed_shape = 0x0,235x0,235x235,0x235 379 | nozzle_diameter = 0.4 380 | printer_model = M5-CE 381 | printer_variant = 0.4 382 | 383 | [printer:AnkerMake-CE M5C (0.4mm nozzle)] 384 | inherits = *common*; 385 | bed_shape = 0x0,220x0,220x220,0x220 386 | nozzle_diameter = 0.4 387 | printer_model = M5C-CE 388 | printer_variant = 0.4 389 | retract_length = 0.8 390 | -------------------------------------------------------------------------------- /vendor/AnkerMakeCE/M5-CE-texture.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /AMCE_config_bundle.ini: -------------------------------------------------------------------------------- 1 | # Community created printer profiles for AnkerMake printers. 2 | # v2.4.2 3 | 4 | [print:0.05mm ULTRADETAIL @AMCE] 5 | avoid_crossing_curled_overhangs = 0 6 | avoid_crossing_perimeters = 0 7 | avoid_crossing_perimeters_max_detour = 0 8 | bottom_fill_pattern = monotonic 9 | bottom_solid_layers = 10 10 | bottom_solid_min_thickness = 0.5 11 | bridge_acceleration = 500 12 | bridge_angle = 0 13 | bridge_flow_ratio = 0.7 14 | bridge_speed = 110 15 | brim_separation = 0.1 16 | brim_type = outer_only 17 | brim_width = 0 18 | compatible_printers = 19 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 20 | complete_objects = 0 21 | default_acceleration = 2500 22 | dont_support_bridges = 1 23 | draft_shield = disabled 24 | elefant_foot_compensation = 0.2 25 | enable_dynamic_overhang_speeds = 1 26 | external_perimeter_acceleration = 0 27 | external_perimeter_extrusion_width = 0.42 28 | external_perimeter_speed = 50% 29 | external_perimeters_first = 0 30 | extra_perimeters = 1 31 | extra_perimeters_on_overhangs = 0 32 | extruder_clearance_height = 30 33 | extruder_clearance_radius = 45 34 | extrusion_width = 0.45 35 | fill_angle = 45 36 | fill_density = 15% 37 | fill_pattern = cubic 38 | first_layer_acceleration = 2500 39 | first_layer_acceleration_over_raft = 500 40 | first_layer_extrusion_width = 0.45 41 | first_layer_height = 0.05 42 | first_layer_speed = 50 43 | first_layer_speed_over_raft = 50 44 | fuzzy_skin = none 45 | fuzzy_skin_point_dist = 0.8 46 | fuzzy_skin_thickness = 0.3 47 | gap_fill_enabled = 1 48 | gap_fill_speed = 150 49 | gcode_comments = 0 50 | gcode_label_objects = 0 51 | gcode_resolution = 0.008 52 | gcode_substitutions = 53 | infill_acceleration = 2500 54 | infill_anchor = 600% 55 | infill_anchor_max = 50 56 | infill_every_layers = 1 57 | infill_extruder = 1 58 | infill_extrusion_width = 0.48 59 | infill_first = 0 60 | infill_overlap = 23% 61 | infill_speed = 250 62 | interface_shells = 0 63 | ironing = 0 64 | ironing_flowrate = 15% 65 | ironing_spacing = 0.1 66 | ironing_speed = 15 67 | ironing_type = top 68 | layer_height = 0.05 69 | max_print_speed = 300 70 | max_volumetric_extrusion_rate_slope_negative = 0 71 | max_volumetric_extrusion_rate_slope_positive = 0 72 | max_volumetric_speed = 0 73 | min_bead_width = 85% 74 | min_feature_size = 25% 75 | min_skirt_length = 4 76 | mmu_segmented_region_max_width = 0 77 | notes = 78 | only_retract_when_crossing_perimeters = 0 79 | ooze_prevention = 0 80 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 81 | overhang_speed_0 = 15 82 | overhang_speed_1 = 15 83 | overhang_speed_2 = 20 84 | overhang_speed_3 = 25 85 | overhangs = 1 86 | perimeter_acceleration = 500 87 | perimeter_extruder = 1 88 | perimeter_extrusion_width = 0.45 89 | perimeter_generator = arachne 90 | perimeter_speed = 250 91 | perimeters = 3 92 | post_process = 93 | print_settings_id = 94 | raft_contact_distance = 0.05 95 | raft_expansion = 1.5 96 | raft_first_layer_density = 80% 97 | raft_first_layer_expansion = 3 98 | raft_layers = 0 99 | resolution = 0 100 | seam_position = aligned 101 | single_extruder_multi_material_priming = 0 102 | skirt_distance = 3 103 | skirt_height = 1 104 | skirts = 2 105 | slice_closing_radius = 0.049 106 | slicing_mode = regular 107 | small_perimeter_speed = 40% 108 | solid_infill_acceleration = 0 109 | solid_infill_below_area = 0 110 | solid_infill_every_layers = 0 111 | solid_infill_extruder = 1 112 | solid_infill_extrusion_width = 0.45 113 | solid_infill_speed = 80% 114 | spiral_vase = 0 115 | staggered_inner_seams = 0 116 | standby_temperature_delta = -5 117 | support_material = 0 118 | support_material_angle = 0 119 | support_material_auto = 1 120 | support_material_bottom_contact_distance = 0 121 | support_material_bottom_interface_layers = -1 122 | support_material_buildplate_only = 0 123 | support_material_closing_radius = 2 124 | support_material_contact_distance = 0.05 125 | support_material_enforce_layers = 0 126 | support_material_extruder = 1 127 | support_material_extrusion_width = 0.36 128 | support_material_interface_contact_loops = 0 129 | support_material_interface_extruder = 1 130 | support_material_interface_layers = 2 131 | support_material_interface_pattern = rectilinear 132 | support_material_interface_spacing = 0.2 133 | support_material_interface_speed = 100% 134 | support_material_pattern = rectilinear 135 | support_material_spacing = 1.5 136 | support_material_speed = 125 137 | support_material_style = organic 138 | support_material_synchronize_layers = 0 139 | support_material_threshold = 40 140 | support_material_with_sheath = 0 141 | support_material_xy_spacing = 65% 142 | support_tree_angle = 30 143 | support_tree_angle_slow = 10 144 | support_tree_branch_diameter = 3 145 | support_tree_branch_diameter_angle = 5 146 | support_tree_branch_diameter_double_wall = 3 147 | support_tree_branch_distance = 1 148 | support_tree_tip_diameter = 0.8 149 | support_tree_top_rate = 45% 150 | thick_bridges = 0 151 | thin_walls = 0 152 | threads = 16 153 | top_fill_pattern = monotoniclines 154 | top_infill_extrusion_width = 0.4 155 | top_solid_infill_acceleration = 2500 156 | top_solid_infill_speed = 60% 157 | top_solid_layers = 14 158 | top_solid_min_thickness = 0.7 159 | travel_acceleration = 2500 160 | travel_speed = 300 161 | travel_speed_z = 50 162 | wall_distribution_count = 1 163 | wall_transition_angle = 10 164 | wall_transition_filter_deviation = 25% 165 | wall_transition_length = 100% 166 | wipe_tower = 0 167 | wipe_tower_bridging = 10 168 | wipe_tower_brim_width = 2 169 | wipe_tower_cone_angle = 0 170 | wipe_tower_extra_spacing = 100% 171 | wipe_tower_extruder = 0 172 | wipe_tower_no_sparse_layers = 0 173 | wipe_tower_rotation_angle = 0 174 | wipe_tower_width = 60 175 | wipe_tower_x = 180 176 | wipe_tower_y = 140 177 | xy_size_compensation = 0 178 | 179 | [print:0.10mm DETAIL @AMCE] 180 | avoid_crossing_curled_overhangs = 0 181 | avoid_crossing_perimeters = 0 182 | avoid_crossing_perimeters_max_detour = 0 183 | bottom_fill_pattern = monotonic 184 | bottom_solid_layers = 7 185 | bottom_solid_min_thickness = 0.5 186 | bridge_acceleration = 500 187 | bridge_angle = 0 188 | bridge_flow_ratio = 0.7 189 | bridge_speed = 110 190 | brim_separation = 0.1 191 | brim_type = outer_only 192 | brim_width = 0 193 | compatible_printers = 194 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 195 | complete_objects = 0 196 | default_acceleration = 2500 197 | dont_support_bridges = 1 198 | draft_shield = disabled 199 | elefant_foot_compensation = 0.2 200 | enable_dynamic_overhang_speeds = 1 201 | external_perimeter_acceleration = 0 202 | external_perimeter_extrusion_width = 0.42 203 | external_perimeter_speed = 50% 204 | external_perimeters_first = 0 205 | extra_perimeters = 1 206 | extra_perimeters_on_overhangs = 0 207 | extruder_clearance_height = 30 208 | extruder_clearance_radius = 45 209 | extrusion_width = 0.45 210 | fill_angle = 45 211 | fill_density = 15% 212 | fill_pattern = cubic 213 | first_layer_acceleration = 2500 214 | first_layer_acceleration_over_raft = 500 215 | first_layer_extrusion_width = 0.45 216 | first_layer_height = 0.1 217 | first_layer_speed = 50 218 | first_layer_speed_over_raft = 50 219 | fuzzy_skin = none 220 | fuzzy_skin_point_dist = 0.8 221 | fuzzy_skin_thickness = 0.3 222 | gap_fill_enabled = 1 223 | gap_fill_speed = 150 224 | gcode_comments = 0 225 | gcode_label_objects = 0 226 | gcode_resolution = 0.008 227 | gcode_substitutions = 228 | infill_acceleration = 2500 229 | infill_anchor = 600% 230 | infill_anchor_max = 50 231 | infill_every_layers = 1 232 | infill_extruder = 1 233 | infill_extrusion_width = 0.48 234 | infill_first = 0 235 | infill_overlap = 23% 236 | infill_speed = 250 237 | interface_shells = 0 238 | ironing = 0 239 | ironing_flowrate = 15% 240 | ironing_spacing = 0.1 241 | ironing_speed = 15 242 | ironing_type = top 243 | layer_height = 0.1 244 | max_print_speed = 300 245 | max_volumetric_extrusion_rate_slope_negative = 0 246 | max_volumetric_extrusion_rate_slope_positive = 0 247 | max_volumetric_speed = 0 248 | min_bead_width = 85% 249 | min_feature_size = 25% 250 | min_skirt_length = 4 251 | mmu_segmented_region_max_width = 0 252 | notes = 253 | only_retract_when_crossing_perimeters = 0 254 | ooze_prevention = 0 255 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 256 | overhang_speed_0 = 15 257 | overhang_speed_1 = 15 258 | overhang_speed_2 = 20 259 | overhang_speed_3 = 25 260 | overhangs = 1 261 | perimeter_acceleration = 500 262 | perimeter_extruder = 1 263 | perimeter_extrusion_width = 0.45 264 | perimeter_generator = arachne 265 | perimeter_speed = 250 266 | perimeters = 3 267 | post_process = 268 | print_settings_id = 269 | raft_contact_distance = 0.1 270 | raft_expansion = 1.5 271 | raft_first_layer_density = 80% 272 | raft_first_layer_expansion = 3 273 | raft_layers = 0 274 | resolution = 0 275 | seam_position = aligned 276 | single_extruder_multi_material_priming = 0 277 | skirt_distance = 3 278 | skirt_height = 1 279 | skirts = 2 280 | slice_closing_radius = 0.049 281 | slicing_mode = regular 282 | small_perimeter_speed = 40% 283 | solid_infill_acceleration = 0 284 | solid_infill_below_area = 0 285 | solid_infill_every_layers = 0 286 | solid_infill_extruder = 1 287 | solid_infill_extrusion_width = 0.45 288 | solid_infill_speed = 80% 289 | spiral_vase = 0 290 | staggered_inner_seams = 0 291 | standby_temperature_delta = -5 292 | support_material = 0 293 | support_material_angle = 0 294 | support_material_auto = 1 295 | support_material_bottom_contact_distance = 0 296 | support_material_bottom_interface_layers = -1 297 | support_material_buildplate_only = 0 298 | support_material_closing_radius = 2 299 | support_material_contact_distance = 0.1 300 | support_material_enforce_layers = 0 301 | support_material_extruder = 1 302 | support_material_extrusion_width = 0.36 303 | support_material_interface_contact_loops = 0 304 | support_material_interface_extruder = 1 305 | support_material_interface_layers = 2 306 | support_material_interface_pattern = rectilinear 307 | support_material_interface_spacing = 0.2 308 | support_material_interface_speed = 100% 309 | support_material_pattern = rectilinear 310 | support_material_spacing = 2.5 311 | support_material_speed = 125 312 | support_material_style = organic 313 | support_material_synchronize_layers = 0 314 | support_material_threshold = 40 315 | support_material_with_sheath = 0 316 | support_material_xy_spacing = 65% 317 | support_tree_angle = 30 318 | support_tree_angle_slow = 10 319 | support_tree_branch_diameter = 3 320 | support_tree_branch_diameter_angle = 5 321 | support_tree_branch_diameter_double_wall = 3 322 | support_tree_branch_distance = 1 323 | support_tree_tip_diameter = 0.8 324 | support_tree_top_rate = 45% 325 | thick_bridges = 0 326 | thin_walls = 0 327 | threads = 16 328 | top_fill_pattern = monotoniclines 329 | top_infill_extrusion_width = 0.4 330 | top_solid_infill_acceleration = 2500 331 | top_solid_infill_speed = 60% 332 | top_solid_layers = 9 333 | top_solid_min_thickness = 0.7 334 | travel_acceleration = 2500 335 | travel_speed = 300 336 | travel_speed_z = 50 337 | wall_distribution_count = 1 338 | wall_transition_angle = 10 339 | wall_transition_filter_deviation = 25% 340 | wall_transition_length = 100% 341 | wipe_tower = 0 342 | wipe_tower_bridging = 10 343 | wipe_tower_brim_width = 2 344 | wipe_tower_cone_angle = 0 345 | wipe_tower_extra_spacing = 100% 346 | wipe_tower_extruder = 0 347 | wipe_tower_no_sparse_layers = 0 348 | wipe_tower_rotation_angle = 0 349 | wipe_tower_width = 60 350 | wipe_tower_x = 180 351 | wipe_tower_y = 140 352 | xy_size_compensation = 0 353 | 354 | [print:0.15mm FAST @AMCE] 355 | avoid_crossing_curled_overhangs = 0 356 | avoid_crossing_perimeters = 0 357 | avoid_crossing_perimeters_max_detour = 0 358 | bottom_fill_pattern = rectilinear 359 | bottom_solid_layers = 5 360 | bottom_solid_min_thickness = 0 361 | bridge_acceleration = 1500 362 | bridge_angle = 0 363 | bridge_flow_ratio = 0.85 364 | bridge_speed = 200 365 | brim_separation = 0.1 366 | brim_type = outer_only 367 | brim_width = 0 368 | compatible_printers = 369 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 370 | complete_objects = 0 371 | default_acceleration = 6000 372 | dont_support_bridges = 1 373 | draft_shield = disabled 374 | elefant_foot_compensation = 0.2 375 | enable_dynamic_overhang_speeds = 0 376 | external_perimeter_acceleration = 3000 377 | external_perimeter_extrusion_width = 0.42 378 | external_perimeter_speed = 50% 379 | external_perimeters_first = 1 380 | extra_perimeters = 1 381 | extra_perimeters_on_overhangs = 0 382 | extruder_clearance_height = 30 383 | extruder_clearance_radius = 45 384 | extrusion_width = 0.45 385 | fill_angle = 45 386 | fill_density = 10% 387 | fill_pattern = supportcubic 388 | first_layer_acceleration = 2500 389 | first_layer_acceleration_over_raft = 2500 390 | first_layer_extrusion_width = 0.45 391 | first_layer_height = 0.15 392 | first_layer_speed = 50 393 | first_layer_speed_over_raft = 50 394 | fuzzy_skin = none 395 | fuzzy_skin_point_dist = 0.8 396 | fuzzy_skin_thickness = 0.3 397 | gap_fill_enabled = 1 398 | gap_fill_speed = 300 399 | gcode_comments = 0 400 | gcode_label_objects = 0 401 | gcode_resolution = 0.008 402 | gcode_substitutions = 403 | infill_acceleration = 6000 404 | infill_anchor = 600% 405 | infill_anchor_max = 50 406 | infill_every_layers = 1 407 | infill_extruder = 1 408 | infill_extrusion_width = 0.48 409 | infill_first = 0 410 | infill_overlap = 23% 411 | infill_speed = 600 412 | interface_shells = 0 413 | ironing = 0 414 | ironing_flowrate = 15% 415 | ironing_spacing = 0.1 416 | ironing_speed = 15 417 | ironing_type = top 418 | layer_height = 0.15 419 | max_print_speed = 600 420 | max_volumetric_extrusion_rate_slope_negative = 0 421 | max_volumetric_extrusion_rate_slope_positive = 0 422 | max_volumetric_speed = 0 423 | min_bead_width = 85% 424 | min_feature_size = 25% 425 | min_skirt_length = 4 426 | mmu_segmented_region_max_width = 0 427 | notes = 428 | only_retract_when_crossing_perimeters = 0 429 | ooze_prevention = 0 430 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 431 | overhang_speed_0 = 15 432 | overhang_speed_1 = 15 433 | overhang_speed_2 = 20 434 | overhang_speed_3 = 25 435 | overhangs = 1 436 | perimeter_acceleration = 6000 437 | perimeter_extruder = 1 438 | perimeter_extrusion_width = 0.45 439 | perimeter_generator = arachne 440 | perimeter_speed = 600 441 | perimeters = 3 442 | post_process = 443 | print_settings_id = 444 | raft_contact_distance = 0.15 445 | raft_expansion = 1.5 446 | raft_first_layer_density = 80% 447 | raft_first_layer_expansion = 3 448 | raft_layers = 0 449 | resolution = 0 450 | seam_position = aligned 451 | single_extruder_multi_material_priming = 0 452 | skirt_distance = 3 453 | skirt_height = 1 454 | skirts = 2 455 | slice_closing_radius = 0.049 456 | slicing_mode = regular 457 | small_perimeter_speed = 40% 458 | solid_infill_acceleration = 6000 459 | solid_infill_below_area = 0 460 | solid_infill_every_layers = 0 461 | solid_infill_extruder = 1 462 | solid_infill_extrusion_width = 0.45 463 | solid_infill_speed = 80% 464 | spiral_vase = 0 465 | staggered_inner_seams = 0 466 | standby_temperature_delta = -5 467 | support_material = 0 468 | support_material_angle = 0 469 | support_material_auto = 1 470 | support_material_bottom_contact_distance = 0 471 | support_material_bottom_interface_layers = -1 472 | support_material_buildplate_only = 0 473 | support_material_closing_radius = 2 474 | support_material_contact_distance = 0.15 475 | support_material_enforce_layers = 0 476 | support_material_extruder = 1 477 | support_material_extrusion_width = 0.36 478 | support_material_interface_contact_loops = 0 479 | support_material_interface_extruder = 1 480 | support_material_interface_layers = 2 481 | support_material_interface_pattern = rectilinear 482 | support_material_interface_spacing = 0.2 483 | support_material_interface_speed = 100% 484 | support_material_pattern = rectilinear 485 | support_material_spacing = 2.5 486 | support_material_speed = 360 487 | support_material_style = organic 488 | support_material_synchronize_layers = 0 489 | support_material_threshold = 40 490 | support_material_with_sheath = 0 491 | support_material_xy_spacing = 65% 492 | support_tree_angle = 30 493 | support_tree_angle_slow = 10 494 | support_tree_branch_diameter = 3 495 | support_tree_branch_diameter_angle = 5 496 | support_tree_branch_diameter_double_wall = 3 497 | support_tree_branch_distance = 1 498 | support_tree_tip_diameter = 0.8 499 | support_tree_top_rate = 45% 500 | thick_bridges = 0 501 | thin_walls = 0 502 | threads = 16 503 | top_fill_pattern = rectilinear 504 | top_infill_extrusion_width = 0.4 505 | top_solid_infill_acceleration = 2500 506 | top_solid_infill_speed = 60% 507 | top_solid_layers = 5 508 | top_solid_min_thickness = 0 509 | travel_acceleration = 6000 510 | travel_speed = 500 511 | travel_speed_z = 50 512 | wall_distribution_count = 1 513 | wall_transition_angle = 10 514 | wall_transition_filter_deviation = 25% 515 | wall_transition_length = 100% 516 | wipe_tower = 0 517 | wipe_tower_bridging = 10 518 | wipe_tower_brim_width = 2 519 | wipe_tower_cone_angle = 0 520 | wipe_tower_extra_spacing = 100% 521 | wipe_tower_extruder = 0 522 | wipe_tower_no_sparse_layers = 0 523 | wipe_tower_rotation_angle = 0 524 | wipe_tower_width = 60 525 | wipe_tower_x = 180 526 | wipe_tower_y = 140 527 | xy_size_compensation = 0 528 | 529 | [print:0.15mm OPTIMAL @AMCE] 530 | avoid_crossing_curled_overhangs = 0 531 | avoid_crossing_perimeters = 0 532 | avoid_crossing_perimeters_max_detour = 0 533 | bottom_fill_pattern = monotonic 534 | bottom_solid_layers = 5 535 | bottom_solid_min_thickness = 0.5 536 | bridge_acceleration = 500 537 | bridge_angle = 0 538 | bridge_flow_ratio = 0.85 539 | bridge_speed = 110 540 | brim_separation = 0.1 541 | brim_type = outer_only 542 | brim_width = 0 543 | compatible_printers = 544 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 545 | complete_objects = 0 546 | default_acceleration = 2500 547 | dont_support_bridges = 1 548 | draft_shield = disabled 549 | elefant_foot_compensation = 0.2 550 | enable_dynamic_overhang_speeds = 1 551 | external_perimeter_acceleration = 0 552 | external_perimeter_extrusion_width = 0.42 553 | external_perimeter_speed = 50% 554 | external_perimeters_first = 0 555 | extra_perimeters = 1 556 | extra_perimeters_on_overhangs = 0 557 | extruder_clearance_height = 30 558 | extruder_clearance_radius = 45 559 | extrusion_width = 0.45 560 | fill_angle = 45 561 | fill_density = 15% 562 | fill_pattern = cubic 563 | first_layer_acceleration = 2500 564 | first_layer_acceleration_over_raft = 500 565 | first_layer_extrusion_width = 0.45 566 | first_layer_height = 0.15 567 | first_layer_speed = 50 568 | first_layer_speed_over_raft = 50 569 | fuzzy_skin = none 570 | fuzzy_skin_point_dist = 0.8 571 | fuzzy_skin_thickness = 0.3 572 | gap_fill_enabled = 1 573 | gap_fill_speed = 150 574 | gcode_comments = 0 575 | gcode_label_objects = 0 576 | gcode_resolution = 0.008 577 | gcode_substitutions = 578 | infill_acceleration = 2500 579 | infill_anchor = 600% 580 | infill_anchor_max = 50 581 | infill_every_layers = 1 582 | infill_extruder = 1 583 | infill_extrusion_width = 0.48 584 | infill_first = 0 585 | infill_overlap = 23% 586 | infill_speed = 250 587 | interface_shells = 0 588 | ironing = 0 589 | ironing_flowrate = 15% 590 | ironing_spacing = 0.1 591 | ironing_speed = 15 592 | ironing_type = top 593 | layer_height = 0.15 594 | max_print_speed = 300 595 | max_volumetric_extrusion_rate_slope_negative = 0 596 | max_volumetric_extrusion_rate_slope_positive = 0 597 | max_volumetric_speed = 0 598 | min_bead_width = 85% 599 | min_feature_size = 25% 600 | min_skirt_length = 4 601 | mmu_segmented_region_max_width = 0 602 | notes = 603 | only_retract_when_crossing_perimeters = 0 604 | ooze_prevention = 0 605 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 606 | overhang_speed_0 = 15 607 | overhang_speed_1 = 15 608 | overhang_speed_2 = 20 609 | overhang_speed_3 = 25 610 | overhangs = 1 611 | perimeter_acceleration = 500 612 | perimeter_extruder = 1 613 | perimeter_extrusion_width = 0.45 614 | perimeter_generator = arachne 615 | perimeter_speed = 250 616 | perimeters = 3 617 | post_process = 618 | print_settings_id = 619 | raft_contact_distance = 0.15 620 | raft_expansion = 1.5 621 | raft_first_layer_density = 80% 622 | raft_first_layer_expansion = 3 623 | raft_layers = 0 624 | resolution = 0 625 | seam_position = aligned 626 | single_extruder_multi_material_priming = 0 627 | skirt_distance = 3 628 | skirt_height = 1 629 | skirts = 2 630 | slice_closing_radius = 0.049 631 | slicing_mode = regular 632 | small_perimeter_speed = 40% 633 | solid_infill_acceleration = 0 634 | solid_infill_below_area = 0 635 | solid_infill_every_layers = 0 636 | solid_infill_extruder = 1 637 | solid_infill_extrusion_width = 0.45 638 | solid_infill_speed = 80% 639 | spiral_vase = 0 640 | staggered_inner_seams = 0 641 | standby_temperature_delta = -5 642 | support_material = 0 643 | support_material_angle = 0 644 | support_material_auto = 1 645 | support_material_bottom_contact_distance = 0 646 | support_material_bottom_interface_layers = -1 647 | support_material_buildplate_only = 0 648 | support_material_closing_radius = 2 649 | support_material_contact_distance = 0.15 650 | support_material_enforce_layers = 0 651 | support_material_extruder = 1 652 | support_material_extrusion_width = 0.36 653 | support_material_interface_contact_loops = 0 654 | support_material_interface_extruder = 1 655 | support_material_interface_layers = 2 656 | support_material_interface_pattern = rectilinear 657 | support_material_interface_spacing = 0.2 658 | support_material_interface_speed = 100% 659 | support_material_pattern = rectilinear 660 | support_material_spacing = 2.5 661 | support_material_speed = 125 662 | support_material_style = organic 663 | support_material_synchronize_layers = 0 664 | support_material_threshold = 40 665 | support_material_with_sheath = 0 666 | support_material_xy_spacing = 65% 667 | support_tree_angle = 30 668 | support_tree_angle_slow = 10 669 | support_tree_branch_diameter = 3 670 | support_tree_branch_diameter_angle = 5 671 | support_tree_branch_diameter_double_wall = 3 672 | support_tree_branch_distance = 1 673 | support_tree_tip_diameter = 0.8 674 | support_tree_top_rate = 45% 675 | thick_bridges = 0 676 | thin_walls = 0 677 | threads = 16 678 | top_fill_pattern = monotoniclines 679 | top_infill_extrusion_width = 0.4 680 | top_solid_infill_acceleration = 2500 681 | top_solid_infill_speed = 60% 682 | top_solid_layers = 6 683 | top_solid_min_thickness = 0.7 684 | travel_acceleration = 2500 685 | travel_speed = 300 686 | travel_speed_z = 50 687 | wall_distribution_count = 1 688 | wall_transition_angle = 10 689 | wall_transition_filter_deviation = 25% 690 | wall_transition_length = 100% 691 | wipe_tower = 0 692 | wipe_tower_bridging = 10 693 | wipe_tower_brim_width = 2 694 | wipe_tower_cone_angle = 0 695 | wipe_tower_extra_spacing = 100% 696 | wipe_tower_extruder = 0 697 | wipe_tower_no_sparse_layers = 0 698 | wipe_tower_rotation_angle = 0 699 | wipe_tower_width = 60 700 | wipe_tower_x = 180 701 | wipe_tower_y = 140 702 | xy_size_compensation = 0 703 | 704 | [print:0.20mm FAST @AMCE] 705 | avoid_crossing_curled_overhangs = 0 706 | avoid_crossing_perimeters = 0 707 | avoid_crossing_perimeters_max_detour = 0 708 | bottom_fill_pattern = rectilinear 709 | bottom_solid_layers = 4 710 | bottom_solid_min_thickness = 0 711 | bridge_acceleration = 1500 712 | bridge_angle = 0 713 | bridge_flow_ratio = 0.95 714 | bridge_speed = 200 715 | brim_separation = 0.1 716 | brim_type = outer_only 717 | brim_width = 0 718 | compatible_printers = 719 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 720 | complete_objects = 0 721 | default_acceleration = 6000 722 | dont_support_bridges = 1 723 | draft_shield = disabled 724 | elefant_foot_compensation = 0.2 725 | enable_dynamic_overhang_speeds = 0 726 | external_perimeter_acceleration = 3000 727 | external_perimeter_extrusion_width = 0.42 728 | external_perimeter_speed = 50% 729 | external_perimeters_first = 1 730 | extra_perimeters = 1 731 | extra_perimeters_on_overhangs = 0 732 | extruder_clearance_height = 30 733 | extruder_clearance_radius = 45 734 | extrusion_width = 0.45 735 | fill_angle = 45 736 | fill_density = 10% 737 | fill_pattern = supportcubic 738 | first_layer_acceleration = 2500 739 | first_layer_acceleration_over_raft = 2500 740 | first_layer_extrusion_width = 0.45 741 | first_layer_height = 0.2 742 | first_layer_speed = 50 743 | first_layer_speed_over_raft = 50 744 | fuzzy_skin = none 745 | fuzzy_skin_point_dist = 0.8 746 | fuzzy_skin_thickness = 0.3 747 | gap_fill_enabled = 1 748 | gap_fill_speed = 300 749 | gcode_comments = 0 750 | gcode_label_objects = 0 751 | gcode_resolution = 0.008 752 | gcode_substitutions = 753 | infill_acceleration = 6000 754 | infill_anchor = 600% 755 | infill_anchor_max = 50 756 | infill_every_layers = 1 757 | infill_extruder = 1 758 | infill_extrusion_width = 0.48 759 | infill_first = 0 760 | infill_overlap = 23% 761 | infill_speed = 600 762 | interface_shells = 0 763 | ironing = 0 764 | ironing_flowrate = 15% 765 | ironing_spacing = 0.1 766 | ironing_speed = 15 767 | ironing_type = top 768 | layer_height = 0.2 769 | max_print_speed = 600 770 | max_volumetric_extrusion_rate_slope_negative = 0 771 | max_volumetric_extrusion_rate_slope_positive = 0 772 | max_volumetric_speed = 0 773 | min_bead_width = 85% 774 | min_feature_size = 25% 775 | min_skirt_length = 4 776 | mmu_segmented_region_max_width = 0 777 | notes = 778 | only_retract_when_crossing_perimeters = 0 779 | ooze_prevention = 0 780 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 781 | overhang_speed_0 = 15 782 | overhang_speed_1 = 15 783 | overhang_speed_2 = 20 784 | overhang_speed_3 = 25 785 | overhangs = 1 786 | perimeter_acceleration = 6000 787 | perimeter_extruder = 1 788 | perimeter_extrusion_width = 0.45 789 | perimeter_generator = arachne 790 | perimeter_speed = 600 791 | perimeters = 3 792 | post_process = 793 | print_settings_id = 794 | raft_contact_distance = 0.2 795 | raft_expansion = 1.5 796 | raft_first_layer_density = 80% 797 | raft_first_layer_expansion = 3 798 | raft_layers = 0 799 | resolution = 0 800 | seam_position = aligned 801 | single_extruder_multi_material_priming = 0 802 | skirt_distance = 3 803 | skirt_height = 1 804 | skirts = 2 805 | slice_closing_radius = 0.049 806 | slicing_mode = regular 807 | small_perimeter_speed = 40% 808 | solid_infill_acceleration = 6000 809 | solid_infill_below_area = 0 810 | solid_infill_every_layers = 0 811 | solid_infill_extruder = 1 812 | solid_infill_extrusion_width = 0.45 813 | solid_infill_speed = 80% 814 | spiral_vase = 0 815 | staggered_inner_seams = 0 816 | standby_temperature_delta = -5 817 | support_material = 0 818 | support_material_angle = 0 819 | support_material_auto = 1 820 | support_material_bottom_contact_distance = 0 821 | support_material_bottom_interface_layers = -1 822 | support_material_buildplate_only = 0 823 | support_material_closing_radius = 2 824 | support_material_contact_distance = 0.2 825 | support_material_enforce_layers = 0 826 | support_material_extruder = 1 827 | support_material_extrusion_width = 0.36 828 | support_material_interface_contact_loops = 0 829 | support_material_interface_extruder = 1 830 | support_material_interface_layers = 2 831 | support_material_interface_pattern = rectilinear 832 | support_material_interface_spacing = 0.2 833 | support_material_interface_speed = 100% 834 | support_material_pattern = rectilinear 835 | support_material_spacing = 2.5 836 | support_material_speed = 360 837 | support_material_style = organic 838 | support_material_synchronize_layers = 0 839 | support_material_threshold = 40 840 | support_material_with_sheath = 0 841 | support_material_xy_spacing = 65% 842 | support_tree_angle = 30 843 | support_tree_angle_slow = 10 844 | support_tree_branch_diameter = 3 845 | support_tree_branch_diameter_angle = 5 846 | support_tree_branch_diameter_double_wall = 3 847 | support_tree_branch_distance = 1 848 | support_tree_tip_diameter = 0.8 849 | support_tree_top_rate = 45% 850 | thick_bridges = 0 851 | thin_walls = 0 852 | threads = 16 853 | top_fill_pattern = rectilinear 854 | top_infill_extrusion_width = 0.4 855 | top_solid_infill_acceleration = 2500 856 | top_solid_infill_speed = 60% 857 | top_solid_layers = 4 858 | top_solid_min_thickness = 0 859 | travel_acceleration = 6000 860 | travel_speed = 500 861 | travel_speed_z = 50 862 | wall_distribution_count = 1 863 | wall_transition_angle = 10 864 | wall_transition_filter_deviation = 25% 865 | wall_transition_length = 100% 866 | wipe_tower = 0 867 | wipe_tower_bridging = 10 868 | wipe_tower_brim_width = 2 869 | wipe_tower_cone_angle = 0 870 | wipe_tower_extra_spacing = 100% 871 | wipe_tower_extruder = 0 872 | wipe_tower_no_sparse_layers = 0 873 | wipe_tower_rotation_angle = 0 874 | wipe_tower_width = 60 875 | wipe_tower_x = 180 876 | wipe_tower_y = 140 877 | xy_size_compensation = 0 878 | 879 | [print:0.20mm NORMAL @AMCE] 880 | avoid_crossing_curled_overhangs = 0 881 | avoid_crossing_perimeters = 0 882 | avoid_crossing_perimeters_max_detour = 0 883 | bottom_fill_pattern = monotonic 884 | bottom_solid_layers = 4 885 | bottom_solid_min_thickness = 0.5 886 | bridge_acceleration = 500 887 | bridge_angle = 0 888 | bridge_flow_ratio = 0.95 889 | bridge_speed = 110 890 | brim_separation = 0.1 891 | brim_type = outer_only 892 | brim_width = 0 893 | compatible_printers = 894 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 895 | complete_objects = 0 896 | default_acceleration = 2500 897 | dont_support_bridges = 1 898 | draft_shield = disabled 899 | elefant_foot_compensation = 0.2 900 | enable_dynamic_overhang_speeds = 1 901 | external_perimeter_acceleration = 0 902 | external_perimeter_extrusion_width = 0.42 903 | external_perimeter_speed = 50% 904 | external_perimeters_first = 0 905 | extra_perimeters = 1 906 | extra_perimeters_on_overhangs = 0 907 | extruder_clearance_height = 30 908 | extruder_clearance_radius = 45 909 | extrusion_width = 0.45 910 | fill_angle = 45 911 | fill_density = 15% 912 | fill_pattern = cubic 913 | first_layer_acceleration = 2500 914 | first_layer_acceleration_over_raft = 500 915 | first_layer_extrusion_width = 0.45 916 | first_layer_height = 0.2 917 | first_layer_speed = 50 918 | first_layer_speed_over_raft = 50 919 | fuzzy_skin = none 920 | fuzzy_skin_point_dist = 0.8 921 | fuzzy_skin_thickness = 0.3 922 | gap_fill_enabled = 1 923 | gap_fill_speed = 150 924 | gcode_comments = 0 925 | gcode_label_objects = 0 926 | gcode_resolution = 0.008 927 | gcode_substitutions = 928 | infill_acceleration = 2500 929 | infill_anchor = 600% 930 | infill_anchor_max = 50 931 | infill_every_layers = 1 932 | infill_extruder = 1 933 | infill_extrusion_width = 0.48 934 | infill_first = 0 935 | infill_overlap = 23% 936 | infill_speed = 250 937 | interface_shells = 0 938 | ironing = 0 939 | ironing_flowrate = 15% 940 | ironing_spacing = 0.1 941 | ironing_speed = 15 942 | ironing_type = top 943 | layer_height = 0.2 944 | max_print_speed = 300 945 | max_volumetric_extrusion_rate_slope_negative = 0 946 | max_volumetric_extrusion_rate_slope_positive = 0 947 | max_volumetric_speed = 0 948 | min_bead_width = 85% 949 | min_feature_size = 25% 950 | min_skirt_length = 4 951 | mmu_segmented_region_max_width = 0 952 | notes = 953 | only_retract_when_crossing_perimeters = 0 954 | ooze_prevention = 0 955 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 956 | overhang_speed_0 = 15 957 | overhang_speed_1 = 15 958 | overhang_speed_2 = 20 959 | overhang_speed_3 = 25 960 | overhangs = 1 961 | perimeter_acceleration = 500 962 | perimeter_extruder = 1 963 | perimeter_extrusion_width = 0.45 964 | perimeter_generator = arachne 965 | perimeter_speed = 250 966 | perimeters = 3 967 | post_process = 968 | print_settings_id = 969 | raft_contact_distance = 0.2 970 | raft_expansion = 1.5 971 | raft_first_layer_density = 80% 972 | raft_first_layer_expansion = 3 973 | raft_layers = 0 974 | resolution = 0 975 | seam_position = aligned 976 | single_extruder_multi_material_priming = 0 977 | skirt_distance = 3 978 | skirt_height = 1 979 | skirts = 2 980 | slice_closing_radius = 0.049 981 | slicing_mode = regular 982 | small_perimeter_speed = 40% 983 | solid_infill_acceleration = 0 984 | solid_infill_below_area = 0 985 | solid_infill_every_layers = 0 986 | solid_infill_extruder = 1 987 | solid_infill_extrusion_width = 0.45 988 | solid_infill_speed = 80% 989 | spiral_vase = 0 990 | staggered_inner_seams = 0 991 | standby_temperature_delta = -5 992 | support_material = 0 993 | support_material_angle = 0 994 | support_material_auto = 1 995 | support_material_bottom_contact_distance = 0 996 | support_material_bottom_interface_layers = -1 997 | support_material_buildplate_only = 0 998 | support_material_closing_radius = 2 999 | support_material_contact_distance = 0.2 1000 | support_material_enforce_layers = 0 1001 | support_material_extruder = 1 1002 | support_material_extrusion_width = 0.36 1003 | support_material_interface_contact_loops = 0 1004 | support_material_interface_extruder = 1 1005 | support_material_interface_layers = 2 1006 | support_material_interface_pattern = rectilinear 1007 | support_material_interface_spacing = 0.2 1008 | support_material_interface_speed = 100% 1009 | support_material_pattern = rectilinear 1010 | support_material_spacing = 2.5 1011 | support_material_speed = 125 1012 | support_material_style = organic 1013 | support_material_synchronize_layers = 0 1014 | support_material_threshold = 40 1015 | support_material_with_sheath = 0 1016 | support_material_xy_spacing = 65% 1017 | support_tree_angle = 30 1018 | support_tree_angle_slow = 10 1019 | support_tree_branch_diameter = 3 1020 | support_tree_branch_diameter_angle = 5 1021 | support_tree_branch_diameter_double_wall = 3 1022 | support_tree_branch_distance = 1 1023 | support_tree_tip_diameter = 0.8 1024 | support_tree_top_rate = 45% 1025 | thick_bridges = 0 1026 | thin_walls = 0 1027 | threads = 16 1028 | top_fill_pattern = monotoniclines 1029 | top_infill_extrusion_width = 0.4 1030 | top_solid_infill_acceleration = 2500 1031 | top_solid_infill_speed = 60% 1032 | top_solid_layers = 5 1033 | top_solid_min_thickness = 0.7 1034 | travel_acceleration = 2500 1035 | travel_speed = 300 1036 | travel_speed_z = 50 1037 | wall_distribution_count = 1 1038 | wall_transition_angle = 10 1039 | wall_transition_filter_deviation = 25% 1040 | wall_transition_length = 100% 1041 | wipe_tower = 0 1042 | wipe_tower_bridging = 10 1043 | wipe_tower_brim_width = 2 1044 | wipe_tower_cone_angle = 0 1045 | wipe_tower_extra_spacing = 100% 1046 | wipe_tower_extruder = 0 1047 | wipe_tower_no_sparse_layers = 0 1048 | wipe_tower_rotation_angle = 0 1049 | wipe_tower_width = 60 1050 | wipe_tower_x = 180 1051 | wipe_tower_y = 140 1052 | xy_size_compensation = 0 1053 | 1054 | [print:0.25mm DRAFT @AMCE] 1055 | avoid_crossing_curled_overhangs = 0 1056 | avoid_crossing_perimeters = 0 1057 | avoid_crossing_perimeters_max_detour = 0 1058 | bottom_fill_pattern = monotonic 1059 | bottom_solid_layers = 3 1060 | bottom_solid_min_thickness = 0.5 1061 | bridge_acceleration = 500 1062 | bridge_angle = 0 1063 | bridge_flow_ratio = 0.95 1064 | bridge_speed = 110 1065 | brim_separation = 0.1 1066 | brim_type = outer_only 1067 | brim_width = 0 1068 | compatible_printers = 1069 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 1070 | complete_objects = 0 1071 | default_acceleration = 2500 1072 | dont_support_bridges = 1 1073 | draft_shield = disabled 1074 | elefant_foot_compensation = 0.2 1075 | enable_dynamic_overhang_speeds = 1 1076 | external_perimeter_acceleration = 0 1077 | external_perimeter_extrusion_width = 0.42 1078 | external_perimeter_speed = 50% 1079 | external_perimeters_first = 0 1080 | extra_perimeters = 1 1081 | extra_perimeters_on_overhangs = 0 1082 | extruder_clearance_height = 30 1083 | extruder_clearance_radius = 45 1084 | extrusion_width = 0.45 1085 | fill_angle = 45 1086 | fill_density = 15% 1087 | fill_pattern = cubic 1088 | first_layer_acceleration = 2500 1089 | first_layer_acceleration_over_raft = 500 1090 | first_layer_extrusion_width = 0.45 1091 | first_layer_height = 0.25 1092 | first_layer_speed = 50 1093 | first_layer_speed_over_raft = 50 1094 | fuzzy_skin = none 1095 | fuzzy_skin_point_dist = 0.8 1096 | fuzzy_skin_thickness = 0.3 1097 | gap_fill_enabled = 1 1098 | gap_fill_speed = 150 1099 | gcode_comments = 0 1100 | gcode_label_objects = 0 1101 | gcode_resolution = 0.008 1102 | gcode_substitutions = 1103 | infill_acceleration = 2500 1104 | infill_anchor = 600% 1105 | infill_anchor_max = 50 1106 | infill_every_layers = 1 1107 | infill_extruder = 1 1108 | infill_extrusion_width = 0.48 1109 | infill_first = 0 1110 | infill_overlap = 23% 1111 | infill_speed = 250 1112 | interface_shells = 0 1113 | ironing = 0 1114 | ironing_flowrate = 15% 1115 | ironing_spacing = 0.1 1116 | ironing_speed = 15 1117 | ironing_type = top 1118 | layer_height = 0.25 1119 | max_print_speed = 300 1120 | max_volumetric_extrusion_rate_slope_negative = 0 1121 | max_volumetric_extrusion_rate_slope_positive = 0 1122 | max_volumetric_speed = 0 1123 | min_bead_width = 85% 1124 | min_feature_size = 25% 1125 | min_skirt_length = 4 1126 | mmu_segmented_region_max_width = 0 1127 | notes = 1128 | only_retract_when_crossing_perimeters = 0 1129 | ooze_prevention = 0 1130 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 1131 | overhang_speed_0 = 15 1132 | overhang_speed_1 = 15 1133 | overhang_speed_2 = 20 1134 | overhang_speed_3 = 25 1135 | overhangs = 1 1136 | perimeter_acceleration = 500 1137 | perimeter_extruder = 1 1138 | perimeter_extrusion_width = 0.45 1139 | perimeter_generator = arachne 1140 | perimeter_speed = 250 1141 | perimeters = 3 1142 | post_process = 1143 | print_settings_id = 1144 | raft_contact_distance = 0.25 1145 | raft_expansion = 1.5 1146 | raft_first_layer_density = 80% 1147 | raft_first_layer_expansion = 3 1148 | raft_layers = 0 1149 | resolution = 0 1150 | seam_position = aligned 1151 | single_extruder_multi_material_priming = 0 1152 | skirt_distance = 3 1153 | skirt_height = 1 1154 | skirts = 2 1155 | slice_closing_radius = 0.049 1156 | slicing_mode = regular 1157 | small_perimeter_speed = 40% 1158 | solid_infill_acceleration = 0 1159 | solid_infill_below_area = 0 1160 | solid_infill_every_layers = 0 1161 | solid_infill_extruder = 1 1162 | solid_infill_extrusion_width = 0.45 1163 | solid_infill_speed = 80% 1164 | spiral_vase = 0 1165 | staggered_inner_seams = 0 1166 | standby_temperature_delta = -5 1167 | support_material = 0 1168 | support_material_angle = 0 1169 | support_material_auto = 1 1170 | support_material_bottom_contact_distance = 0 1171 | support_material_bottom_interface_layers = -1 1172 | support_material_buildplate_only = 0 1173 | support_material_closing_radius = 2 1174 | support_material_contact_distance = 0.25 1175 | support_material_enforce_layers = 0 1176 | support_material_extruder = 1 1177 | support_material_extrusion_width = 0.36 1178 | support_material_interface_contact_loops = 0 1179 | support_material_interface_extruder = 1 1180 | support_material_interface_layers = 2 1181 | support_material_interface_pattern = rectilinear 1182 | support_material_interface_spacing = 0.2 1183 | support_material_interface_speed = 100% 1184 | support_material_pattern = rectilinear 1185 | support_material_spacing = 2.5 1186 | support_material_speed = 125 1187 | support_material_style = organic 1188 | support_material_synchronize_layers = 0 1189 | support_material_threshold = 40 1190 | support_material_with_sheath = 0 1191 | support_material_xy_spacing = 65% 1192 | support_tree_angle = 30 1193 | support_tree_angle_slow = 10 1194 | support_tree_branch_diameter = 3 1195 | support_tree_branch_diameter_angle = 5 1196 | support_tree_branch_diameter_double_wall = 3 1197 | support_tree_branch_distance = 1 1198 | support_tree_tip_diameter = 0.8 1199 | support_tree_top_rate = 45% 1200 | thick_bridges = 0 1201 | thin_walls = 0 1202 | threads = 16 1203 | top_fill_pattern = monotoniclines 1204 | top_infill_extrusion_width = 0.4 1205 | top_solid_infill_acceleration = 2500 1206 | top_solid_infill_speed = 60% 1207 | top_solid_layers = 3 1208 | top_solid_min_thickness = 0.7 1209 | travel_acceleration = 2500 1210 | travel_speed = 300 1211 | travel_speed_z = 50 1212 | wall_distribution_count = 1 1213 | wall_transition_angle = 10 1214 | wall_transition_filter_deviation = 25% 1215 | wall_transition_length = 100% 1216 | wipe_tower = 0 1217 | wipe_tower_bridging = 10 1218 | wipe_tower_brim_width = 2 1219 | wipe_tower_cone_angle = 0 1220 | wipe_tower_extra_spacing = 100% 1221 | wipe_tower_extruder = 0 1222 | wipe_tower_no_sparse_layers = 0 1223 | wipe_tower_rotation_angle = 0 1224 | wipe_tower_width = 60 1225 | wipe_tower_x = 180 1226 | wipe_tower_y = 140 1227 | xy_size_compensation = 0 1228 | 1229 | [print:0.25mm FAST @AMCE] 1230 | avoid_crossing_curled_overhangs = 0 1231 | avoid_crossing_perimeters = 0 1232 | avoid_crossing_perimeters_max_detour = 0 1233 | bottom_fill_pattern = rectilinear 1234 | bottom_solid_layers = 3 1235 | bottom_solid_min_thickness = 0 1236 | bridge_acceleration = 1500 1237 | bridge_angle = 0 1238 | bridge_flow_ratio = 0.95 1239 | bridge_speed = 200 1240 | brim_separation = 0.1 1241 | brim_type = outer_only 1242 | brim_width = 0 1243 | compatible_printers = 1244 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 1245 | complete_objects = 0 1246 | default_acceleration = 6000 1247 | dont_support_bridges = 1 1248 | draft_shield = disabled 1249 | elefant_foot_compensation = 0.2 1250 | enable_dynamic_overhang_speeds = 0 1251 | external_perimeter_acceleration = 3000 1252 | external_perimeter_extrusion_width = 0.42 1253 | external_perimeter_speed = 50% 1254 | external_perimeters_first = 1 1255 | extra_perimeters = 1 1256 | extra_perimeters_on_overhangs = 0 1257 | extruder_clearance_height = 30 1258 | extruder_clearance_radius = 45 1259 | extrusion_width = 0.45 1260 | fill_angle = 45 1261 | fill_density = 10% 1262 | fill_pattern = supportcubic 1263 | first_layer_acceleration = 2500 1264 | first_layer_acceleration_over_raft = 2500 1265 | first_layer_extrusion_width = 0.45 1266 | first_layer_height = 0.25 1267 | first_layer_speed = 50 1268 | first_layer_speed_over_raft = 50 1269 | fuzzy_skin = none 1270 | fuzzy_skin_point_dist = 0.8 1271 | fuzzy_skin_thickness = 0.3 1272 | gap_fill_enabled = 1 1273 | gap_fill_speed = 300 1274 | gcode_comments = 0 1275 | gcode_label_objects = 0 1276 | gcode_resolution = 0.008 1277 | gcode_substitutions = 1278 | infill_acceleration = 6000 1279 | infill_anchor = 600% 1280 | infill_anchor_max = 50 1281 | infill_every_layers = 1 1282 | infill_extruder = 1 1283 | infill_extrusion_width = 0.48 1284 | infill_first = 0 1285 | infill_overlap = 23% 1286 | infill_speed = 600 1287 | interface_shells = 0 1288 | ironing = 0 1289 | ironing_flowrate = 15% 1290 | ironing_spacing = 0.1 1291 | ironing_speed = 15 1292 | ironing_type = top 1293 | layer_height = 0.25 1294 | max_print_speed = 600 1295 | max_volumetric_extrusion_rate_slope_negative = 0 1296 | max_volumetric_extrusion_rate_slope_positive = 0 1297 | max_volumetric_speed = 0 1298 | min_bead_width = 85% 1299 | min_feature_size = 25% 1300 | min_skirt_length = 4 1301 | mmu_segmented_region_max_width = 0 1302 | notes = 1303 | only_retract_when_crossing_perimeters = 0 1304 | ooze_prevention = 0 1305 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 1306 | overhang_speed_0 = 15 1307 | overhang_speed_1 = 15 1308 | overhang_speed_2 = 20 1309 | overhang_speed_3 = 25 1310 | overhangs = 1 1311 | perimeter_acceleration = 6000 1312 | perimeter_extruder = 1 1313 | perimeter_extrusion_width = 0.45 1314 | perimeter_generator = arachne 1315 | perimeter_speed = 600 1316 | perimeters = 3 1317 | post_process = 1318 | print_settings_id = 1319 | raft_contact_distance = 0.25 1320 | raft_expansion = 1.5 1321 | raft_first_layer_density = 80% 1322 | raft_first_layer_expansion = 3 1323 | raft_layers = 0 1324 | resolution = 0 1325 | seam_position = aligned 1326 | single_extruder_multi_material_priming = 0 1327 | skirt_distance = 3 1328 | skirt_height = 1 1329 | skirts = 2 1330 | slice_closing_radius = 0.049 1331 | slicing_mode = regular 1332 | small_perimeter_speed = 40% 1333 | solid_infill_acceleration = 6000 1334 | solid_infill_below_area = 0 1335 | solid_infill_every_layers = 0 1336 | solid_infill_extruder = 1 1337 | solid_infill_extrusion_width = 0.45 1338 | solid_infill_speed = 80% 1339 | spiral_vase = 0 1340 | staggered_inner_seams = 0 1341 | standby_temperature_delta = -5 1342 | support_material = 0 1343 | support_material_angle = 0 1344 | support_material_auto = 1 1345 | support_material_bottom_contact_distance = 0 1346 | support_material_bottom_interface_layers = -1 1347 | support_material_buildplate_only = 0 1348 | support_material_closing_radius = 2 1349 | support_material_contact_distance = 0.25 1350 | support_material_enforce_layers = 0 1351 | support_material_extruder = 1 1352 | support_material_extrusion_width = 0.36 1353 | support_material_interface_contact_loops = 0 1354 | support_material_interface_extruder = 1 1355 | support_material_interface_layers = 2 1356 | support_material_interface_pattern = rectilinear 1357 | support_material_interface_spacing = 0.2 1358 | support_material_interface_speed = 100% 1359 | support_material_pattern = rectilinear 1360 | support_material_spacing = 2.5 1361 | support_material_speed = 360 1362 | support_material_style = organic 1363 | support_material_synchronize_layers = 0 1364 | support_material_threshold = 40 1365 | support_material_with_sheath = 0 1366 | support_material_xy_spacing = 65% 1367 | support_tree_angle = 30 1368 | support_tree_angle_slow = 10 1369 | support_tree_branch_diameter = 3 1370 | support_tree_branch_diameter_angle = 5 1371 | support_tree_branch_diameter_double_wall = 3 1372 | support_tree_branch_distance = 1 1373 | support_tree_tip_diameter = 0.8 1374 | support_tree_top_rate = 45% 1375 | thick_bridges = 0 1376 | thin_walls = 0 1377 | threads = 16 1378 | top_fill_pattern = rectilinear 1379 | top_infill_extrusion_width = 0.4 1380 | top_solid_infill_acceleration = 2500 1381 | top_solid_infill_speed = 60% 1382 | top_solid_layers = 3 1383 | top_solid_min_thickness = 0 1384 | travel_acceleration = 6000 1385 | travel_speed = 500 1386 | travel_speed_z = 50 1387 | wall_distribution_count = 1 1388 | wall_transition_angle = 10 1389 | wall_transition_filter_deviation = 25% 1390 | wall_transition_length = 100% 1391 | wipe_tower = 0 1392 | wipe_tower_bridging = 10 1393 | wipe_tower_brim_width = 2 1394 | wipe_tower_cone_angle = 0 1395 | wipe_tower_extra_spacing = 100% 1396 | wipe_tower_extruder = 0 1397 | wipe_tower_no_sparse_layers = 0 1398 | wipe_tower_rotation_angle = 0 1399 | wipe_tower_width = 60 1400 | wipe_tower_x = 180 1401 | wipe_tower_y = 140 1402 | xy_size_compensation = 0 1403 | 1404 | [print:0.30mm SUPERDRAFT @AMCE] 1405 | avoid_crossing_curled_overhangs = 0 1406 | avoid_crossing_perimeters = 0 1407 | avoid_crossing_perimeters_max_detour = 0 1408 | bottom_fill_pattern = monotonic 1409 | bottom_solid_layers = 2 1410 | bottom_solid_min_thickness = 0.5 1411 | bridge_acceleration = 500 1412 | bridge_angle = 0 1413 | bridge_flow_ratio = 0.95 1414 | bridge_speed = 110 1415 | brim_separation = 0.1 1416 | brim_type = outer_only 1417 | brim_width = 0 1418 | compatible_printers = 1419 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ and nozzle_diameter[0]==0.4 1420 | complete_objects = 0 1421 | default_acceleration = 2500 1422 | dont_support_bridges = 1 1423 | draft_shield = disabled 1424 | elefant_foot_compensation = 0.2 1425 | enable_dynamic_overhang_speeds = 1 1426 | external_perimeter_acceleration = 0 1427 | external_perimeter_extrusion_width = 0.42 1428 | external_perimeter_speed = 50% 1429 | external_perimeters_first = 0 1430 | extra_perimeters = 1 1431 | extra_perimeters_on_overhangs = 0 1432 | extruder_clearance_height = 30 1433 | extruder_clearance_radius = 45 1434 | extrusion_width = 0.45 1435 | fill_angle = 45 1436 | fill_density = 15% 1437 | fill_pattern = cubic 1438 | first_layer_acceleration = 2500 1439 | first_layer_acceleration_over_raft = 500 1440 | first_layer_extrusion_width = 0.45 1441 | first_layer_height = 0.3 1442 | first_layer_speed = 50 1443 | first_layer_speed_over_raft = 50 1444 | fuzzy_skin = none 1445 | fuzzy_skin_point_dist = 0.8 1446 | fuzzy_skin_thickness = 0.3 1447 | gap_fill_enabled = 1 1448 | gap_fill_speed = 150 1449 | gcode_comments = 0 1450 | gcode_label_objects = 0 1451 | gcode_resolution = 0.008 1452 | gcode_substitutions = 1453 | infill_acceleration = 2500 1454 | infill_anchor = 600% 1455 | infill_anchor_max = 50 1456 | infill_every_layers = 1 1457 | infill_extruder = 1 1458 | infill_extrusion_width = 0.48 1459 | infill_first = 0 1460 | infill_overlap = 23% 1461 | infill_speed = 250 1462 | interface_shells = 0 1463 | ironing = 0 1464 | ironing_flowrate = 15% 1465 | ironing_spacing = 0.1 1466 | ironing_speed = 15 1467 | ironing_type = top 1468 | layer_height = 0.3 1469 | max_print_speed = 300 1470 | max_volumetric_extrusion_rate_slope_negative = 0 1471 | max_volumetric_extrusion_rate_slope_positive = 0 1472 | max_volumetric_speed = 0 1473 | min_bead_width = 85% 1474 | min_feature_size = 25% 1475 | min_skirt_length = 4 1476 | mmu_segmented_region_max_width = 0 1477 | notes = 1478 | only_retract_when_crossing_perimeters = 0 1479 | ooze_prevention = 0 1480 | output_filename_format = {input_filename_base}_{layer_height}mm_{printing_filament_types}_{printer_model}.gcode 1481 | overhang_speed_0 = 15 1482 | overhang_speed_1 = 15 1483 | overhang_speed_2 = 20 1484 | overhang_speed_3 = 25 1485 | overhangs = 1 1486 | perimeter_acceleration = 500 1487 | perimeter_extruder = 1 1488 | perimeter_extrusion_width = 0.45 1489 | perimeter_generator = arachne 1490 | perimeter_speed = 250 1491 | perimeters = 3 1492 | post_process = 1493 | print_settings_id = 1494 | raft_contact_distance = 0.3 1495 | raft_expansion = 1.5 1496 | raft_first_layer_density = 80% 1497 | raft_first_layer_expansion = 3 1498 | raft_layers = 0 1499 | resolution = 0 1500 | seam_position = aligned 1501 | single_extruder_multi_material_priming = 0 1502 | skirt_distance = 3 1503 | skirt_height = 1 1504 | skirts = 2 1505 | slice_closing_radius = 0.049 1506 | slicing_mode = regular 1507 | small_perimeter_speed = 40% 1508 | solid_infill_acceleration = 0 1509 | solid_infill_below_area = 0 1510 | solid_infill_every_layers = 0 1511 | solid_infill_extruder = 1 1512 | solid_infill_extrusion_width = 0.45 1513 | solid_infill_speed = 80% 1514 | spiral_vase = 0 1515 | staggered_inner_seams = 0 1516 | standby_temperature_delta = -5 1517 | support_material = 0 1518 | support_material_angle = 0 1519 | support_material_auto = 1 1520 | support_material_bottom_contact_distance = 0 1521 | support_material_bottom_interface_layers = -1 1522 | support_material_buildplate_only = 0 1523 | support_material_closing_radius = 2 1524 | support_material_contact_distance = 0.3 1525 | support_material_enforce_layers = 0 1526 | support_material_extruder = 1 1527 | support_material_extrusion_width = 0.36 1528 | support_material_interface_contact_loops = 0 1529 | support_material_interface_extruder = 1 1530 | support_material_interface_layers = 2 1531 | support_material_interface_pattern = rectilinear 1532 | support_material_interface_spacing = 0.2 1533 | support_material_interface_speed = 100% 1534 | support_material_pattern = rectilinear 1535 | support_material_spacing = 2.5 1536 | support_material_speed = 125 1537 | support_material_style = organic 1538 | support_material_synchronize_layers = 0 1539 | support_material_threshold = 40 1540 | support_material_with_sheath = 0 1541 | support_material_xy_spacing = 65% 1542 | support_tree_angle = 30 1543 | support_tree_angle_slow = 10 1544 | support_tree_branch_diameter = 3 1545 | support_tree_branch_diameter_angle = 5 1546 | support_tree_branch_diameter_double_wall = 3 1547 | support_tree_branch_distance = 1 1548 | support_tree_tip_diameter = 0.8 1549 | support_tree_top_rate = 45% 1550 | thick_bridges = 0 1551 | thin_walls = 0 1552 | threads = 16 1553 | top_fill_pattern = monotoniclines 1554 | top_infill_extrusion_width = 0.4 1555 | top_solid_infill_acceleration = 2500 1556 | top_solid_infill_speed = 60% 1557 | top_solid_layers = 3 1558 | top_solid_min_thickness = 0.7 1559 | travel_acceleration = 2500 1560 | travel_speed = 300 1561 | travel_speed_z = 50 1562 | wall_distribution_count = 1 1563 | wall_transition_angle = 10 1564 | wall_transition_filter_deviation = 25% 1565 | wall_transition_length = 100% 1566 | wipe_tower = 0 1567 | wipe_tower_bridging = 10 1568 | wipe_tower_brim_width = 2 1569 | wipe_tower_cone_angle = 0 1570 | wipe_tower_extra_spacing = 100% 1571 | wipe_tower_extruder = 0 1572 | wipe_tower_no_sparse_layers = 0 1573 | wipe_tower_rotation_angle = 0 1574 | wipe_tower_width = 60 1575 | wipe_tower_x = 180 1576 | wipe_tower_y = 140 1577 | xy_size_compensation = 0 1578 | 1579 | [filament:Generic ABS @AMCE] 1580 | bed_temperature = 90 1581 | bridge_fan_speed = 25 1582 | compatible_printers = 1583 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 1584 | compatible_prints = 1585 | compatible_prints_condition = 1586 | cooling = 0 1587 | disable_fan_first_layers = 3 1588 | enable_dynamic_fan_speeds = 0 1589 | end_filament_gcode = "; Filament-specific end gcode \n;END gcode for filament\n" 1590 | extrusion_multiplier = 0.97 1591 | fan_always_on = 1 1592 | fan_below_layer_time = 60 1593 | filament_colour = #ed2f21 1594 | filament_cooling_final_speed = 3.4 1595 | filament_cooling_initial_speed = 2.2 1596 | filament_cooling_moves = 4 1597 | filament_cost = 0 1598 | filament_density = 1.04 1599 | filament_deretract_speed = nil 1600 | filament_diameter = 1.75 1601 | filament_load_time = 0 1602 | filament_loading_speed = 28 1603 | filament_loading_speed_start = 3 1604 | filament_max_volumetric_speed = 11 1605 | filament_minimal_purge_on_wipe_tower = 15 1606 | filament_notes = "" 1607 | filament_ramming_parameters = "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" 1608 | filament_retract_before_travel = nil 1609 | filament_retract_before_wipe = nil 1610 | filament_retract_layer_change = nil 1611 | filament_retract_length = nil 1612 | filament_retract_lift = nil 1613 | filament_retract_lift_above = nil 1614 | filament_retract_lift_below = nil 1615 | filament_retract_restart_extra = nil 1616 | filament_retract_speed = nil 1617 | filament_settings_id = "" 1618 | filament_soluble = 0 1619 | filament_spool_weight = 0 1620 | filament_toolchange_delay = 0 1621 | filament_type = ABS 1622 | filament_unload_time = 0 1623 | filament_unloading_speed = 90 1624 | filament_unloading_speed_start = 100 1625 | filament_vendor = Generic 1626 | filament_wipe = nil 1627 | first_layer_bed_temperature = 90 1628 | first_layer_temperature = 240 1629 | full_fan_speed_layer = 0 1630 | idle_temperature = nil 1631 | max_fan_speed = 30 1632 | min_fan_speed = 20 1633 | min_print_speed = 10 1634 | overhang_fan_speed_0 = 0 1635 | overhang_fan_speed_1 = 0 1636 | overhang_fan_speed_2 = 0 1637 | overhang_fan_speed_3 = 0 1638 | slowdown_below_layer_time = 5 1639 | start_filament_gcode = "; Filament gcode\n" 1640 | temperature = 240 1641 | 1642 | [filament:Generic PETG @AMCE] 1643 | bed_temperature = 80 1644 | bridge_fan_speed = 50 1645 | compatible_printers = 1646 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 1647 | compatible_prints = 1648 | compatible_prints_condition = 1649 | cooling = 0 1650 | disable_fan_first_layers = 3 1651 | enable_dynamic_fan_speeds = 0 1652 | end_filament_gcode = "; Filament-specific end gcode \n;END gcode for filament\n" 1653 | extrusion_multiplier = 0.97 1654 | fan_always_on = 1 1655 | fan_below_layer_time = 60 1656 | filament_colour = #51a8f5 1657 | filament_cooling_final_speed = 3.4 1658 | filament_cooling_initial_speed = 2.2 1659 | filament_cooling_moves = 4 1660 | filament_cost = 0 1661 | filament_density = 1.27 1662 | filament_deretract_speed = 60 1663 | filament_diameter = 1.75 1664 | filament_load_time = 0 1665 | filament_loading_speed = 28 1666 | filament_loading_speed_start = 3 1667 | filament_max_volumetric_speed = 8 1668 | filament_minimal_purge_on_wipe_tower = 15 1669 | filament_notes = "" 1670 | filament_ramming_parameters = "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" 1671 | filament_retract_before_travel = nil 1672 | filament_retract_before_wipe = 100% 1673 | filament_retract_layer_change = 1 1674 | filament_retract_length = 2.5 1675 | filament_retract_lift = nil 1676 | filament_retract_lift_above = nil 1677 | filament_retract_lift_below = nil 1678 | filament_retract_restart_extra = nil 1679 | filament_retract_speed = 20 1680 | filament_settings_id = "" 1681 | filament_soluble = 0 1682 | filament_spool_weight = 0 1683 | filament_toolchange_delay = 0 1684 | filament_type = PETG 1685 | filament_unload_time = 0 1686 | filament_unloading_speed = 90 1687 | filament_unloading_speed_start = 100 1688 | filament_vendor = Generic 1689 | filament_wipe = 1 1690 | first_layer_bed_temperature = 80 1691 | first_layer_temperature = 240 1692 | full_fan_speed_layer = 3 1693 | idle_temperature = nil 1694 | max_fan_speed = 50 1695 | min_fan_speed = 30 1696 | min_print_speed = 10 1697 | overhang_fan_speed_0 = 0 1698 | overhang_fan_speed_1 = 0 1699 | overhang_fan_speed_2 = 0 1700 | overhang_fan_speed_3 = 0 1701 | slowdown_below_layer_time = 5 1702 | start_filament_gcode = "; Filament gcode\n" 1703 | temperature = 240 1704 | 1705 | [filament:Generic PLA-PLA+ @AMCE] 1706 | bed_temperature = 60 1707 | bridge_fan_speed = 100 1708 | compatible_printers = 1709 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 1710 | compatible_prints = 1711 | compatible_prints_condition = 1712 | cooling = 0 1713 | disable_fan_first_layers = 1 1714 | enable_dynamic_fan_speeds = 0 1715 | end_filament_gcode = "; Filament-specific end gcode \n;END gcode for filament\n" 1716 | extrusion_multiplier = 0.97 1717 | fan_always_on = 1 1718 | fan_below_layer_time = 60 1719 | filament_colour = #f2e34c 1720 | filament_cooling_final_speed = 3.4 1721 | filament_cooling_initial_speed = 2.2 1722 | filament_cooling_moves = 4 1723 | filament_cost = 0 1724 | filament_density = 1.24 1725 | filament_deretract_speed = nil 1726 | filament_diameter = 1.75 1727 | filament_load_time = 0 1728 | filament_loading_speed = 28 1729 | filament_loading_speed_start = 3 1730 | filament_max_volumetric_speed = 15 1731 | filament_minimal_purge_on_wipe_tower = 15 1732 | filament_notes = "" 1733 | filament_ramming_parameters = "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" 1734 | filament_retract_before_travel = nil 1735 | filament_retract_before_wipe = nil 1736 | filament_retract_layer_change = nil 1737 | filament_retract_length = nil 1738 | filament_retract_lift = nil 1739 | filament_retract_lift_above = nil 1740 | filament_retract_lift_below = nil 1741 | filament_retract_restart_extra = nil 1742 | filament_retract_speed = nil 1743 | filament_settings_id = "" 1744 | filament_soluble = 0 1745 | filament_spool_weight = 0 1746 | filament_toolchange_delay = 0 1747 | filament_type = PLA 1748 | filament_unload_time = 0 1749 | filament_unloading_speed = 90 1750 | filament_unloading_speed_start = 100 1751 | filament_vendor = Generic 1752 | filament_wipe = nil 1753 | first_layer_bed_temperature = 60 1754 | first_layer_temperature = 215 1755 | full_fan_speed_layer = 0 1756 | idle_temperature = nil 1757 | max_fan_speed = 100 1758 | min_fan_speed = 100 1759 | min_print_speed = 10 1760 | overhang_fan_speed_0 = 0 1761 | overhang_fan_speed_1 = 0 1762 | overhang_fan_speed_2 = 0 1763 | overhang_fan_speed_3 = 0 1764 | slowdown_below_layer_time = 5 1765 | start_filament_gcode = "; Filament gcode\n" 1766 | temperature = 215 1767 | 1768 | [filament:Generic TPU 95A @AMCE] 1769 | bed_temperature = 30 1770 | bridge_fan_speed = 50 1771 | compatible_printers = 1772 | compatible_printers_condition = printer_model=~/(M5C?-CE).*/ 1773 | compatible_prints = 1774 | compatible_prints_condition = 1775 | cooling = 0 1776 | disable_fan_first_layers = 3 1777 | enable_dynamic_fan_speeds = 0 1778 | end_filament_gcode = "; Filament-specific end gcode \n;END gcode for filament\n" 1779 | extrusion_multiplier = 1.03 1780 | fan_always_on = 1 1781 | fan_below_layer_time = 60 1782 | filament_colour = #8000FF 1783 | filament_cooling_final_speed = 3.4 1784 | filament_cooling_initial_speed = 2.2 1785 | filament_cooling_moves = 4 1786 | filament_cost = 0 1787 | filament_density = 1.24 1788 | filament_deretract_speed = 50 1789 | filament_diameter = 1.75 1790 | filament_load_time = 0 1791 | filament_loading_speed = 28 1792 | filament_loading_speed_start = 3 1793 | filament_max_volumetric_speed = 1.8 1794 | filament_minimal_purge_on_wipe_tower = 15 1795 | filament_notes = "" 1796 | filament_ramming_parameters = "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" 1797 | filament_retract_before_travel = nil 1798 | filament_retract_before_wipe = 100% 1799 | filament_retract_layer_change = 1 1800 | filament_retract_length = 3.5 1801 | filament_retract_lift = nil 1802 | filament_retract_lift_above = nil 1803 | filament_retract_lift_below = nil 1804 | filament_retract_restart_extra = nil 1805 | filament_retract_speed = 90 1806 | filament_settings_id = "" 1807 | filament_soluble = 0 1808 | filament_spool_weight = 0 1809 | filament_toolchange_delay = 0 1810 | filament_type = TPU 1811 | filament_unload_time = 0 1812 | filament_unloading_speed = 90 1813 | filament_unloading_speed_start = 100 1814 | filament_vendor = Generic 1815 | filament_wipe = 1 1816 | first_layer_bed_temperature = 30 1817 | first_layer_temperature = 225 1818 | full_fan_speed_layer = 3 1819 | idle_temperature = nil 1820 | max_fan_speed = 80 1821 | min_fan_speed = 30 1822 | min_print_speed = 10 1823 | overhang_fan_speed_0 = 0 1824 | overhang_fan_speed_1 = 0 1825 | overhang_fan_speed_2 = 0 1826 | overhang_fan_speed_3 = 0 1827 | slowdown_below_layer_time = 5 1828 | start_filament_gcode = "; Filament gcode\n" 1829 | temperature = 225 1830 | 1831 | [printer:AnkerMake M5 (0.4 mm nozzle) -AMCE] 1832 | autoemit_temperature_commands = 1 1833 | bed_custom_model = 1834 | bed_custom_texture = 1835 | bed_shape = 0x0,235x0,235x235,0x235 1836 | before_layer_gcode = 1837 | between_objects_gcode = 1838 | color_change_gcode = ;COLOR CHANGE (by Lukagra)\nG91\nG1 Z10 F600\nG90\nM600\nG91\nG1 E-3 F1200\nG1 Z-10 F600\nG90 1839 | cooling_tube_length = 5 1840 | cooling_tube_retraction = 91.5 1841 | default_filament_profile = "Generic PLA-PLA+ @AMCE" 1842 | default_print_profile = 1843 | deretract_speed = 0 1844 | end_gcode = M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM18 1845 | extra_loading_move = -2 1846 | extruder_colour = "" 1847 | extruder_offset = 0x0 1848 | gcode_flavor = marlin2 1849 | high_current_on_filament_swap = 0 1850 | layer_gcode = 1851 | machine_limits_usage = time_estimate_only 1852 | machine_max_acceleration_e = 4000 1853 | machine_max_acceleration_extruding = 6000 1854 | machine_max_acceleration_retracting = 6000 1855 | machine_max_acceleration_travel = 6000 1856 | machine_max_acceleration_x = 6000 1857 | machine_max_acceleration_y = 6000 1858 | machine_max_acceleration_z = 100 1859 | machine_max_feedrate_e = 50 1860 | machine_max_feedrate_x = 600 1861 | machine_max_feedrate_y = 600 1862 | machine_max_feedrate_z = 80 1863 | machine_max_jerk_e = 3 1864 | machine_max_jerk_x = 8 1865 | machine_max_jerk_y = 8 1866 | machine_max_jerk_z = 0.3 1867 | machine_min_extruding_rate = 0 1868 | machine_min_travel_rate = 0 1869 | max_layer_height = 0.32 1870 | max_print_height = 250 1871 | min_layer_height = 0.05 1872 | nozzle_diameter = 0.4 1873 | parking_pos_retraction = 92 1874 | pause_print_gcode = M601 1875 | print_host = 1876 | printer_model = M5-CE 1877 | printer_notes = 1878 | printer_settings_id = 1879 | printer_technology = FFF 1880 | printer_variant = 0.4 1881 | printer_vendor = 1882 | printhost_apikey = 1883 | printhost_cafile = 1884 | remaining_times = 0 1885 | retract_before_travel = 3 1886 | retract_before_wipe = 0% 1887 | retract_layer_change = 0 1888 | retract_length = 1.5 1889 | retract_length_toolchange = 10 1890 | retract_lift = 0 1891 | retract_lift_above = 0 1892 | retract_lift_below = 0 1893 | retract_restart_extra = 0 1894 | retract_restart_extra_toolchange = 0 1895 | retract_speed = 60 1896 | silent_mode = 0 1897 | single_extruder_multi_material = 0 1898 | start_gcode = M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 S150 ; Set hotend temp to 150 degrees to prevent ooze\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home 1899 | template_custom_gcode = 1900 | thumbnails = 128x128 1901 | thumbnails_format = PNG 1902 | toolchange_gcode = 1903 | use_firmware_retraction = 0 1904 | use_relative_e_distances = 0 1905 | use_volumetric_e = 0 1906 | variable_layer_height = 1 1907 | wipe = 0 1908 | z_offset = 0 1909 | 1910 | [printer:AnkerMake M5C (0.4mm nozzle) -AMCE] 1911 | autoemit_temperature_commands = 1 1912 | bed_custom_model = 1913 | bed_custom_texture = 1914 | bed_shape = 0x0,220x0,220x220,0x220 1915 | before_layer_gcode = 1916 | between_objects_gcode = 1917 | color_change_gcode = ;COLOR CHANGE (by Lukagra)\nG91\nG1 Z10 F600\nG90\nM600\nG91\nG1 E-3 F1200\nG1 Z-10 F600\nG90 1918 | cooling_tube_length = 5 1919 | cooling_tube_retraction = 91.5 1920 | default_filament_profile = "Generic PLA-PLA+ @AMCE" 1921 | default_print_profile = "0.20mm NORMAL @AMCE" 1922 | deretract_speed = 0 1923 | end_gcode = M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM18 1924 | extra_loading_move = -2 1925 | extruder_colour = "" 1926 | extruder_offset = 0x0 1927 | gcode_flavor = marlin2 1928 | high_current_on_filament_swap = 0 1929 | layer_gcode = 1930 | machine_limits_usage = time_estimate_only 1931 | machine_max_acceleration_e = 4000 1932 | machine_max_acceleration_extruding = 6000 1933 | machine_max_acceleration_retracting = 6000 1934 | machine_max_acceleration_travel = 6000 1935 | machine_max_acceleration_x = 6000 1936 | machine_max_acceleration_y = 6000 1937 | machine_max_acceleration_z = 100 1938 | machine_max_feedrate_e = 50 1939 | machine_max_feedrate_x = 600 1940 | machine_max_feedrate_y = 600 1941 | machine_max_feedrate_z = 80 1942 | machine_max_jerk_e = 3 1943 | machine_max_jerk_x = 8 1944 | machine_max_jerk_y = 8 1945 | machine_max_jerk_z = 0.3 1946 | machine_min_extruding_rate = 0 1947 | machine_min_travel_rate = 0 1948 | max_layer_height = 0.32 1949 | max_print_height = 250 1950 | min_layer_height = 0.05 1951 | nozzle_diameter = 0.4 1952 | parking_pos_retraction = 92 1953 | pause_print_gcode = M601 1954 | print_host = 1955 | printer_model = M5C-CE 1956 | printer_notes = 1957 | printer_settings_id = 1958 | printer_technology = FFF 1959 | printer_variant = 0.4 1960 | printer_vendor = 1961 | printhost_apikey = 1962 | printhost_cafile = 1963 | remaining_times = 0 1964 | retract_before_travel = 3 1965 | retract_before_wipe = 0% 1966 | retract_layer_change = 0 1967 | retract_length = 0.8 1968 | retract_length_toolchange = 10 1969 | retract_lift = 0 1970 | retract_lift_above = 0 1971 | retract_lift_below = 0 1972 | retract_restart_extra = 0 1973 | retract_restart_extra_toolchange = 0 1974 | retract_speed = 60 1975 | silent_mode = 0 1976 | single_extruder_multi_material = 0 1977 | start_gcode = M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 S150 ; Set hotend temp to 150 degrees to prevent ooze\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home 1978 | template_custom_gcode = 1979 | thumbnails = 128x128 1980 | thumbnails_format = PNG 1981 | toolchange_gcode = 1982 | use_firmware_retraction = 0 1983 | use_relative_e_distances = 0 1984 | use_volumetric_e = 0 1985 | variable_layer_height = 1 1986 | wipe = 0 1987 | z_offset = 0 1988 | 1989 | [presets] 1990 | print = 0.20mm NORMAL @AMCE 1991 | sla_print = 1992 | sla_material = 1993 | printer = AnkerMake-CE M5 (0.4mm nozzle) @AMCE 1994 | filament = Generic PLA-PLA+ @AMCE 1995 | --------------------------------------------------------------------------------