diff --git a/.clang-format b/.clang-format index 6376be4d75..dea9ac29cd 100644 --- a/.clang-format +++ b/.clang-format @@ -5,7 +5,7 @@ Language: Cpp AccessModifierOffset: -4 AlignAfterOpenBracket: Align AlignConsecutiveAssignments: true -AlignConsecutiveDeclarations: true +AlignConsecutiveDeclarations: false AlignEscapedNewlines: DontAlign AlignOperands: true AlignTrailingComments: true diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index c21e7778ca..1b3ba3f407 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -11,6 +11,15 @@ body: For this, please use the [Feature request](https://github.com/OrcaSlicer/OrcaSlicer/issues/new?assignees=&labels=&projects=&template=feature_request.yml) issue type or you can discuss your idea on our [Discord server](https://discord.gg/P4VE9UY9gJ) with others. Before filing, please check if the issue already exists (either open or closed) by using the search bar on the issues page. If it does, comment there. Even if it's closed, we can reopen it based on your comment. + - type: checkboxes + attributes: + label: Is this issue reproducible in the latest nightly build? + description: > + Please verify this issue still happens in the latest nightly build first. It may already be fixed there: + [Nightly builds](https://github.com/OrcaSlicer/OrcaSlicer/releases/tag/nightly-builds). + options: + - label: I have checked the latest nightly build and the issue is still reproducible + required: true - type: checkboxes attributes: label: Is there an existing issue for this problem? diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 65e3a5ff9f..575b8f17fe 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -19,3 +19,9 @@ + + + +[How to Download Pull Requests Artifacts for Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts) diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index 9f6a61025a..7ccb52b0e6 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -286,9 +286,10 @@ jobs: - name: Build slicer Win if: runner.os == 'Windows' working-directory: ${{ github.workspace }} - env: - WindowsSdkDir: 'C:\Program Files (x86)\Windows Kits\10\' - WindowsSDKVersion: '10.0.26100.0\' + # Orca: Removed Netfabb STL fixing service support in favor of CGAL. + # env: + # WindowsSdkDir: 'C:\Program Files (x86)\Windows Kits\10\' + # WindowsSDKVersion: '10.0.26100.0\' run: .\build_release_vs.bat slicer - name: Create installer Win @@ -399,6 +400,16 @@ jobs: retention-days: 5 if-no-files-found: error + - name: Run external slicer regression tests + if: runner.os == 'Linux' + timeout-minutes: 20 + shell: bash + run: | + test_repo_dir="${{ runner.temp }}/orca-test-repo" + rm -rf "$test_repo_dir" + git clone --depth 1 https://github.com/OrcaSlicer/orca-test-repo.git "$test_repo_dir" + python3 "$test_repo_dir/run_test.py" "${{ github.workspace }}/build/package/bin/orca-slicer" + - name: Build orca_custom_preset_tests if: github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED working-directory: ${{ github.workspace }}/build/src/Release diff --git a/.github/workflows/check_profiles.yml b/.github/workflows/check_profiles.yml index 35592ec5a4..d24e27ac89 100644 --- a/.github/workflows/check_profiles.yml +++ b/.github/workflows/check_profiles.yml @@ -34,6 +34,46 @@ jobs: python3 ./scripts/orca_extra_profile_check.py 2>&1 | tee ${{ runner.temp }}/extra_json_check.log exit ${PIPESTATUS[0]} + - name: Check profile indentation + id: indentation_check + continue-on-error: true + run: | + set +e + python3 - <<'PY' 2>&1 | tee ${{ runner.temp }}/indentation_check.log + import re + from pathlib import Path + import sys + + profiles_root = Path("resources/profiles") + invalid_files = [] + + for file_path in sorted(profiles_root.rglob("*.json")): + try: + for line_number, line in enumerate(file_path.read_text(encoding="utf-8").splitlines(), start=1): + if not line.strip(): + continue + leading_ws = re.match(r"^[ \t]*", line).group(0) + if " " in leading_ws: + invalid_files.append((file_path, line_number)) + break + except Exception as exc: + print(f"[ERROR] Unable to read {file_path}: {exc}") + invalid_files.append((file_path, 0)) + + if invalid_files: + for path, line in invalid_files: + if line > 0: + print(f"[ERROR] Space indentation found in {path}:{line}") + else: + print(f"[ERROR] Could not validate indentation in {path}") + print("Use tab indentation in profile JSON files (1 tab per indentation level).") + print("Tip: run python3 ./scripts/orca_filament_lib.py --fix --force to normalize formatting.") + sys.exit(1) + + print("All profile JSON files use tab-only indentation.") + PY + exit ${PIPESTATUS[0]} + # download - name: Download working-directory: ${{ github.workspace }} @@ -62,7 +102,7 @@ jobs: exit ${PIPESTATUS[0]} - name: Prepare comment artifact - if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} + if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.indentation_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} run: | mkdir -p ${{ runner.temp }}/profile-check-results @@ -79,6 +119,15 @@ jobs: echo "" fi + if [ "${{ steps.indentation_check.outcome }}" = "failure" ]; then + echo "### Indentation Check Failed" + echo "" + echo '```' + head -c 30000 ${{ runner.temp }}/indentation_check.log || echo "No output captured" + echo '```' + echo "" + fi + if [ "${{ steps.validate_system.outcome }}" = "failure" ]; then echo "### System Profile Validation Failed" echo "" @@ -104,7 +153,7 @@ jobs: echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt - name: Upload comment artifact - if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} + if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.indentation_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} uses: actions/upload-artifact@v7 with: name: profile-check-results @@ -112,7 +161,7 @@ jobs: retention-days: 1 - name: Fail if any check failed - if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} + if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.indentation_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} run: | echo "One or more profile checks failed. See above for details." exit 1 diff --git a/.github/workflows/pr-label-bot.yml b/.github/workflows/pr-label-bot.yml index d3afa15551..bbe1ac3472 100644 --- a/.github/workflows/pr-label-bot.yml +++ b/.github/workflows/pr-label-bot.yml @@ -16,7 +16,7 @@ permissions: jobs: request-label: - if: github.event_name == 'pull_request_target' + if: github.event_name == 'pull_request_target' && github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'OWNER' && github.event.pull_request.author_association != 'MEMBER' permissions: contents: read pull-requests: write diff --git a/AGENTS.md b/AGENTS.md index 5446ab270e..e1a230c3e3 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,23 +1,48 @@ -# Repository Guidelines +# CLAUDE.md -## Project Structure & Module Organization -OrcaSlicer’s C++17 sources live in `src/`, split by feature modules and platform adapters. User assets, icons, and printer presets are in `resources/`; translations stay in `localization/`. Tests sit in `tests/`, grouped by domain (`libslic3r/`, `sla_print/`, etc.) with fixtures under `tests/data/`. CMake helpers reside in `cmake/`, and longer references in `doc/` and `SoftFever_doc/`. Automation scripts belong in `scripts/` and `tools/`. Treat everything in `deps/` and `deps_src/` as vendored snapshots—do not modify without mirroring upstream tags. +OrcaSlicer — open-source C++17 3D slicer. wxWidgets GUI, CMake build system. -## Build, Test, and Development Commands -Use out-of-source builds: -- `cmake -S . -B build -DCMAKE_BUILD_TYPE=Release` configures dependencies and generates build files. -- `cmake --build build --target OrcaSlicer --config Release` compiles the app; add `--parallel` to speed up. -- `cmake --build build --target tests` then `ctest --test-dir build --output-on-failure` runs automated suites. -Platform helpers such as `build_linux.sh`, `build_release_macos.sh`, and `build_release_vs2022.bat` wrap the same flow with toolchain flags. Use `build_release_macos.sh -sx` when reproducing macOS build issues, and `scripts/DockerBuild.sh` for reproducible container builds. +## Build Commands -## Coding Style & Naming Conventions -`.clang-format` enforces 4-space indents, a 140-column limit, aligned initializers, and brace wrapping for classes and functions. Run `clang-format -i ` before committing; the CMake `clang-format` target is available when LLVM tools are on your PATH. Prefer `CamelCase` for classes, `snake_case` for functions and locals, and `SCREAMING_CASE` for constants, matching conventions in `src/`. Keep headers self-contained and align include order with the IWYU pragmas. +```bash +# macOS +cmake --build build/arm64 --config RelWithDebInfo --target all -- -## Testing Guidelines -Unit tests rely on Catch2 (`tests/catch2/`). Name specs after the component under test—for example `tests/libslic3r/TestPlanarHole.cpp`—and tag long-running cases so `ctest -L fast` remains useful. Cover new algorithms with deterministic fixtures or sample G-code stored in `tests/data/`. Document manual printer validation or regression slicer checks in your PR when automated coverage is insufficient. +# Linux +cmake --build build --config RelWithDebInfo --target all -- -## Commit & Pull Request Guidelines -The history favors concise, sentence-style subject lines with optional issue references, e.g., `Fix grid lines origin for multiple plates (#10724)`. Squash fixups locally before opening a PR. Complete `.github/pull_request_template.md`, include reproduction steps or screenshots for UI changes, and mention impacted presets or translations. Link issues via `Closes #NNNN` when applicable, and call out dependency bumps or profile migrations for maintainer review. +# Windows (replace %build_type% with Debug/Release/RelWithDebInfo) +cmake --build . --config %build_type% --target ALL_BUILD -- -m +``` -## Security & Configuration Tips -Follow `SECURITY.md` for vulnerability reporting. Keep API tokens and printer credentials out of tracked configs; use `sandboxes/` for experimental settings. When touching third-party code in `deps_src/`, record the upstream commit or release in your PR description and run the relevant platform build script to confirm integration. +## Testing + +Catch2 framework. Tests in `tests/` directory. + +```bash +cd build && ctest --output-on-failure # all tests +ctest --test-dir ./tests/libslic3r # individual suite +ctest --test-dir ./tests/fff_print +``` + +## Code Style + +- C++17, selective C++20. PascalCase classes, snake_case functions/variables +- `#pragma once` for headers. Smart pointers and RAII preferred +- Parallelization via TBB — be mindful of shared state + +## Key Entry Points + +- App startup: `src/OrcaSlicer.cpp` +- Slicing pipeline: `src/libslic3r/Print.cpp` +- All print/printer/material settings: `src/libslic3r/PrintConfig.cpp` +- GUI: `src/slic3r/GUI/` +- Core algorithms: `src/libslic3r/` (GCode/, Fill/, Support/, Geometry/, Format/, Arachne/) +- Printer profiles: `resources/profiles/[manufacturer].json` + +## Critical Constraints + +- **Backward compatibility required** for .3mf project files and printer profiles +- **Cross-platform** — all changes must work on Windows, macOS, and Linux +- Profile/format changes need version migration handling +- Dependencies built separately in `deps/build/`, then linked to main app diff --git a/CLAUDE.md b/CLAUDE.md index 25aa516a56..eef4bd20cf 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,234 +1 @@ -# CLAUDE.md - -This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. - -## Overview - -OrcaSlicer is an open-source 3D slicer application forked from Bambu Studio, built using C++ with wxWidgets for the GUI and CMake as the build system. The project uses a modular architecture with separate libraries for core slicing functionality, GUI components, and platform-specific code. - -## Build Commands - -### Building on Windows -**Always use this command to build the project when testing build issues on Windows.** -```bash -cmake --build . --config %build_type% --target ALL_BUILD -- -m -``` - -### Building on macOS -**Always use this command to build the project when testing build issues on macOS.** -```bash -cmake --build build/arm64 --config RelWithDebInfo --target all -- -``` - -### Building on Linux - **Always use this command to build the project when testing build issues on Linux.** -```bash -cmake --build build/arm64 --config RelWithDebInfo --target all -- - -``` -### Build test: - -**Always use this command to build the project when testing build issues on Windows.** -```bash -cmake --build . --config %build_type% --target ALL_BUILD -- -m -``` - -### Building on macOS -**Always use this command to build the project when testing build issues on macOS.** -```bash -cmake --build build/arm64 --config RelWithDebInfo --target all -- -``` - -### Building on Linux - **Always use this command to build the project when testing build issues on Linux.** -```bash -cmake --build build --config RelWithDebInfo --target all -- - -``` - - -### Build System -- Uses CMake with minimum version 3.13 (maximum 3.31.x on Windows) -- Primary build directory: `build/` -- Dependencies are built in `deps/build/` -- The build process is split into dependency building and main application building -- Windows builds use Visual Studio generators -- macOS builds use Xcode by default, Ninja with -x flag -- Linux builds use Ninja generator - -### Testing -Tests are located in the `tests/` directory and use the Catch2 testing framework. Test structure: -- `tests/libslic3r/` - Core library tests (21 test files) - - Geometry processing, algorithms, file formats (STL, 3MF, AMF) - - Polygon operations, clipper utilities, Voronoi diagrams -- `tests/fff_print/` - Fused Filament Fabrication tests (12 test files) - - Slicing algorithms, G-code generation, print mechanics - - Fill patterns, extrusion, support material -- `tests/sla_print/` - Stereolithography tests (4 test files) - - SLA-specific printing algorithms, support generation -- `tests/libnest2d/` - 2D nesting algorithm tests -- `tests/slic3rutils/` - Utility function tests -- `tests/sandboxes/` - Experimental/sandbox test code - -Run all tests after building: -```bash -cd build && ctest -``` - -Run tests with verbose output: -```bash -cd build && ctest --output-on-failure -``` - -Run individual test suites: -```bash -# From build directory -ctest --test-dir ./tests/libslic3r/libslic3r_tests -ctest --test-dir ./tests/fff_print/fff_print_tests -ctest --test-dir ./tests/sla_print/sla_print_tests -# and so on -``` - -## Architecture - -### Core Libraries -- **libslic3r/**: Core slicing engine and algorithms (platform-independent) - - Main slicing logic, geometry processing, G-code generation - - Key classes: Print, PrintObject, Layer, GCode, Config - - Modular design with specialized subdirectories: - - `GCode/` - G-code generation, cooling, pressure equalization, thumbnails - - `Fill/` - Infill pattern implementations (gyroid, honeycomb, lightning, etc.) - - `Support/` - Tree supports and traditional support generation - - `Geometry/` - Advanced geometry operations, Voronoi diagrams, medial axis - - `Format/` - File I/O for 3MF, AMF, STL, OBJ, STEP formats - - `SLA/` - SLA-specific print processing and support generation - - `Arachne/` - Advanced wall generation using skeletal trapezoidation - -- **src/slic3r/**: Main application framework and GUI - - GUI application built with wxWidgets - - Integration between libslic3r core and user interface - - Located in `src/slic3r/GUI/` (not shown in this directory but exists) - -### Key Algorithmic Components -- **Arachne Wall Generation**: Variable-width perimeter generation using skeletal trapezoidation -- **Tree Supports**: Organic support generation algorithm -- **Lightning Infill**: Sparse infill optimization for internal structures -- **Adaptive Slicing**: Variable layer height based on geometry -- **Multi-material**: Multi-extruder and soluble support processing -- **G-code Post-processing**: Cooling, fan control, pressure advance, conflict checking - -### File Format Support -- **3MF/BBS_3MF**: Native format with extensions for multi-material and metadata -- **STL**: Standard tessellation language for 3D models -- **AMF**: Additive Manufacturing Format with color/material support -- **OBJ**: Wavefront OBJ with material definitions -- **STEP**: CAD format support for precise geometry -- **G-code**: Output format with extensive post-processing capabilities - -### External Dependencies -- **Clipper2**: Advanced 2D polygon clipping and offsetting -- **libigl**: Computational geometry library for mesh operations -- **TBB**: Intel Threading Building Blocks for parallelization -- **wxWidgets**: Cross-platform GUI framework -- **OpenGL**: 3D graphics rendering and visualization -- **CGAL**: Computational Geometry Algorithms Library (selective use) -- **OpenVDB**: Volumetric data structures for advanced operations -- **Eigen**: Linear algebra library for mathematical operations - -## File Organization - -### Resources and Configuration -- `resources/profiles/` - Printer and material profiles organized by manufacturer -- `resources/printers/` - Printer-specific configurations and G-code templates -- `resources/images/` - UI icons, logos, calibration images -- `resources/calib/` - Calibration test patterns and data -- `resources/handy_models/` - Built-in test models (benchy, calibration cubes) - -### Internationalization and Localization -- `localization/i18n/` - Source translation files (.pot, .po) -- `resources/i18n/` - Runtime language resources -- Translation managed via `scripts/run_gettext.sh` / `scripts/run_gettext.bat` - -### Platform-Specific Code -- `src/libslic3r/Platform.cpp` - Platform abstractions and utilities -- `src/libslic3r/MacUtils.mm` - macOS-specific utilities (Objective-C++) -- Windows-specific build scripts and configurations -- Linux distribution support scripts in `scripts/linux.d/` - -### Build and Development Tools -- `cmake/modules/` - Custom CMake find modules and utilities -- `scripts/` - Python utilities for profile generation and validation -- `tools/` - Windows build tools (gettext utilities) -- `deps/` - External dependency build configurations - -## Development Workflow - -### Code Style and Standards -- **C++17 standard** with selective C++20 features -- **Naming conventions**: PascalCase for classes, snake_case for functions/variables -- **Header guards**: Use `#pragma once` -- **Memory management**: Prefer smart pointers, RAII patterns -- **Thread safety**: Use TBB for parallelization, be mindful of shared state - -### Common Development Tasks - -#### Adding New Print Settings -1. Define setting in `PrintConfig.cpp` with proper bounds and defaults -2. Add UI controls in appropriate GUI components -3. Update serialization in config save/load -4. Add tooltips and help text for user guidance -5. Test with different printer profiles - -#### Modifying Slicing Algorithms -1. Core algorithms live in `libslic3r/` subdirectories -2. Performance-critical code should be profiled and optimized -3. Consider multi-threading implications (TBB integration) -4. Validate changes don't break existing profiles -5. Add regression tests where appropriate - -#### GUI Development -1. GUI code resides in `src/slic3r/GUI/` (not visible in current tree) -2. Use existing wxWidgets patterns and custom controls -3. Support both light and dark themes -4. Consider DPI scaling on high-resolution displays -5. Maintain cross-platform compatibility - -#### Adding Printer Support -1. Create JSON profile in `resources/profiles/[manufacturer].json` -2. Add printer-specific start/end G-code templates -3. Configure build volume, capabilities, and material compatibility -4. Test thoroughly with actual hardware when possible -5. Follow existing profile structure and naming conventions - -### Dependencies and Build System -- **CMake-based** with separate dependency building phase -- **Dependencies** built once in `deps/build/`, then linked to main application -- **Cross-platform** considerations important for all changes -- **Resource files** embedded at build time, platform-specific handling - -### Performance Considerations -- **Slicing algorithms** are CPU-intensive, profile before optimizing -- **Memory usage** can be substantial with complex models -- **Multi-threading** extensively used via TBB -- **File I/O** optimized for large 3MF files with embedded textures -- **Real-time preview** requires efficient mesh processing - -## Important Development Notes - -### Codebase Navigation -- Use search tools extensively - codebase has 500k+ lines -- Key entry points: `src/OrcaSlicer.cpp` for application startup -- Core slicing: `libslic3r/Print.cpp` orchestrates the slicing pipeline -- Configuration: `PrintConfig.cpp` defines all print/printer/material settings - -### Compatibility and Stability -- **Backward compatibility** maintained for project files and profiles -- **Cross-platform** support essential (Windows/macOS/Linux) -- **File format** changes require careful version handling -- **Profile migrations** needed when settings change significantly - -### Quality and Testing -- **Regression testing** important due to algorithm complexity -- **Performance benchmarks** help catch performance regressions -- **Memory leak** detection important for long-running GUI application -- **Cross-platform** testing required before releases +@AGENTS.md \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index bc374f4251..d3ae729277 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -323,43 +323,44 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON) # WIN10SDK_PATH is used to point CMake to the WIN10 SDK installation directory. # We pick it from environment if it is not defined in another way -if(WIN32) - if(NOT DEFINED WIN10SDK_PATH) - if(DEFINED ENV{WIN10SDK_PATH}) - set(WIN10SDK_PATH "$ENV{WIN10SDK_PATH}") - endif() - endif() - if(DEFINED WIN10SDK_PATH) - #BBS: modify win10sdk_path - if (EXISTS "${WIN10SDK_PATH}/winrt/windows.graphics.printing3d.h") - set(WIN10SDK_INCLUDE_PATH "${WIN10SDK_PATH}") - else() - message("WIN10SDK_PATH is invalid: ${WIN10SDK_PATH}") - message("${WIN10SDK_PATH}/winrt/windows.graphics.printing3d.h was not found") - message("STL fixing by the Netfabb service will not be compiled") - unset(WIN10SDK_PATH) - endif() - else() - # Try to use the default Windows 10 SDK path. - if (DEFINED ENV{WindowsSdkDir} AND DEFINED ENV{WindowsSDKVersion}) - set(WIN10SDK_INCLUDE_PATH "$ENV{WindowsSdkDir}/Include/$ENV{WindowsSDKVersion}") - else () - set(WIN10SDK_INCLUDE_PATH "C:/Program Files (x86)/Windows Kits/10/Include/10.0.26100.0") - endif () - if (NOT EXISTS "${WIN10SDK_INCLUDE_PATH}/winrt/windows.graphics.printing3d.h") - message("${WIN10SDK_INCLUDE_PATH}/winrt/windows.graphics.printing3d.h was not found") - message("STL fixing by the Netfabb service will not be compiled") - unset(WIN10SDK_INCLUDE_PATH) - endif() - endif() - if(WIN10SDK_INCLUDE_PATH) - message("Building with Win10 Netfabb STL fixing service support") - add_definitions(-DHAS_WIN10SDK) - include_directories(SYSTEM "${WIN10SDK_INCLUDE_PATH}") - else() - message("Building without Win10 Netfabb STL fixing service support") - endif() -endif() +# ORCA: Removed Netfabb STL fixing service support in favor of CGAL. +# if(WIN32) +# if(NOT DEFINED WIN10SDK_PATH) +# if(DEFINED ENV{WIN10SDK_PATH}) +# set(WIN10SDK_PATH "$ENV{WIN10SDK_PATH}") +# endif() +# endif() +# if(DEFINED WIN10SDK_PATH) +# #BBS: modify win10sdk_path +# if (EXISTS "${WIN10SDK_PATH}/winrt/windows.graphics.printing3d.h") +# set(WIN10SDK_INCLUDE_PATH "${WIN10SDK_PATH}") +# else() +# message("WIN10SDK_PATH is invalid: ${WIN10SDK_PATH}") +# message("${WIN10SDK_PATH}/winrt/windows.graphics.printing3d.h was not found") +# message("STL fixing by the Netfabb service will not be compiled") +# unset(WIN10SDK_PATH) +# endif() +# else() +# # Try to use the default Windows 10 SDK path. +# if (DEFINED ENV{WindowsSdkDir} AND DEFINED ENV{WindowsSDKVersion}) +# set(WIN10SDK_INCLUDE_PATH "$ENV{WindowsSdkDir}/Include/$ENV{WindowsSDKVersion}") +# else () +# set(WIN10SDK_INCLUDE_PATH "C:/Program Files (x86)/Windows Kits/10/Include/10.0.26100.0") +# endif () +# if (NOT EXISTS "${WIN10SDK_INCLUDE_PATH}/winrt/windows.graphics.printing3d.h") +# message("${WIN10SDK_INCLUDE_PATH}/winrt/windows.graphics.printing3d.h was not found") +# message("STL fixing by the Netfabb service will not be compiled") +# unset(WIN10SDK_INCLUDE_PATH) +# endif() +# endif() +# if(WIN10SDK_INCLUDE_PATH) +# message("Building with Win10 Netfabb STL fixing service support") +# add_definitions(-DHAS_WIN10SDK) +# include_directories(SYSTEM "${WIN10SDK_INCLUDE_PATH}") +# else() +# message("Building without Win10 Netfabb STL fixing service support") +# endif() +# endif() if (APPLE) message("OS X SDK Path: ${CMAKE_OSX_SYSROOT}") @@ -784,8 +785,10 @@ function(orcaslicer_copy_dlls target config postfix output_dlls) set(_arch "x64") elseif ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "X86") set(_arch "x86") + elseif ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "ARM64") + set(_arch "arm64") else () - message(FATAL_ERROR "Unable to detect architecture") + message(FATAL_ERROR "Unable to detect architecture: ${CMAKE_SYSTEM_PROCESSOR}") endif () get_property(_is_multi GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) diff --git a/README.md b/README.md index 134a7acb96..ad2d6f6cfc 100644 --- a/README.md +++ b/README.md @@ -137,9 +137,27 @@ winget install --id=SoftFever.OrcaSlicer -e ![mac_security_setting](./SoftFever_doc/mac_security_setting.png) -## Linux (Ubuntu) +## Linux - 1. If you run into trouble executing it, try this command in the terminal: +### Flathub (Recommended) +OrcaSlicer is available through FlatHub: + +Download on Flathub + +Install from the command line: + +```shell +flatpak install flathub com.orcaslicer.OrcaSlicer +flatpak run com.orcaslicer.OrcaSlicer +``` + +It can also be installed through graphical software managers (KDE Discover, GNOME Software, etc.) when Flathub is enabled. Search for **OrcaSlicer** in your software center. + +### AppImage + 1. Download App image from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases). + 2. Double click the downloaded file to run it. + + 3. If you run into trouble executing it, try this command in the terminal: `chmod +x /path_to_appimage/OrcaSlicer_Linux.AppImage` # How to Compile diff --git a/build_linux.sh b/build_linux.sh index b23998b185..98201958f4 100755 --- a/build_linux.sh +++ b/build_linux.sh @@ -504,6 +504,15 @@ if [[ -n "${USE_LLD}" ]] ; then fi fi +# Auto-detect ccache for faster rebuilds +export CMAKE_CCACHE_ARGS=() +if command -v ccache >/dev/null 2>&1 ; then + echo "ccache found at $(command -v ccache), enabling compiler caching..." + export CMAKE_CCACHE_ARGS=(-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache) +else + echo "Note: ccache not found. Install ccache for faster rebuilds." +fi + if [[ -n "${BUILD_DEPS}" ]] ; then echo "Configuring dependencies..." read -r -a BUILD_ARGS <<< "${DEPS_EXTRA_BUILD_ARGS}" @@ -536,7 +545,7 @@ if [[ -n "${BUILD_ORCA}" ]] || [[ -n "${BUILD_TESTS}" ]] ; then BUILD_ARGS+=(-DORCA_UPDATER_SIG_KEY="${ORCA_UPDATER_SIG_KEY}") fi - print_and_run cmake -S . -B $BUILD_DIR "${CMAKE_C_CXX_COMPILER_CLANG[@]}" "${CMAKE_LLD_LINKER_ARGS[@]}" -G "Ninja Multi-Config" \ + print_and_run cmake -S . -B $BUILD_DIR "${CMAKE_C_CXX_COMPILER_CLANG[@]}" "${CMAKE_LLD_LINKER_ARGS[@]}" "${CMAKE_CCACHE_ARGS[@]}" -G "Ninja Multi-Config" \ -DSLIC3R_PCH=${SLIC3R_PRECOMPILED_HEADERS} \ -DORCA_TOOLS=ON \ "${COLORED_OUTPUT}" \ diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index 13bde6b307..be3b560b83 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -265,8 +265,12 @@ if (MSVC) message(STATUS "\nDetected X86 compiler => building X86 deps bundle\n") set(DEPS_ARCH "x86") include("deps-windows.cmake") + elseif ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "ARM64") + message(STATUS "\nDetected ARM64 compiler => building ARM64 deps bundle\n") + set(DEPS_ARCH "arm64") + include("deps-windows.cmake") else () - message(FATAL_ERROR "Unable to detect architecture") + message(FATAL_ERROR "Unable to detect architecture: ${CMAKE_SYSTEM_PROCESSOR}") endif () elseif (APPLE) message("OS X SDK Path: ${CMAKE_OSX_SYSROOT}") diff --git a/deps/deps-windows.cmake b/deps/deps-windows.cmake index cd4dbd150f..6e73f7d4b5 100644 --- a/deps/deps-windows.cmake +++ b/deps/deps-windows.cmake @@ -36,8 +36,10 @@ if ("${DEPS_ARCH}" STREQUAL "x86") set(DEP_PLATFORM "Win32") elseif ("${DEPS_ARCH}" STREQUAL "x64") set(DEP_PLATFORM "x64") +elseif ("${DEPS_ARCH}" STREQUAL "arm64") + set(DEP_PLATFORM "ARM64") else () - message(FATAL_ERROR "Unsupported OS architecture") + message(FATAL_ERROR "Unsupported OS architecture: ${DEPS_ARCH}") endif () if (${DEP_DEBUG}) @@ -64,8 +66,11 @@ if ("${DEPS_ARCH}" STREQUAL "x86") elseif ("${DEPS_ARCH}" STREQUAL "x64") set(DEP_WXWIDGETS_TARGET "TARGET_CPU=X64") set(DEP_WXWIDGETS_LIBDIR "vc_x64_lib") +elseif ("${DEPS_ARCH}" STREQUAL "arm64") + set(DEP_WXWIDGETS_TARGET "TARGET_CPU=ARM64") + set(DEP_WXWIDGETS_LIBDIR "vc_arm64_lib") else () - message(FATAL_ERROR "Unsupported OS architecture") + message(FATAL_ERROR "Unsupported OS architecture: ${DEPS_ARCH}") endif () find_package(Git REQUIRED) diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index bd4afb8adc..33d9dbb407 100644 --- a/localization/i18n/OrcaSlicer.pot +++ b/localization/i18n/OrcaSlicer.pot @@ -162,7 +162,7 @@ msgstr "" msgid "Smart fill angle" msgstr "" -msgid "On overhangs only" +msgid "On highlighted overhangs only" msgstr "" msgid "Auto support threshold angle: " @@ -10183,6 +10183,9 @@ msgstr "" msgid "Switch between Prepare/Preview" msgstr "" +msgid "Toggle printable for object/part" +msgstr "" + msgid "Plater" msgstr "" @@ -12999,6 +13002,18 @@ msgstr "" msgid "Travel speed of the first layer." msgstr "" +msgid "First layer travel acceleration" +msgstr "" + +msgid "Travel acceleration of first layer." +msgstr "" + +msgid "First layer travel jerk" +msgstr "" + +msgid "Travel jerk of first layer." +msgstr "" + msgid "Number of slow layers" msgstr "" @@ -13106,6 +13121,9 @@ msgstr "" msgid "Contour" msgstr "" +msgid "Hole" +msgstr "" + msgid "Contour and hole" msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index a0b0fe6184..768d46bd79 100644 --- a/localization/i18n/ca/OrcaSlicer_ca.po +++ b/localization/i18n/ca/OrcaSlicer_ca.po @@ -177,8 +177,8 @@ msgstr "Tipus d'eina" msgid "Smart fill angle" msgstr "Angle de farciment intel·ligent" -msgid "On overhangs only" -msgstr "Només als voladissos" +msgid "On highlighted overhangs only" +msgstr "Només als voladissos ressaltats" msgid "Auto support threshold angle: " msgstr "Angle llindar de suport automàtic: " @@ -15232,6 +15232,9 @@ msgstr "Només pintat" msgid "Contour" msgstr "Contorn" +msgid "Hole" +msgstr "Forat" + msgid "Contour and hole" msgstr "Contorn i forat" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index 209eedd23d..6755d2502f 100644 --- a/localization/i18n/cs/OrcaSlicer_cs.po +++ b/localization/i18n/cs/OrcaSlicer_cs.po @@ -170,8 +170,8 @@ msgstr "Typ nástroje" msgid "Smart fill angle" msgstr "Úhel chytrého vyplnění" -msgid "On overhangs only" -msgstr "Pouze na převisy" +msgid "On highlighted overhangs only" +msgstr "Pouze na zvýrazněné převisy" msgid "Auto support threshold angle: " msgstr "Automatický prahový úhel podpěr: " @@ -11072,7 +11072,7 @@ msgid "Gizmo assemble" msgstr "Gizmo sestavit" msgid "Gizmo brim ears" -msgstr "Gizmo přídavky okraje (uši)" +msgstr "Gizmo ouška lemu" msgid "Zoom in" msgstr "Přiblížit" @@ -12583,13 +12583,13 @@ msgstr "" "průtokovým poměrem filamentu a případně průtokovým poměrem objektu." msgid "Set other flow ratios" -msgstr "Set other flow ratios" +msgstr "Nastavit další poměry průtoku" msgid "Change flow ratios for other extrusion path types." -msgstr "Change flow ratios for other extrusion path types." +msgstr "Změnit poměry průtoku pro další typy extruzních drah." msgid "First layer flow ratio" -msgstr "First layer flow ratio" +msgstr "Poměr průtoku první vrstvy" msgid "" "This factor affects the amount of material on the first layer for the " @@ -12598,14 +12598,14 @@ msgid "" "For the first layer, the actual flow ratio for each path role (does not " "affect brims and skirts) will be multiplied by this value." msgstr "" -"This factor affects the amount of material on the first layer for the " -"extrusion path roles listed in this section.\n" +"Tento faktor ovlivňuje množství materiálu na první vrstvě pro role extruzních " +"drah uvedené v této sekci.\n" "\n" -"For the first layer, the actual flow ratio for each path role (does not " -"affect brims and skirts) will be multiplied by this value." +"Pro první vrstvu bude skutečný poměr průtoku pro každou roli dráhy (neovlivňuje " +"lem a sukni) vynásoben touto hodnotou." msgid "Outer wall flow ratio" -msgstr "Outer wall flow ratio" +msgstr "Poměr průtoku vnější stěny" msgid "" "This factor affects the amount of material for outer walls.\n" @@ -12613,13 +12613,13 @@ msgid "" "The actual outer wall flow used is calculated by multiplying this value by " "the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for outer walls.\n" +"Tento faktor ovlivňuje množství materiálu pro vnější stěny.\n" "\n" -"The actual outer wall flow used is calculated by multiplying this value by " -"the filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro vnější stěny se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Inner wall flow ratio" -msgstr "Inner wall flow ratio" +msgstr "Poměr průtoku vnitřní stěny" msgid "" "This factor affects the amount of material for inner walls.\n" @@ -12627,13 +12627,13 @@ msgid "" "The actual inner wall flow used is calculated by multiplying this value by " "the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for inner walls.\n" +"Tento faktor ovlivňuje množství materiálu pro vnitřní stěny.\n" "\n" -"The actual inner wall flow used is calculated by multiplying this value by " -"the filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro vnitřní stěny se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Overhang flow ratio" -msgstr "Overhang flow ratio" +msgstr "Poměr průtoku převisů" msgid "" "This factor affects the amount of material for overhangs.\n" @@ -12641,13 +12641,13 @@ msgid "" "The actual overhang flow used is calculated by multiplying this value by the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for overhangs.\n" +"Tento faktor ovlivňuje množství materiálu pro převisy.\n" "\n" -"The actual overhang flow used is calculated by multiplying this value by the " -"filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro převisy se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Sparse infill flow ratio" -msgstr "Sparse infill flow ratio" +msgstr "Poměr průtoku řídké výplně" msgid "" "This factor affects the amount of material for sparse infill.\n" @@ -12655,13 +12655,13 @@ msgid "" "The actual sparse infill flow used is calculated by multiplying this value " "by the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for sparse infill.\n" +"Tento faktor ovlivňuje množství materiálu pro řídkou výplň.\n" "\n" -"The actual sparse infill flow used is calculated by multiplying this value " -"by the filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro řídkou výplň se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Internal solid infill flow ratio" -msgstr "Internal solid infill flow ratio" +msgstr "Poměr průtoku vnitřní plné výplně" msgid "" "This factor affects the amount of material for internal solid infill.\n" @@ -12669,13 +12669,13 @@ msgid "" "The actual internal solid infill flow used is calculated by multiplying this " "value by the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for internal solid infill.\n" +"Tento faktor ovlivňuje množství materiálu pro vnitřní plnou výplň.\n" "\n" -"The actual internal solid infill flow used is calculated by multiplying this " -"value by the filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro vnitřní plnou výplň se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Gap fill flow ratio" -msgstr "Gap fill flow ratio" +msgstr "Poměr průtoku vyplnění mezer" msgid "" "This factor affects the amount of material for filling the gaps.\n" @@ -12683,13 +12683,13 @@ msgid "" "The actual gap filling flow used is calculated by multiplying this value by " "the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for filling the gaps.\n" +"Tento faktor ovlivňuje množství materiálu pro vyplnění mezer.\n" "\n" -"The actual gap filling flow used is calculated by multiplying this value by " -"the filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro vyplnění mezer se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Support flow ratio" -msgstr "Support flow ratio" +msgstr "Poměr průtoku podpěr" msgid "" "This factor affects the amount of material for support.\n" @@ -12697,13 +12697,13 @@ msgid "" "The actual support flow used is calculated by multiplying this value by the " "filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for support.\n" +"Tento faktor ovlivňuje množství materiálu pro podpěry.\n" "\n" -"The actual support flow used is calculated by multiplying this value by the " -"filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro podpěry se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Support interface flow ratio" -msgstr "Support interface flow ratio" +msgstr "Poměr průtoku rozhraní podpěr" msgid "" "This factor affects the amount of material for the support interface.\n" @@ -12711,10 +12711,10 @@ msgid "" "The actual support interface flow used is calculated by multiplying this " "value by the filament flow ratio, and if set, the object's flow ratio." msgstr "" -"This factor affects the amount of material for the support interface.\n" +"Tento faktor ovlivňuje množství materiálu pro rozhraní podpěr.\n" "\n" -"The actual support interface flow used is calculated by multiplying this " -"value by the filament flow ratio, and if set, the object's flow ratio." +"Skutečný průtok pro rozhraní podpěr se vypočítá vynásobením této hodnoty " +"poměrem průtoku filamentu a případně také poměrem průtoku objektu." msgid "Precise wall" msgstr "Přesná stěna" @@ -14821,6 +14821,9 @@ msgstr "Painted only" msgid "Contour" msgstr "Obrys" +msgid "Hole" +msgstr "Otvor" + msgid "Contour and hole" msgstr "Obrys a otvor" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 2a338e7afe..26a85806e3 100644 --- a/localization/i18n/de/OrcaSlicer_de.po +++ b/localization/i18n/de/OrcaSlicer_de.po @@ -172,8 +172,8 @@ msgstr "Werkzeugtyp" msgid "Smart fill angle" msgstr "Intelligenter Füllwinkel" -msgid "On overhangs only" -msgstr "Nur an Überhängen" +msgid "On highlighted overhangs only" +msgstr "Nur an hervorgehobenen Überhängen" msgid "Auto support threshold angle: " msgstr "Winkel für automatische Supports: " @@ -15193,6 +15193,18 @@ msgstr "Bewegung" msgid "Travel speed of the first layer." msgstr "Bewegungsgeschwindigkeit der ersten Schicht" +msgid "First layer travel acceleration" +msgstr "Eilgang Beschleunigung" + +msgid "Travel acceleration of first layer." +msgstr "Eilgang Beschleunigung der ersten Schicht." + +msgid "First layer travel jerk" +msgstr "Eilgang Ruck" + +msgid "Travel jerk of first layer." +msgstr "Eilgang Ruck der ersten Schicht." + msgid "Number of slow layers" msgstr "Anzahl der langsamen Schichten" @@ -15345,6 +15357,9 @@ msgstr "Nur lackiert" msgid "Contour" msgstr "Kontur" +msgid "Hole" +msgstr "Loch" + msgid "Contour and hole" msgstr "Kontur und Loch" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index 3c6b7b9040..1103146ce0 100644 --- a/localization/i18n/en/OrcaSlicer_en.po +++ b/localization/i18n/en/OrcaSlicer_en.po @@ -158,7 +158,7 @@ msgstr "" msgid "Smart fill angle" msgstr "" -msgid "On overhangs only" +msgid "On highlighted overhangs only" msgstr "" msgid "Auto support threshold angle: " @@ -2614,7 +2614,7 @@ msgid "Brim" msgstr "" msgid "Object/Part Setting" -msgstr "Object/part setting" +msgstr "Object/part settings" msgid "Reset parameter" msgstr "" @@ -13280,6 +13280,18 @@ msgstr "" msgid "Travel speed of the first layer." msgstr "" +msgid "First layer travel acceleration" +msgstr "" + +msgid "Travel acceleration of first layer." +msgstr "" + +msgid "First layer travel jerk" +msgstr "" + +msgid "Travel jerk of first layer." +msgstr "" + #, fuzzy msgid "Number of slow layers" msgstr "This is the number of top interface layers." @@ -13391,6 +13403,9 @@ msgstr "" msgid "Contour" msgstr "" +msgid "Hole" +msgstr "" + msgid "Contour and hole" msgstr "" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 06b15cc83d..c52a64f72a 100644 --- a/localization/i18n/es/OrcaSlicer_es.po +++ b/localization/i18n/es/OrcaSlicer_es.po @@ -172,8 +172,8 @@ msgstr "Tipo de herramienta" msgid "Smart fill angle" msgstr "Ángulo de relleno en puente" -msgid "On overhangs only" -msgstr "Solo en voladizos" +msgid "On highlighted overhangs only" +msgstr "Solo en voladizos resaltados" msgid "Auto support threshold angle: " msgstr "Ángulo del umbral de soporte automático: " @@ -15294,6 +15294,9 @@ msgstr "Solo pintado" msgid "Contour" msgstr "Contorno" +msgid "Hole" +msgstr "Orificio" + msgid "Contour and hole" msgstr "Contorno y orificio" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index 6c9e555179..c7e9d3f354 100644 --- a/localization/i18n/fr/OrcaSlicer_fr.po +++ b/localization/i18n/fr/OrcaSlicer_fr.po @@ -176,8 +176,8 @@ msgstr "Type d'outil" msgid "Smart fill angle" msgstr "Angle de remplissage intelligent" -msgid "On overhangs only" -msgstr "Sur les surplombs uniquement" +msgid "On highlighted overhangs only" +msgstr "Uniquement sur les surplombs mis en évidence" msgid "Auto support threshold angle: " msgstr "Angle de seuil de support automatique : " @@ -15433,6 +15433,9 @@ msgstr "Peint uniquement" msgid "Contour" msgstr "Contour" +msgid "Hole" +msgstr "Trou" + msgid "Contour and hole" msgstr "Contour et trou" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index dd71a8e1db..d4660b0ec6 100644 --- a/localization/i18n/hu/OrcaSlicer_hu.po +++ b/localization/i18n/hu/OrcaSlicer_hu.po @@ -169,8 +169,8 @@ msgstr "Eszköz típusa" msgid "Smart fill angle" msgstr "Okos kitöltési szög" -msgid "On overhangs only" -msgstr "Csak túlnyúlásokon" +msgid "On highlighted overhangs only" +msgstr "Csak a kiemelt túlnyúlásokon" msgid "Auto support threshold angle: " msgstr "Automatikus támasz szögének határértéke: " @@ -14963,7 +14963,19 @@ msgid "First layer travel speed" msgstr "Első réteg mozgási sebessége" msgid "Travel speed of the first layer." -msgstr "Az első réteg utazási sebessége." +msgstr "Az első réteg mozgási sebessége." + +msgid "First layer travel acceleration" +msgstr "Első réteg mozgási gyorsulása" + +msgid "Travel acceleration of first layer." +msgstr "Az első réteg mozgási gyorsulása." + +msgid "First layer travel jerk" +msgstr "Első réteg mozgási jerkje" + +msgid "Travel jerk of first layer." +msgstr "Az első réteg mozgási jerkje." msgid "Number of slow layers" msgstr "Lassú rétegek száma" @@ -15110,6 +15122,9 @@ msgstr "Csak festett" msgid "Contour" msgstr "Kontúr" +msgid "Hole" +msgstr "Lyuk" + msgid "Contour and hole" msgstr "Kontúr és lyuk" @@ -22662,7 +22677,7 @@ msgstr "" "Mikor nyomtass nyitott ajtóval\n" "Tudtad, hogy a nyomtató ajtajának kinyitásával csökkentheted az extruder/" "fejegység eltömődésének valószínűségét, ha alacsonyabb hőmérsékletű " -"filamentet nyomtatsz? További információ a Wikiben olvashatsz erről." +"filamentet nyomtatsz? További információ erről a Wikiben található." #: resources/data/hints.ini: [hint:Avoid warping] msgid "" @@ -22738,5 +22753,3 @@ msgstr "" #~ "maximális áramlás közül a kisebbik korlátozza. Kikapcsolva csak a " #~ "felhasználó által megadott maximális áramlás érvényesül." -#~ msgid "Travel speed of First layer." -#~ msgstr "Az első réteg mozgási sebessége." diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index 6d94aa6b32..f49ac5711a 100644 --- a/localization/i18n/it/OrcaSlicer_it.po +++ b/localization/i18n/it/OrcaSlicer_it.po @@ -172,8 +172,8 @@ msgstr "Tipo di strumento" msgid "Smart fill angle" msgstr "Angolo di riempimento intelligente" -msgid "On overhangs only" -msgstr "Solo sulle sporgenze" +msgid "On highlighted overhangs only" +msgstr "Solo sulle sporgenze evidenziate" msgid "Auto support threshold angle: " msgstr "Angolo di soglia per supporto automatico: " @@ -15319,6 +15319,9 @@ msgstr "Solo verniciato" msgid "Contour" msgstr "Contorno" +msgid "Hole" +msgstr "Foro" + msgid "Contour and hole" msgstr "Contorno e foro" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index cea37fa2be..0b1d6d4f4a 100644 --- a/localization/i18n/ja/OrcaSlicer_ja.po +++ b/localization/i18n/ja/OrcaSlicer_ja.po @@ -171,8 +171,8 @@ msgstr "ツールタイプ" msgid "Smart fill angle" msgstr "自動充填角度" -msgid "On overhangs only" -msgstr "オーバーハングのみ" +msgid "On highlighted overhangs only" +msgstr "強調表示されたオーバーハングのみ" msgid "Auto support threshold angle: " msgstr "自動サポート角度閾値" @@ -14093,6 +14093,9 @@ msgstr "塗装のみ" msgid "Contour" msgstr "輪郭" +msgid "Hole" +msgstr "穴" + msgid "Contour and hole" msgstr "輪郭と穴" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index dd075ac401..85d1925bf6 100644 --- a/localization/i18n/ko/OrcaSlicer_ko.po +++ b/localization/i18n/ko/OrcaSlicer_ko.po @@ -173,8 +173,8 @@ msgstr "도구 유형" msgid "Smart fill angle" msgstr "스마트 채우기 각도" -msgid "On overhangs only" -msgstr "오버행에만 칠하기" +msgid "On highlighted overhangs only" +msgstr "강조된 오버행에만 칠하기" msgid "Auto support threshold angle: " msgstr "자동 서포트 임계값 각도: " @@ -14240,6 +14240,9 @@ msgstr "도색만" msgid "Contour" msgstr "윤곽" +msgid "Hole" +msgstr "구멍" + msgid "Contour and hole" msgstr "윤곽 및 구멍" diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po index f29efb596a..0245eb9b3d 100644 --- a/localization/i18n/lt/OrcaSlicer_lt.po +++ b/localization/i18n/lt/OrcaSlicer_lt.po @@ -172,8 +172,8 @@ msgstr "Įrankio tipas" msgid "Smart fill angle" msgstr "Išmanaus užpildymo kampas" -msgid "On overhangs only" -msgstr "Tik kabantiems" +msgid "On highlighted overhangs only" +msgstr "Tik paryškintiems kabantiems" msgid "Auto support threshold angle: " msgstr "Automatinių atramų generavimo kampas: " @@ -11223,6 +11223,9 @@ msgstr "Nutolinti" msgid "Switch between Prepare/Preview" msgstr "Perjungimas tarp Paruošti / Peržiūrėti" +msgid "Toggle printable for object/part" +msgstr "Perjungti objekto / dalies spausdinimą" + msgid "Plater" msgstr "Plokštė" @@ -15040,6 +15043,9 @@ msgstr "Tik dažytas" msgid "Contour" msgstr "Kontūras" +msgid "Hole" +msgstr "Skylė" + msgid "Contour and hole" msgstr "Kontūras ir skylė" diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index f79ac30055..1dec100c62 100644 --- a/localization/i18n/nl/OrcaSlicer_nl.po +++ b/localization/i18n/nl/OrcaSlicer_nl.po @@ -166,8 +166,8 @@ msgstr "Hulpmiddel type" msgid "Smart fill angle" msgstr "Slim vullen hoek" -msgid "On overhangs only" -msgstr "Alleen op overhangen" +msgid "On highlighted overhangs only" +msgstr "Alleen op gemarkeerde overhangen" msgid "Auto support threshold angle: " msgstr "Maximale hoek automatische ondersteuning: " @@ -15043,6 +15043,9 @@ msgstr "Alleen geverfd" msgid "Contour" msgstr "Contour" +msgid "Hole" +msgstr "Gat" + msgid "Contour and hole" msgstr "Contour en gat" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index d50186e7d5..fefb91e288 100644 --- a/localization/i18n/pl/OrcaSlicer_pl.po +++ b/localization/i18n/pl/OrcaSlicer_pl.po @@ -164,8 +164,8 @@ msgstr "Typ narzędzia" msgid "Smart fill angle" msgstr "Kąt inteligentnego wypełniania" -msgid "On overhangs only" -msgstr "Tylko na nawisach" +msgid "On highlighted overhangs only" +msgstr "Tylko na podświetlonych nawisach" msgid "Auto support threshold angle: " msgstr "Automatyczny kąt progowy podpory: " @@ -14539,6 +14539,9 @@ msgstr "Tylko malowane" msgid "Contour" msgstr "Kontur" +msgid "Hole" +msgstr "Otwory" + msgid "Contour and hole" msgstr "Kontur i otwory" diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index 9e136b4e09..47c06c471c 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -178,8 +178,8 @@ msgstr "Tipo de ferramenta" msgid "Smart fill angle" msgstr "Ângulo de preenchimento inteligente" -msgid "On overhangs only" -msgstr "Apenas em saliências" +msgid "On highlighted overhangs only" +msgstr "Apenas em saliências destacadas" msgid "Auto support threshold angle: " msgstr "Ângulo limiar de suporte automático: " @@ -4331,7 +4331,7 @@ msgstr "" "seam_slope_start_height precisa ser menor que layer_height.\n" "Redefinir para 0." -#, fuzzy, c-format, boost-format +#, no-c-format, no-boost-format msgid "" "Lock depth should smaller than skin depth.\n" "Reset to 50% of skin depth." @@ -15186,6 +15186,9 @@ msgstr "Somente pintado" msgid "Contour" msgstr "Contorno" +msgid "Hole" +msgstr "Furo" + msgid "Contour and hole" msgstr "Contorno e furo" diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index 238b3c425f..4998ad9034 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -185,8 +185,8 @@ msgstr "Инструмент" msgid "Smart fill angle" msgstr "Угол для умной заливки" -msgid "On overhangs only" -msgstr "Только на нависаниях" +msgid "On highlighted overhangs only" +msgstr "Только на подсвеченных нависаниях" msgid "Auto support threshold angle: " msgstr "Пороговый угол автоподдержки: " @@ -15501,6 +15501,9 @@ msgstr "Вручную" msgid "Contour" msgstr "Контур" +msgid "Hole" +msgstr "Отверстия" + msgid "Contour and hole" msgstr "Контур и отверстия" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index 629f4ac711..d3665b412b 100644 --- a/localization/i18n/sv/OrcaSlicer_sv.po +++ b/localization/i18n/sv/OrcaSlicer_sv.po @@ -163,8 +163,8 @@ msgstr "Verktygs typ" msgid "Smart fill angle" msgstr "Smart fyllningsvinkel" -msgid "On overhangs only" -msgstr "Endast på överhäng" +msgid "On highlighted overhangs only" +msgstr "Endast på markerade överhäng" msgid "Auto support threshold angle: " msgstr "Automatisk support tröskelsvinkel: " @@ -14883,6 +14883,9 @@ msgstr "Endast målad" msgid "Contour" msgstr "Kontur" +msgid "Hole" +msgstr "Hål" + msgid "Contour and hole" msgstr "Kontur och hål" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index 7d7de2ab9c..1739550e07 100644 --- a/localization/i18n/tr/OrcaSlicer_tr.po +++ b/localization/i18n/tr/OrcaSlicer_tr.po @@ -157,8 +157,8 @@ msgstr "Araç türü" msgid "Smart fill angle" msgstr "Akıllı doldurma açısı" -msgid "On overhangs only" -msgstr "Yalnızca çıkıntılarda" +msgid "On highlighted overhangs only" +msgstr "Yalnızca vurgulanan çıkıntılarda" msgid "Auto support threshold angle: " msgstr "Otomatik destek eşik açısı: " @@ -13339,6 +13339,9 @@ msgstr "Sadece boyalı" msgid "Contour" msgstr "Kontur" +msgid "Hole" +msgstr "Delik" + msgid "Contour and hole" msgstr "Kontur ve delik" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 182ff0c978..99466c46dc 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -168,8 +168,8 @@ msgstr "Тип інструменту" msgid "Smart fill angle" msgstr "Кут розумного заповнення" -msgid "On overhangs only" -msgstr "Тільки на нависаннях" +msgid "On highlighted overhangs only" +msgstr "Тільки на підсвічених нависанняхх" msgid "Auto support threshold angle: " msgstr "Поріг кута автоматичної підтримки: " @@ -14536,6 +14536,9 @@ msgstr "Тільки пофарбовані" msgid "Contour" msgstr "Контур" +msgid "Hole" +msgstr "Отвір" + msgid "Contour and hole" msgstr "Контур та отвір" diff --git a/localization/i18n/vi/OrcaSlicer_vi.po b/localization/i18n/vi/OrcaSlicer_vi.po index 8f7d1314ad..c48d08f9cb 100644 --- a/localization/i18n/vi/OrcaSlicer_vi.po +++ b/localization/i18n/vi/OrcaSlicer_vi.po @@ -167,8 +167,8 @@ msgstr "Loại công cụ" msgid "Smart fill angle" msgstr "Góc tô thông minh" -msgid "On overhangs only" -msgstr "Chỉ trên overhang" +msgid "On highlighted overhangs only" +msgstr "Chỉ trên các overhang được làm nổi bật" msgid "Auto support threshold angle: " msgstr "Góc ngưỡng tự động support: " @@ -14730,6 +14730,9 @@ msgstr "Chỉ được sơn" msgid "Contour" msgstr "Đường viền" +msgid "Hole" +msgstr "Lỗ" + msgid "Contour and hole" msgstr "Đường viền và lỗ" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index fdf0705303..85e2f49a05 100644 --- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po +++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po @@ -161,8 +161,8 @@ msgstr "工具类型" msgid "Smart fill angle" msgstr "智能填充角度" -msgid "On overhangs only" -msgstr "仅对悬垂区生效" +msgid "On highlighted overhangs only" +msgstr "仅对高亮悬垂区生效" msgid "Auto support threshold angle: " msgstr "自动支撑角度阈值:" @@ -1764,7 +1764,7 @@ msgid "Choose one file (GCODE/3MF):" msgstr "选择一个文件(GCODE/3MF):" msgid "Ext" -msgstr "分机" +msgstr "Ext" msgid "Some presets are modified." msgstr "预设已被修改。" @@ -5726,13 +5726,13 @@ msgid "Pass 1" msgstr "粗调" msgid "Flow ratio test - Pass 1" -msgstr "流量比例测试 - 通过 1" +msgstr "流量比例测试 - 粗调" msgid "Pass 2" -msgstr "细调" +msgstr "微调" msgid "Flow ratio test - Pass 2" -msgstr "流量比例测试 - 通过 2" +msgstr "流量比例测试 - 微调" msgid "YOLO (Recommended)" msgstr "YOLO(推荐)" @@ -5871,7 +5871,7 @@ msgid "The project is no longer available." msgstr "此项目不可用。" msgid "Filament Settings" -msgstr "打印丝设置" +msgstr "材料设置" msgid "" "Do you want to synchronize your personal data from Bambu Cloud?\n" @@ -5880,7 +5880,7 @@ msgid "" "2. The Filament presets\n" "3. The Printer presets" msgstr "" -"想从Bambu 云同步你的个人数据吗?\n" +"想从 Bambu 云同步你的个人数据吗?\n" "包含如下信息:\n" "1. 工艺预设\n" "2. 打印丝预设\n" @@ -5923,7 +5923,7 @@ msgid "Initializing..." msgstr "正在初始化……" msgid "Connection Failed. Please check the network and try again" -msgstr "链接失败。请检查网络后重试" +msgstr "连接失败。请检查网络后重试" msgid "" "Please check the network and try again. You can restart or update the " @@ -6349,7 +6349,7 @@ msgid "Debug Info" msgstr "调试信息" msgid "Filament loading..." -msgstr "耗材丝进料..." +msgstr "耗材丝进料中..." msgid "No Storage" msgstr "无存储" @@ -7304,8 +7304,8 @@ msgid "" "The object from file %s is too small, and maybe in meters or inches.\n" " Do you want to scale to millimeters?" msgstr "" -"文件 %s 中对象的尺寸似乎是以米或者英寸为单位定义的。\n" -"逆戟鲸切片器的内部单位为毫米。是否要转换成毫米?" +"文件 %s 中对象的尺寸过小,似乎是以米(m)或者英寸(inch)为单位定义的。\n" +"OrcaSlicer的内部单位为毫米(mm)。是否要转换成毫米(mm)?" msgid "Object too small" msgstr "对象尺寸过小" @@ -7547,7 +7547,7 @@ msgid "" msgstr "未提供校准加速度。使用默认加速度值" msgid "mm/s²" -msgstr "毫米/秒²" +msgstr "mm/s²" msgid "No speeds provided for calibration. Use default optimal speed " msgstr "未提供校准速度。使用默认最佳速度" @@ -7609,10 +7609,10 @@ msgid "The current project has unsaved changes, save it before continue?" msgstr "当前项目包含未保存的修改,是否先保存?" msgid "Number of copies:" -msgstr "克隆数量:" +msgstr "复制数量:" msgid "Copies of the selected object" -msgstr "所选对象的克隆数量" +msgstr "所选对象的复制数量" msgid "Save G-code file as:" msgstr "G-code文件另存为:" @@ -7752,19 +7752,19 @@ msgstr "对象名字:%1%\n" #, boost-format msgid "Size: %1% x %2% x %3% in\n" -msgstr "大小:%1% x %2% x %3% 英寸\n" +msgstr "大小:%1% x %2% x %3% in\n" #, boost-format msgid "Size: %1% x %2% x %3% mm\n" -msgstr "大小: %1% x %2% x %3% 毫米\n" +msgstr "大小: %1% x %2% x %3% mm\n" #, boost-format msgid "Volume: %1% in³\n" -msgstr "体积: %1% 英寸³\n" +msgstr "体积: %1% in³\n" #, boost-format msgid "Volume: %1% mm³\n" -msgstr "体积: %1% 毫米³\n" +msgstr "体积: %1% mm³\n" #, boost-format msgid "Triangles: %1%\n" @@ -7813,7 +7813,7 @@ msgid "rear" msgstr "后部" msgid "Switching the language requires application restart.\n" -msgstr "切换语言要求重启应用程序。\n" +msgstr "切换语言需要重启应用程序。\n" msgid "Do you want to continue?" msgstr "是否继续?" @@ -7852,7 +7852,7 @@ msgid "The period of backup in seconds." msgstr "备份的周期" msgid "Bed Temperature Difference Warning" -msgstr "床温差警告" +msgstr "热床温度不同警告" msgid "" "Using filaments with significantly different temperatures may cause:\n" @@ -7895,10 +7895,10 @@ msgid "General" msgstr "常规" msgid "Metric" -msgstr "公制" +msgstr "公制(Metric)" msgid "Imperial" -msgstr "英制" +msgstr "英制(Imperial)" msgid "Units" msgstr "单位" @@ -8027,7 +8027,7 @@ msgid "Optimizes filament area maximum height by chosen filament count." msgstr "根据选定的耗材丝数量优化耗材区域最大高度" msgid "Features" -msgstr "特征" +msgstr "特性" msgid "Multi device management" msgstr "多设备管理" @@ -10226,7 +10226,7 @@ msgid "" msgstr "仅同步耗材丝类型和颜色,不包括插槽信息。" msgid "Ext spool" -msgstr "外线轴" +msgstr "外置耗材盘" msgid "" "Please check whether the nozzle type of the device is the same as the preset " @@ -10300,16 +10300,16 @@ msgid "For constant flow rate, hold %1% while dragging." msgstr "为保持恒定流量,拖动时按住%1%" msgid "ms" -msgstr "多发性硬化症" +msgstr "ms" msgid "Total ramming" -msgstr "总顶压" +msgstr "总冲刷量" msgid "Volume" msgstr "体积" msgid "Ramming line" -msgstr "顶压线" +msgstr "预冲刷线" msgid "" "Orca would re-calculate your flushing volumes everytime the filaments color " @@ -11968,7 +11968,7 @@ msgstr "" "以及对象的流量比(如果已设置)来计算的。" msgid "Support flow ratio" -msgstr "支持流量比" +msgstr "支撑流量比" msgid "" "This factor affects the amount of material for support.\n" @@ -11980,7 +11980,7 @@ msgstr "" "象的流量比(如果已设置)来计算的。" msgid "Support interface flow ratio" -msgstr "支持接口流量比例" +msgstr "支撑面流量比例" msgid "" "This factor affects the amount of material for the support interface.\n" @@ -13049,10 +13049,10 @@ msgid "" msgstr "打印此材料的所需的最小喷嘴硬度。零值表示不检查喷嘴硬度。" msgid "Filament map to extruder" -msgstr "耗材图至挤出机" +msgstr "耗材映射到挤出机" msgid "Filament map to extruder." -msgstr "耗材图到挤出机。" +msgstr "耗材映射到挤出机。" msgid "Auto For Flush" msgstr "自动冲洗" @@ -13894,6 +13894,9 @@ msgstr "仅涂漆" msgid "Contour" msgstr "轮廓" +msgid "Hole" +msgstr "孔" + msgid "Contour and hole" msgstr "轮廓和孔" @@ -15768,7 +15771,7 @@ msgstr "" "不使用该值。" msgid "∆℃" -msgstr "℃" +msgstr "∆℃" msgid "Preheat time" msgstr "预热时间" @@ -15860,7 +15863,7 @@ msgid "Enable filament ramming" msgstr "启用耗材尖端成型" msgid "No sparse layers (beta)" -msgstr "无稀疏层 (实验)" +msgstr "无稀疏层 (实验功能)" msgid "" "If enabled, the wipe tower will not be printed on layers with no tool " @@ -19170,7 +19173,7 @@ msgid "" "Note: If the only preset under this filament is deleted, the filament will " "be deleted after exiting the dialog." msgstr "" -"注意:如果在该耗材下仅有的预设被删除,那么在退出对话框后,该耗材将被删除。" +"注意:如果在该耗材下仅有的预设被删除,在关闭对话框后,该耗材将被删除。" msgid "Presets inherited by other presets cannot be deleted" msgstr "附属于其他预设的预设不能被删除。" @@ -19341,7 +19344,7 @@ msgid "Success!" msgstr "成功!" msgid "Are you sure to log out?" -msgstr "您确定要注销吗?" +msgstr "您确定要登出吗?" msgid "View print host webui in Device tab" msgstr "在 设备 标签页中查看打印机主机的网页界面" @@ -19760,7 +19763,7 @@ msgid "" "set the outer wall speed to be 40 to 60 mm/s when slicing." msgstr "" "为了使打印件获得更高的光泽度,请在使用前将耗材干燥,并在切片时将外壁速度设置" -"为 40 至 60 毫米/秒。" +"为 40 至 60 mm/s。" msgid "" "This filament is only used to print models with a low density usually, and " @@ -19793,7 +19796,7 @@ msgid "" "the AMS. Printing it is of many requirements, and to get better printing " "quality, please refer to this wiki: TPU printing guide." msgstr "" -"该耗材具有足够高的硬度(约 67 D)并且与 AMS 兼容。打印此类耗材需要满足较多条" +"该耗材具有足够高的硬度(约 67D)并且与 AMS 兼容。打印此类耗材需要满足较多条" "件,为了获得更好的打印质量,请参考这个英文wiki:TPU printing guide(“TPU打印" "指南”)" @@ -19884,7 +19887,7 @@ msgid "The number of printers in use simultaneously cannot be equal to 0." msgstr "同时使用的打印机数量不能等于0。" msgid "Use External Spool" -msgstr "使用外置线卷" +msgstr "使用外置耗材盘" msgid "Select Printers" msgstr "选择打印机" @@ -20642,7 +20645,7 @@ msgid "" "Did you know that you can save wasted filament by flushing it into support/" "objects/infill during filament change?" msgstr "" -"冲刷到支持/对象/填充中\n" +"冲刷到支撑/对象/填充中\n" "你知道吗?你可以在换料时将它们冲入支撑/对象/填充,以节省浪费的料丝。" #: resources/data/hints.ini: [hint:Improve strength] diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index dd0a69a8d3..12fc980c8f 100644 --- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po +++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po @@ -166,8 +166,8 @@ msgstr "筆刷類型" msgid "Smart fill angle" msgstr "智慧填充角度" -msgid "On overhangs only" -msgstr "僅對懸空區生效" +msgid "On highlighted overhangs only" +msgstr "僅對高亮懸空區生效" msgid "Auto support threshold angle: " msgstr "自動支撐角度臨界值:" @@ -14006,6 +14006,9 @@ msgstr "僅塗漆" msgid "Contour" msgstr "輪廓" +msgid "Hole" +msgstr "孔洞" + msgid "Contour and hole" msgstr "輪廓和孔" diff --git a/resources/profiles/re3D/GBX-HOTEND-COVERED.STL b/resources/images/amshub_N6.png similarity index 53% rename from resources/profiles/re3D/GBX-HOTEND-COVERED.STL rename to resources/images/amshub_N6.png index 1405598c40..693d2c8131 100644 Binary files a/resources/profiles/re3D/GBX-HOTEND-COVERED.STL and b/resources/images/amshub_N6.png differ diff --git a/resources/images/fd_calibration_auto_n6_left.png b/resources/images/fd_calibration_auto_n6_left.png new file mode 100644 index 0000000000..dd33cc2cdf Binary files /dev/null and b/resources/images/fd_calibration_auto_n6_left.png differ diff --git a/resources/images/fd_calibration_auto_n6_right.png b/resources/images/fd_calibration_auto_n6_right.png new file mode 100644 index 0000000000..0d36ffd7fc Binary files /dev/null and b/resources/images/fd_calibration_auto_n6_right.png differ diff --git a/resources/images/filament_load_n6_series_ext0.png b/resources/images/filament_load_n6_series_ext0.png new file mode 100644 index 0000000000..f530808b0f Binary files /dev/null and b/resources/images/filament_load_n6_series_ext0.png differ diff --git a/resources/images/filament_load_n6_series_ext1.png b/resources/images/filament_load_n6_series_ext1.png new file mode 100644 index 0000000000..038f36d781 Binary files /dev/null and b/resources/images/filament_load_n6_series_ext1.png differ diff --git a/resources/images/printer_preview_N6.png b/resources/images/printer_preview_N6.png new file mode 100644 index 0000000000..4b55c84325 Binary files /dev/null and b/resources/images/printer_preview_N6.png differ diff --git a/resources/images/printer_thumbnail_N6.svg b/resources/images/printer_thumbnail_N6.svg new file mode 100644 index 0000000000..a05b8b4c27 --- /dev/null +++ b/resources/images/printer_thumbnail_N6.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/images/printer_thumbnail_N6_dark.svg b/resources/images/printer_thumbnail_N6_dark.svg new file mode 100644 index 0000000000..a05b8b4c27 --- /dev/null +++ b/resources/images/printer_thumbnail_N6_dark.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/images/printer_thumbnail_N6_png.png b/resources/images/printer_thumbnail_N6_png.png new file mode 100644 index 0000000000..5e4b90a7b9 Binary files /dev/null and b/resources/images/printer_thumbnail_N6_png.png differ diff --git a/resources/printers/N6.json b/resources/printers/N6.json new file mode 100644 index 0000000000..af29dc7d72 --- /dev/null +++ b/resources/printers/N6.json @@ -0,0 +1,112 @@ +{ + "00.00.00.00": { + "display_name": "Bambu Lab X2D", + "print": { + "ipcam": { + "resolution_supported": [ "1080p" ], + "virtual_camera": "enabled", + "liveview": { + "remote": "tutk" + }, + "file": { + "local": "local", + "remote": "tutk", + "model_download": "enabled" + } + }, + "nozzle_temp_range": [ 0, 300 ], + "nozzle_replace_wiki": { + "zh": "https://wiki.bambulab.com/zh/h2/maintenance/replace-hotend", + "en": "https://wiki.bambulab.com/en/h2/maintenance/replace-hotend" + }, + "bed_temp_range": [ 0, 120 ], + "support_motor_noise_cali": false, + "support_tunnel_mqtt": true, + "support_mqtt_alive": true, + "support_command_ams_switch": true, + "support_ssl_for_mqtt": true, + "support_cloud_print_only": false, + "support_1080dpi": true, + "support_prompt_sound": false, + "support_ams_humidity": true, + "support_auto_recovery_step_loss": true, + "support_bed_leveling": 2, + "support_update_remain": true, + "support_timelapse": true, + "support_filament_backup": true, + "support_chamber_fan": true, + "support_aux_fan": true, + "support_send_to_sd": true, + "support_print_all": true, + "support_print_without_sd": true, + "support_flow_calibration": true, + "support_auto_flow_calibration": true, + "support_build_plate_marker_detect": true, + "support_build_plate_marker_detect_type": 2, + "support_lidar_calibration": false, + "support_nozzle_offset_calibration": true, + "support_high_tempbed_calibration": true, + "support_clump_position_calibration": true, + "support_ai_monitoring": true, + "support_first_layer_inspect": false, + "support_save_remote_print_file_to_storage": true, + "support_chamber": true, + "support_chamber_temp_edit": true, + "support_chamber_temp_edit_range": [0, 65], + "support_chamber_temp_switch_heating": 40, + "support_extrusion_cali": false, + "support_user_preset": false, + "support_ams_ext_mix_print": true, + "support_ams_filament_change_abort": true + }, + "fan" : { + "0" : + { + "mode_name": "Strong Cooling", + "2": "Left(Aux)", + "10": { + "-1": "Right(Aux)", + "0": "Right(Aux)", + "1": "Right(Filter)" + } + }, + "1" : + { + "mode_name": "Heating", + "2": "Left(Heating)", + "10": "Right(Filter)" + }, + "special_cooling_text" : "Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the chamber air." + }, + "model_id": "N6", + "subseries": ["N6-V2"], + "auto_pa_cali_thumbnail_image": "fd_calibration_auto_n6", + "support_wrapping_detection": false, + "compatible_machine": [], + "printer_type": "N6", + "printer_thumbnail_image": "printer_thumbnail_N6", + "printer_connect_help_image": "input_access_code_x1", + "printer_use_ams_image": "ams_icon", + "printer_ext_image": ["ext_image_default"], + "use_ams_type": "generic", + "printer_arch": "core_xy", + "printer_series": "series_x1", + "has_cali_line": true, + "printer_is_enclosed": true, + "enable_set_nozzle_info": false, + "support_safety_options": true, + "filament_load_image": ["filament_load_n6_series_ext0","filament_load_n6_series_ext1"], + "tool_head_display_names": { + "0": { + "extruder": ["Auxiliary Extruder", "Auxiliary extruder", "auxiliary extruder"], + "nozzle": ["Auxiliary Nozzle", "Auxiliary nozzle", "auxiliary nozzle"], + "hotend": ["Auxiliary Hotend", "Auxiliary hotend", "auxiliary hotend"] + }, + "1": { + "extruder": ["Main Extruder", "Main extruder", "main extruder"], + "nozzle": ["Main Nozzle", "Main nozzle", "main nozzle"], + "hotend": ["Main Hotend", "Main hotend", "main hotend"] + } + } + } +} \ No newline at end of file diff --git a/resources/printers/filaments_blacklist.json b/resources/printers/filaments_blacklist.json index 83a3ab68c1..bba05552c6 100644 --- a/resources/printers/filaments_blacklist.json +++ b/resources/printers/filaments_blacklist.json @@ -14,6 +14,24 @@ "slot": "ams", "description": "AMS does not support 'Bambu Lab PET-CF'." }, + { + "type": "TPU", + "action": "warning", + "model_id": [ + "N6" + ], + "description": "How to feed TPU filament on X2D.", + "wiki": "https://e.bambulab.com/t?c=PAxXqQu2zBgvN3ea" + }, + { + "type": "TPU-AMS", + "action": "warning", + "model_id": [ + "N6" + ], + "description": "How to feed TPU filament on X2D.", + "wiki": "https://e.bambulab.com/t?c=PAxXqQu2zBgvN3ea" + }, { "type": "TPU", "action": "warning", diff --git a/resources/profiles/Anet/Anet A8 Plus(A8+)_cover.png b/resources/profiles/Anet/Anet A8 Plus(A8+)_cover.png index 45751c102a..4eb1ee93b2 100644 Binary files a/resources/profiles/Anet/Anet A8 Plus(A8+)_cover.png and b/resources/profiles/Anet/Anet A8 Plus(A8+)_cover.png differ diff --git a/resources/profiles/Anker/M5-CE-bed.stl b/resources/profiles/Anker/M5-CE-bed.stl index 1eabb0f624..dbbc4ddf52 100644 Binary files a/resources/profiles/Anker/M5-CE-bed.stl and b/resources/profiles/Anker/M5-CE-bed.stl differ diff --git a/resources/profiles/Anker/M5-CE-texture.svg b/resources/profiles/Anker/M5-CE-texture.svg index 4cdb0870a0..1e2da43d9b 100644 --- a/resources/profiles/Anker/M5-CE-texture.svg +++ b/resources/profiles/Anker/M5-CE-texture.svg @@ -1,15 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anker/M5C-CE-bed.stl b/resources/profiles/Anker/M5C-CE-bed.stl index c4a049d4cf..d749a497d3 100644 Binary files a/resources/profiles/Anker/M5C-CE-bed.stl and b/resources/profiles/Anker/M5C-CE-bed.stl differ diff --git a/resources/profiles/Anycubic.json b/resources/profiles/Anycubic.json index 703ff4b67f..7133ca042a 100644 --- a/resources/profiles/Anycubic.json +++ b/resources/profiles/Anycubic.json @@ -1,6 +1,6 @@ { "name": "Anycubic", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Anycubic configurations", "machine_model_list": [ diff --git a/resources/profiles/Anycubic/Anycubic Kobra 2 Max_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra 2 Max_buildplate_texture.svg index 6a55e654fa..03be7099c0 100644 --- a/resources/profiles/Anycubic/Anycubic Kobra 2 Max_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Kobra 2 Max_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Kobra 2 Neo_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra 2 Neo_buildplate_texture.svg index ad8da5b767..6a8cf5a88e 100644 --- a/resources/profiles/Anycubic/Anycubic Kobra 2 Neo_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Kobra 2 Neo_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Kobra 2 Plus_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra 2 Plus_buildplate_texture.svg index ad8da5b767..0896a4f515 100644 --- a/resources/profiles/Anycubic/Anycubic Kobra 2 Plus_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Kobra 2 Plus_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Kobra 2 Pro_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra 2 Pro_buildplate_texture.svg index ad8da5b767..6a8cf5a88e 100644 --- a/resources/profiles/Anycubic/Anycubic Kobra 2 Pro_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Kobra 2 Pro_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Kobra 3_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra 3_buildplate_texture.svg index 7a93488599..2e2fbf5cd3 100644 --- a/resources/profiles/Anycubic/Anycubic Kobra 3_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Kobra 3_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_model.stl b/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_model.stl index 110fcd0eb5..a61a4b99ef 100644 Binary files a/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_model.stl and b/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_model.stl differ diff --git a/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_texture.png b/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_texture.png deleted file mode 100644 index 19459df233..0000000000 Binary files a/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_texture.svg new file mode 100644 index 0000000000..6a8cf5a88e --- /dev/null +++ b/resources/profiles/Anycubic/Anycubic Kobra Neo_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Kobra Neo_cover.png b/resources/profiles/Anycubic/Anycubic Kobra Neo_cover.png index 50f3897ae3..6dda396acd 100644 Binary files a/resources/profiles/Anycubic/Anycubic Kobra Neo_cover.png and b/resources/profiles/Anycubic/Anycubic Kobra Neo_cover.png differ diff --git a/resources/profiles/Anycubic/Anycubic Kobra S1_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra S1_buildplate_texture.svg index c1d8b5a3c5..d85e27cfcd 100644 --- a/resources/profiles/Anycubic/Anycubic Kobra S1_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Kobra S1_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Predator_buildplate_model.stl b/resources/profiles/Anycubic/Anycubic Predator_buildplate_model.stl index fc5b568a0d..7c6d564329 100644 Binary files a/resources/profiles/Anycubic/Anycubic Predator_buildplate_model.stl and b/resources/profiles/Anycubic/Anycubic Predator_buildplate_model.stl differ diff --git a/resources/profiles/Anycubic/Anycubic Predator_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Predator_buildplate_texture.svg index 0bbeb0f6cc..2fbbe4bf20 100644 --- a/resources/profiles/Anycubic/Anycubic Predator_buildplate_texture.svg +++ b/resources/profiles/Anycubic/Anycubic Predator_buildplate_texture.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/Anycubic/Anycubic Predator_cover.png b/resources/profiles/Anycubic/Anycubic Predator_cover.png index 5e7627ad1c..590f671440 100644 Binary files a/resources/profiles/Anycubic/Anycubic Predator_cover.png and b/resources/profiles/Anycubic/Anycubic Predator_cover.png differ diff --git a/resources/profiles/Anycubic/anycubic_4maxpro2_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_4maxpro2_buildplate_texture.png deleted file mode 100644 index 7a90dd9851..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_4maxpro2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_4maxpro2_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_4maxpro2_buildplate_texture.svg new file mode 100644 index 0000000000..a122289e27 --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_4maxpro2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_4maxpro_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_4maxpro_buildplate_texture.png deleted file mode 100644 index c337cd7db6..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_4maxpro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_4maxpro_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_4maxpro_buildplate_texture.svg new file mode 100644 index 0000000000..e8a84e3263 --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_4maxpro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_chiron_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_chiron_buildplate_texture.png deleted file mode 100644 index deff97a0cc..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_chiron_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_chiron_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_chiron_buildplate_texture.svg new file mode 100644 index 0000000000..437ed6975b --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_chiron_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_i3megas_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_i3megas_buildplate_texture.png deleted file mode 100644 index b3636b7536..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_i3megas_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_i3megas_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_i3megas_buildplate_texture.svg new file mode 100644 index 0000000000..b2deeb31f1 --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_i3megas_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_kobra2_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_kobra2_buildplate_texture.png deleted file mode 100644 index 9e77229309..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_kobra2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_kobra2_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_kobra2_buildplate_texture.svg new file mode 100644 index 0000000000..6a8cf5a88e --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_kobra2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_kobra_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_kobra_buildplate_texture.png deleted file mode 100644 index 03346770fe..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_kobra_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_kobra_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_kobra_buildplate_texture.svg new file mode 100644 index 0000000000..6a8cf5a88e --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_kobra_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_kobramax_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_kobramax_buildplate_texture.png deleted file mode 100644 index deff97a0cc..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_kobramax_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_kobramax_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_kobramax_buildplate_texture.svg new file mode 100644 index 0000000000..8a06659749 --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_kobramax_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_kobraplus_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_kobraplus_buildplate_texture.png deleted file mode 100644 index deff97a0cc..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_kobraplus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_kobraplus_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_kobraplus_buildplate_texture.svg new file mode 100644 index 0000000000..1194da9cd2 --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_kobraplus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/anycubic_vyper_buildplate_texture.png b/resources/profiles/Anycubic/anycubic_vyper_buildplate_texture.png deleted file mode 100644 index b540ef090c..0000000000 Binary files a/resources/profiles/Anycubic/anycubic_vyper_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Anycubic/anycubic_vyper_buildplate_texture.svg b/resources/profiles/Anycubic/anycubic_vyper_buildplate_texture.svg new file mode 100644 index 0000000000..87ba120aaa --- /dev/null +++ b/resources/profiles/Anycubic/anycubic_vyper_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2.json b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2.json index ab5b14da63..e54851b41c 100644 --- a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2.json +++ b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_4maxpro2_buildplate_model.stl", - "bed_texture": "anycubic_4maxpro2_buildplate_texture.png", + "bed_texture": "anycubic_4maxpro2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro.json b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro.json index c90b7fce09..95144dab59 100644 --- a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro.json +++ b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_4maxpro_buildplate_model.stl", - "bed_texture": "anycubic_4maxpro_buildplate_texture.png", + "bed_texture": "anycubic_4maxpro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Chiron.json b/resources/profiles/Anycubic/machine/Anycubic Chiron.json index 646a86a01d..2772464526 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Chiron.json +++ b/resources/profiles/Anycubic/machine/Anycubic Chiron.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_chiron_buildplate_model.stl", - "bed_texture": "anycubic_chiron_buildplate_texture.png", + "bed_texture": "anycubic_chiron_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2.json index 7387ee4144..545ea61e1d 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_kobra2_buildplate_model.stl", - "bed_texture": "anycubic_kobra2_buildplate_texture.png", + "bed_texture": "anycubic_kobra2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Max.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Max.json index ad87583d2e..fd3939620e 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Max.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_kobramax_buildplate_model.stl", - "bed_texture": "anycubic_kobramax_buildplate_texture.png", + "bed_texture": "anycubic_kobramax_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Neo.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Neo.json index 4b8bc82660..80effe6e8b 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Neo.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Neo.json @@ -6,7 +6,7 @@ "model_id": "Anycubic Kobra Neo", "nozzle_diameter": "0.4", "bed_model": "Anycubic Kobra Neo_buildplate_model.stl", - "bed_texture": "Anycubic Kobra Neo_buildplate_texture.png", + "bed_texture": "Anycubic Kobra Neo_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic PLA" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Plus.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Plus.json index e9c2ca5dfd..6a30264849 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Plus.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_kobraplus_buildplate_model.stl", - "bed_texture": "anycubic_kobraplus_buildplate_texture.png", + "bed_texture": "anycubic_kobraplus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra.json b/resources/profiles/Anycubic/machine/Anycubic Kobra.json index 39683f52cc..bbc1f460c3 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_kobra_buildplate_model.stl", - "bed_texture": "anycubic_kobra_buildplate_texture.png", + "bed_texture": "anycubic_kobra_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic Vyper.json b/resources/profiles/Anycubic/machine/Anycubic Vyper.json index 0e0b874a56..862af26c4a 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Vyper.json +++ b/resources/profiles/Anycubic/machine/Anycubic Vyper.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_vyper_buildplate_model.stl", - "bed_texture": "anycubic_vyper_buildplate_texture.png", + "bed_texture": "anycubic_vyper_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Anycubic/machine/Anycubic i3 Mega S.json b/resources/profiles/Anycubic/machine/Anycubic i3 Mega S.json index a5cef6af53..76192d1e21 100644 --- a/resources/profiles/Anycubic/machine/Anycubic i3 Mega S.json +++ b/resources/profiles/Anycubic/machine/Anycubic i3 Mega S.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Anycubic", "bed_model": "anycubic_i3megas_buildplate_model.stl", - "bed_texture": "anycubic_i3megas_buildplate_texture.png", + "bed_texture": "anycubic_i3megas_buildplate_texture.svg", "hotend_model": "", "default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF" } diff --git a/resources/profiles/Artillery.json b/resources/profiles/Artillery.json index ad640a3166..977d5c4d10 100644 --- a/resources/profiles/Artillery.json +++ b/resources/profiles/Artillery.json @@ -1,6 +1,6 @@ { "name": "Artillery", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Artillery configurations", "machine_model_list": [ diff --git a/resources/profiles/Artillery/artillery_genius_buildplate_texture.png b/resources/profiles/Artillery/artillery_genius_buildplate_texture.png deleted file mode 100644 index 9eaa212dc2..0000000000 Binary files a/resources/profiles/Artillery/artillery_genius_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Artillery/artillery_genius_buildplate_texture.svg b/resources/profiles/Artillery/artillery_genius_buildplate_texture.svg new file mode 100644 index 0000000000..4dc3cdfe1a --- /dev/null +++ b/resources/profiles/Artillery/artillery_genius_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Artillery/artillery_geniuspro_buildplate_texture.png b/resources/profiles/Artillery/artillery_geniuspro_buildplate_texture.png deleted file mode 100644 index 9eaa212dc2..0000000000 Binary files a/resources/profiles/Artillery/artillery_geniuspro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Artillery/artillery_geniuspro_buildplate_texture.svg b/resources/profiles/Artillery/artillery_geniuspro_buildplate_texture.svg new file mode 100644 index 0000000000..4dc3cdfe1a --- /dev/null +++ b/resources/profiles/Artillery/artillery_geniuspro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Artillery/artillery_hornet_buildplate_texture.png b/resources/profiles/Artillery/artillery_hornet_buildplate_texture.png deleted file mode 100644 index 9eaa212dc2..0000000000 Binary files a/resources/profiles/Artillery/artillery_hornet_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Artillery/artillery_hornet_buildplate_texture.svg b/resources/profiles/Artillery/artillery_hornet_buildplate_texture.svg new file mode 100644 index 0000000000..ddc5d9eb26 --- /dev/null +++ b/resources/profiles/Artillery/artillery_hornet_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Artillery/artillery_m1_pro_buildplate_model.stl b/resources/profiles/Artillery/artillery_m1_pro_buildplate_model.stl index c0459d478c..b3c211c16a 100644 Binary files a/resources/profiles/Artillery/artillery_m1_pro_buildplate_model.stl and b/resources/profiles/Artillery/artillery_m1_pro_buildplate_model.stl differ diff --git a/resources/profiles/Artillery/artillery_m1_pro_buildplate_texture.svg b/resources/profiles/Artillery/artillery_m1_pro_buildplate_texture.svg index dbc8b8008f..9a25a849dd 100644 --- a/resources/profiles/Artillery/artillery_m1_pro_buildplate_texture.svg +++ b/resources/profiles/Artillery/artillery_m1_pro_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Artillery/artillery_sidewinderx1_buildplate_texture.png b/resources/profiles/Artillery/artillery_sidewinderx1_buildplate_texture.png deleted file mode 100644 index e97bce28ca..0000000000 Binary files a/resources/profiles/Artillery/artillery_sidewinderx1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Artillery/artillery_sidewinderx1_buildplate_texture.svg b/resources/profiles/Artillery/artillery_sidewinderx1_buildplate_texture.svg new file mode 100644 index 0000000000..8e2433260c --- /dev/null +++ b/resources/profiles/Artillery/artillery_sidewinderx1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Artillery/artillery_sidewinderx2_buildplate_texture.png b/resources/profiles/Artillery/artillery_sidewinderx2_buildplate_texture.png deleted file mode 100644 index e97bce28ca..0000000000 Binary files a/resources/profiles/Artillery/artillery_sidewinderx2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Artillery/artillery_sidewinderx2_buildplate_texture.svg b/resources/profiles/Artillery/artillery_sidewinderx2_buildplate_texture.svg new file mode 100644 index 0000000000..8e2433260c --- /dev/null +++ b/resources/profiles/Artillery/artillery_sidewinderx2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Artillery/machine/Artillery Genius Pro.json b/resources/profiles/Artillery/machine/Artillery Genius Pro.json index cf4966f7a3..6af35f73a6 100644 --- a/resources/profiles/Artillery/machine/Artillery Genius Pro.json +++ b/resources/profiles/Artillery/machine/Artillery Genius Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Artillery", "bed_model": "artillery_geniuspro_buildplate_model.stl", - "bed_texture": "artillery_geniuspro_buildplate_texture.png", + "bed_texture": "artillery_geniuspro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Artillery Generic ABS;Artillery Generic PLA;Artillery Generic PLA-CF;Artillery Generic PETG;Artillery Generic TPU;Artillery Generic ASA" } diff --git a/resources/profiles/Artillery/machine/Artillery Genius.json b/resources/profiles/Artillery/machine/Artillery Genius.json index e5a47788cb..31c021230b 100644 --- a/resources/profiles/Artillery/machine/Artillery Genius.json +++ b/resources/profiles/Artillery/machine/Artillery Genius.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Artillery", "bed_model": "artillery_genius_buildplate_model.stl", - "bed_texture": "artillery_genius_buildplate_texture.png", + "bed_texture": "artillery_genius_buildplate_texture.svg", "hotend_model": "", "default_materials": "Artillery Generic ABS;Artillery Generic PLA;Artillery Generic PLA-CF;Artillery Generic PETG;Artillery Generic TPU;Artillery Generic ASA" } diff --git a/resources/profiles/Artillery/machine/Artillery Hornet.json b/resources/profiles/Artillery/machine/Artillery Hornet.json index 46e828cf48..c0e680e039 100644 --- a/resources/profiles/Artillery/machine/Artillery Hornet.json +++ b/resources/profiles/Artillery/machine/Artillery Hornet.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Artillery", "bed_model": "artillery_hornet_buildplate_model.stl", - "bed_texture": "artillery_hornet_buildplate_texture.png", + "bed_texture": "artillery_hornet_buildplate_texture.svg", "hotend_model": "", "default_materials": "Artillery Generic ABS;Artillery Generic PLA;Artillery Generic PLA-CF;Artillery Generic PETG;Artillery Generic TPU;Artillery Generic ASA" } diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X1.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X1.json index 3f06ed8ff5..5d5f13f511 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X1.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Artillery", "bed_model": "artillery_sidewinderx1_buildplate_model.stl", - "bed_texture": "artillery_sidewinderx1_buildplate_texture.png", + "bed_texture": "artillery_sidewinderx1_buildplate_texture.svg", "hotend_model": "", "default_materials": "Artillery Generic ABS;Artillery Generic PLA;Artillery Generic PLA-CF;Artillery Generic PETG;Artillery Generic TPU;Artillery Generic ASA" } diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X2.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X2.json index 63939f0a9d..79922cfe8b 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X2.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Artillery", "bed_model": "artillery_sidewinderx2_buildplate_model.stl", - "bed_texture": "artillery_sidewinderx2_buildplate_texture.png", + "bed_texture": "artillery_sidewinderx2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Artillery Generic ABS;Artillery Generic PLA;Artillery Generic PLA-CF;Artillery Generic PETG;Artillery Generic TPU;Artillery Generic ASA" } diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 9ef394a9aa..0157f07c91 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "02.01.00.10", + "version": "02.01.00.11", "force_update": "0", "description": "the initial version of BBL configurations", "machine_model_list": [ @@ -48,6 +48,10 @@ { "name": "Bambu Lab X1E", "sub_path": "machine/Bambu Lab X1E.json" + }, + { + "name": "Bambu Lab X2D", + "sub_path": "machine/Bambu Lab X2D.json" } ], "process_list": [ @@ -958,6 +962,70 @@ { "name": "0.56mm Standard @BBL X1C 0.8 nozzle", "sub_path": "process/0.56mm Standard @BBL X1C 0.8 nozzle.json" + }, + { + "name": "0.08mm High Quality @BBL X2D 0.2 nozzle", + "sub_path": "process/0.08mm High Quality @BBL X2D 0.2 nozzle.json" + }, + { + "name": "0.08mm High Quality @BBL X2D", + "sub_path": "process/0.08mm High Quality @BBL X2D.json" + }, + { + "name": "0.10mm Standard @BBL X2D 0.2 nozzle", + "sub_path": "process/0.10mm Standard @BBL X2D 0.2 nozzle.json" + }, + { + "name": "0.12mm Balanced Quality @BBL X2D 0.2 nozzle", + "sub_path": "process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json" + }, + { + "name": "0.12mm High Quality @BBL X2D", + "sub_path": "process/0.12mm High Quality @BBL X2D.json" + }, + { + "name": "0.16mm High Quality @BBL X2D", + "sub_path": "process/0.16mm High Quality @BBL X2D.json" + }, + { + "name": "0.16mm Standard @BBL X2D", + "sub_path": "process/0.16mm Standard @BBL X2D.json" + }, + { + "name": "0.18mm Balanced Quality @BBL X2D 0.6 nozzle", + "sub_path": "process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json" + }, + { + "name": "0.20mm High Quality @BBL X2D", + "sub_path": "process/0.20mm High Quality @BBL X2D.json" + }, + { + "name": "0.20mm Standard @BBL X2D", + "sub_path": "process/0.20mm Standard @BBL X2D.json" + }, + { + "name": "0.24mm Standard @BBL X2D", + "sub_path": "process/0.24mm Standard @BBL X2D.json" + }, + { + "name": "0.24mm Balanced Quality @BBL X2D 0.6 nozzle", + "sub_path": "process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json" + }, + { + "name": "0.24mm Balanced Quality @BBL X2D 0.8 nozzle", + "sub_path": "process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json" + }, + { + "name": "0.30mm Standard @BBL X2D 0.6 nozzle", + "sub_path": "process/0.30mm Standard @BBL X2D 0.6 nozzle.json" + }, + { + "name": "0.32mm Balanced Quality @BBL X2D 0.8 nozzle", + "sub_path": "process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json" + }, + { + "name": "0.40mm Standard @BBL X2D 0.8 nozzle", + "sub_path": "process/0.40mm Standard @BBL X2D 0.8 nozzle.json" } ], "filament_list": [ @@ -7704,6 +7772,1710 @@ { "name": "fdm_filament_dual_common", "sub_path": "filament/fdm_filament_dual_common.json" + }, + { + "name": "BETA ABS @base", + "sub_path": "filament/BETA/BETA ABS @base.json" + }, + { + "name": "BETA ABS @BBL P1P", + "sub_path": "filament/BETA/BETA ABS @BBL P1P.json" + }, + { + "name": "BETA ABS @BBL A1", + "sub_path": "filament/BETA/BETA ABS @BBL A1.json" + }, + { + "name": "BETA ABS @BBL H2D", + "sub_path": "filament/BETA/BETA ABS @BBL H2D.json" + }, + { + "name": "BETA ABS @BBL X1C", + "sub_path": "filament/BETA/BETA ABS @BBL X1C.json" + }, + { + "name": "BETA ASA @base", + "sub_path": "filament/BETA/BETA ASA @base.json" + }, + { + "name": "BETA ASA @BBL A1 0.4 nozzle", + "sub_path": "filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json" + }, + { + "name": "BETA ASA @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA ASA @BBL X1C 0.4 nozzle", + "sub_path": "filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json" + }, + { + "name": "BETA PLA Silk+ @base", + "sub_path": "filament/BETA/BETA PLA Silk+ @base.json" + }, + { + "name": "BETA PLA Silk+ @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Silk+ @BBL P1P.json" + }, + { + "name": "BETA PLA Silk+ @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Silk+ @BBL X1C.json" + }, + { + "name": "BETA PLA Silk+ @BBL A1", + "sub_path": "filament/BETA/BETA PLA Silk+ @BBL A1.json" + }, + { + "name": "BETA PLA Silk+ @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Silk+ @BBL A1M.json" + }, + { + "name": "BETA PLA Silk+ @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Silk+ @BBL H2D.json" + }, + { + "name": "BETA PAHT-CF @base", + "sub_path": "filament/BETA/BETA PAHT-CF @base.json" + }, + { + "name": "BETA PAHT-CF @BBL P1P", + "sub_path": "filament/BETA/BETA PAHT-CF @BBL P1P.json" + }, + { + "name": "BETA PAHT-CF @BBL H2D", + "sub_path": "filament/BETA/BETA PAHT-CF @BBL H2D.json" + }, + { + "name": "BETA PAHT-CF @BBL X1C", + "sub_path": "filament/BETA/BETA PAHT-CF @BBL X1C.json" + }, + { + "name": "BETA PEBA 90A @base", + "sub_path": "filament/BETA/BETA PEBA 90A @base.json" + }, + { + "name": "BETA PEBA 90A @BBL A1", + "sub_path": "filament/BETA/BETA PEBA 90A @BBL A1.json" + }, + { + "name": "BETA PEBA 90A @BBL A1M", + "sub_path": "filament/BETA/BETA PEBA 90A @BBL A1M.json" + }, + { + "name": "BETA PEBA 90A @BBL H2D", + "sub_path": "filament/BETA/BETA PEBA 90A @BBL H2D.json" + }, + { + "name": "BETA PEBA 90A @BBL P1P", + "sub_path": "filament/BETA/BETA PEBA 90A @BBL P1P.json" + }, + { + "name": "BETA PEBA 90A @BBL X1C", + "sub_path": "filament/BETA/BETA PEBA 90A @BBL X1C.json" + }, + { + "name": "BETA PETG Heat Color Change @base", + "sub_path": "filament/BETA/BETA PETG Heat Color Change @base.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL A1", + "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL A1.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL X1C.json" + }, + { + "name": "BETA PETG Fluorescence @base", + "sub_path": "filament/BETA/BETA PETG Fluorescence @base.json" + }, + { + "name": "BETA PETG Fluorescence @BBL A1", + "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL A1.json" + }, + { + "name": "BETA PETG Fluorescence @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Fluorescence @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Fluorescence @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL X1C.json" + }, + { + "name": "BETA PETG Glitter @base", + "sub_path": "filament/BETA/BETA PETG Glitter @base.json" + }, + { + "name": "BETA PETG Glitter @BBL A1", + "sub_path": "filament/BETA/BETA PETG Glitter @BBL A1.json" + }, + { + "name": "BETA PETG Glitter @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glitter @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glitter @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Glitter @BBL X1C.json" + }, + { + "name": "BETA PETG Glow @base", + "sub_path": "filament/BETA/BETA PETG Glow @base.json" + }, + { + "name": "BETA PETG Glow @BBL A1", + "sub_path": "filament/BETA/BETA PETG Glow @BBL A1.json" + }, + { + "name": "BETA PETG Glow @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glow @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glow @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Glow @BBL X1C.json" + }, + { + "name": "BETA PETG Gradient @base", + "sub_path": "filament/BETA/BETA PETG Gradient @base.json" + }, + { + "name": "BETA PETG Gradient @BBL A1", + "sub_path": "filament/BETA/BETA PETG Gradient @BBL A1.json" + }, + { + "name": "BETA PETG Gradient @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Gradient @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Gradient @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Gradient @BBL X1C.json" + }, + { + "name": "BETA PETG HF @base", + "sub_path": "filament/BETA/BETA PETG HF @base.json" + }, + { + "name": "BETA PETG HF @BBL A1", + "sub_path": "filament/BETA/BETA PETG HF @BBL A1.json" + }, + { + "name": "BETA PETG HF @BBL A1M", + "sub_path": "filament/BETA/BETA PETG HF @BBL A1M.json" + }, + { + "name": "BETA PETG HF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG HF @BBL X1C", + "sub_path": "filament/BETA/BETA PETG HF @BBL X1C.json" + }, + { + "name": "BETA PETG Marble @base", + "sub_path": "filament/BETA/BETA PETG Marble @base.json" + }, + { + "name": "BETA PETG Marble @BBL A1", + "sub_path": "filament/BETA/BETA PETG Marble @BBL A1.json" + }, + { + "name": "BETA PETG Marble @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Marble @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Marble @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Marble @BBL X1C.json" + }, + { + "name": "BETA PETG Matte @base", + "sub_path": "filament/BETA/BETA PETG Matte @base.json" + }, + { + "name": "BETA PETG Matte @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Matte @BBL A1", + "sub_path": "filament/BETA/BETA PETG Matte @BBL A1.json" + }, + { + "name": "BETA PETG Matte @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Matte @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Matte @BBL X1C.json" + }, + { + "name": "BETA PETG Metallic @base", + "sub_path": "filament/BETA/BETA PETG Metallic @base.json" + }, + { + "name": "BETA PETG Metallic @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Metallic @BBL A1", + "sub_path": "filament/BETA/BETA PETG Metallic @BBL A1.json" + }, + { + "name": "BETA PETG Metallic @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Metallic @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Metallic @BBL X1C.json" + }, + { + "name": "BETA PETG Transparent @base", + "sub_path": "filament/BETA/BETA PETG Transparent @base.json" + }, + { + "name": "BETA PETG Transparent @BBL A1", + "sub_path": "filament/BETA/BETA PETG Transparent @BBL A1.json" + }, + { + "name": "BETA PETG Transparent @BBL A1M", + "sub_path": "filament/BETA/BETA PETG Transparent @BBL A1M.json" + }, + { + "name": "BETA PETG Transparent @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Transparent @BBL X1C", + "sub_path": "filament/BETA/BETA PETG Transparent @BBL X1C.json" + }, + { + "name": "BETA PETG UV Color Change @base", + "sub_path": "filament/BETA/BETA PETG UV Color Change @base.json" + }, + { + "name": "BETA PETG UV Color Change @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG UV Color Change @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG UV Color Change @BBL A1", + "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL A1.json" + }, + { + "name": "BETA PETG UV Color Change @BBL X1C", + "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL X1C.json" + }, + { + "name": "BETA PETG-CF @base", + "sub_path": "filament/BETA/BETA PETG-CF @base.json" + }, + { + "name": "BETA PETG-CF @BBL P1P 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL A1 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL X1C 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @base", + "sub_path": "filament/BETA/BETA PETG-GF @base.json" + }, + { + "name": "BETA PETG-GF @BBL P1P 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL A1 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL X1C 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json" + }, + { + "name": "BETA PETG @base", + "sub_path": "filament/BETA/BETA PETG @base.json" + }, + { + "name": "BETA PETG @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG @BBL A1", + "sub_path": "filament/BETA/BETA PETG @BBL A1.json" + }, + { + "name": "BETA PETG @BBL X1C", + "sub_path": "filament/BETA/BETA PETG @BBL X1C.json" + }, + { + "name": "BETA PLA Basic @base", + "sub_path": "filament/BETA/BETA PLA Basic @base.json" + }, + { + "name": "BETA PLA Basic @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Basic @BBL P1P.json" + }, + { + "name": "BETA PLA Basic @BBL A1", + "sub_path": "filament/BETA/BETA PLA Basic @BBL A1.json" + }, + { + "name": "BETA PLA Basic @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Basic @BBL A1M.json" + }, + { + "name": "BETA PLA Basic @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Basic @BBL H2D.json" + }, + { + "name": "BETA PLA Basic @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Basic @BBL X1C.json" + }, + { + "name": "BETA PLA Chameleon @base", + "sub_path": "filament/BETA/BETA PLA Chameleon @base.json" + }, + { + "name": "BETA PLA Chameleon @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Chameleon @BBL P1P.json" + }, + { + "name": "BETA PLA Chameleon @BBL A1", + "sub_path": "filament/BETA/BETA PLA Chameleon @BBL A1.json" + }, + { + "name": "BETA PLA Chameleon @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Chameleon @BBL A1M.json" + }, + { + "name": "BETA PLA Chameleon @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Chameleon @BBL H2D.json" + }, + { + "name": "BETA PLA Chameleon @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Chameleon @BBL X1C.json" + }, + { + "name": "BETA PLA Heat Color Change @base", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @base.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL P1P.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL A1", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL A1.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL A1M.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL H2D.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL X1C.json" + }, + { + "name": "BETA PLA Fluorescence @base", + "sub_path": "filament/BETA/BETA PLA Fluorescence @base.json" + }, + { + "name": "BETA PLA Fluorescence @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL P1P.json" + }, + { + "name": "BETA PLA Fluorescence @BBL A1", + "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL A1.json" + }, + { + "name": "BETA PLA Fluorescence @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL A1M.json" + }, + { + "name": "BETA PLA Fluorescence @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL H2D.json" + }, + { + "name": "BETA PLA Fluorescence @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL X1C.json" + }, + { + "name": "BETA PLA Glitter @base", + "sub_path": "filament/BETA/BETA PLA Glitter @base.json" + }, + { + "name": "BETA PLA Glitter @BBL A1", + "sub_path": "filament/BETA/BETA PLA Glitter @BBL A1.json" + }, + { + "name": "BETA PLA Glitter @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Glitter @BBL A1M.json" + }, + { + "name": "BETA PLA Glitter @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Glitter @BBL H2D.json" + }, + { + "name": "BETA PLA Glitter @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Glitter @BBL P1P.json" + }, + { + "name": "BETA PLA Glitter @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Glitter @BBL X1C.json" + }, + { + "name": "BETA PLA Glow @base", + "sub_path": "filament/BETA/BETA PLA Glow @base.json" + }, + { + "name": "BETA PLA Glow @BBL A1", + "sub_path": "filament/BETA/BETA PLA Glow @BBL A1.json" + }, + { + "name": "BETA PLA Glow @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Glow @BBL A1M.json" + }, + { + "name": "BETA PLA Glow @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Glow @BBL H2D.json" + }, + { + "name": "BETA PLA Glow @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Glow @BBL P1P.json" + }, + { + "name": "BETA PLA Glow @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Glow @BBL X1C.json" + }, + { + "name": "BETA PLA Gradient @base", + "sub_path": "filament/BETA/BETA PLA Gradient @base.json" + }, + { + "name": "BETA PLA Gradient @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Gradient @BBL H2D.json" + }, + { + "name": "BETA PLA Gradient @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Gradient @BBL P1P.json" + }, + { + "name": "BETA PLA Gradient @BBL A1", + "sub_path": "filament/BETA/BETA PLA Gradient @BBL A1.json" + }, + { + "name": "BETA PLA Gradient @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Gradient @BBL A1M.json" + }, + { + "name": "BETA PLA Gradient @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Gradient @BBL X1C.json" + }, + { + "name": "BETA PLA Marble @base", + "sub_path": "filament/BETA/BETA PLA Marble @base.json" + }, + { + "name": "BETA PLA Marble @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Marble @BBL H2D.json" + }, + { + "name": "BETA PLA Marble @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Marble @BBL P1P.json" + }, + { + "name": "BETA PLA Marble @BBL A1", + "sub_path": "filament/BETA/BETA PLA Marble @BBL A1.json" + }, + { + "name": "BETA PLA Marble @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Marble @BBL A1M.json" + }, + { + "name": "BETA PLA Marble @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Marble @BBL X1C.json" + }, + { + "name": "BETA PLA Matte @base", + "sub_path": "filament/BETA/BETA PLA Matte @base.json" + }, + { + "name": "BETA PLA Matte @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Matte @BBL P1P.json" + }, + { + "name": "BETA PLA Matte @BBL A1", + "sub_path": "filament/BETA/BETA PLA Matte @BBL A1.json" + }, + { + "name": "BETA PLA Matte @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Matte @BBL A1M.json" + }, + { + "name": "BETA PLA Matte @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Matte @BBL H2D.json" + }, + { + "name": "BETA PLA Matte @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Matte @BBL X1C.json" + }, + { + "name": "BETA PLA Metal @base", + "sub_path": "filament/BETA/BETA PLA Metal @base.json" + }, + { + "name": "BETA PLA Metal @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Metal @BBL P1P.json" + }, + { + "name": "BETA PLA Metal @BBL A1", + "sub_path": "filament/BETA/BETA PLA Metal @BBL A1.json" + }, + { + "name": "BETA PLA Metal @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Metal @BBL A1M.json" + }, + { + "name": "BETA PLA Metal @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Metal @BBL H2D.json" + }, + { + "name": "BETA PLA Metal @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Metal @BBL X1C.json" + }, + { + "name": "BETA PLA Metallic @base", + "sub_path": "filament/BETA/BETA PLA Metallic @base.json" + }, + { + "name": "BETA PLA Metallic @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Metallic @BBL H2D.json" + }, + { + "name": "BETA PLA Metallic @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Metallic @BBL P1P.json" + }, + { + "name": "BETA PLA Metallic @BBL A1", + "sub_path": "filament/BETA/BETA PLA Metallic @BBL A1.json" + }, + { + "name": "BETA PLA Metallic @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Metallic @BBL A1M.json" + }, + { + "name": "BETA PLA Metallic @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Metallic @BBL X1C.json" + }, + { + "name": "BETA PLA PRO @base", + "sub_path": "filament/BETA/BETA PLA PRO @base.json" + }, + { + "name": "BETA PLA PRO @BBL P1P", + "sub_path": "filament/BETA/BETA PLA PRO @BBL P1P.json" + }, + { + "name": "BETA PLA PRO @BBL A1", + "sub_path": "filament/BETA/BETA PLA PRO @BBL A1.json" + }, + { + "name": "BETA PLA PRO @BBL A1M", + "sub_path": "filament/BETA/BETA PLA PRO @BBL A1M.json" + }, + { + "name": "BETA PLA PRO @BBL H2D", + "sub_path": "filament/BETA/BETA PLA PRO @BBL H2D.json" + }, + { + "name": "BETA PLA PRO @BBL X1C", + "sub_path": "filament/BETA/BETA PLA PRO @BBL X1C.json" + }, + { + "name": "BETA PLA Silk @base", + "sub_path": "filament/BETA/BETA PLA Silk @base.json" + }, + { + "name": "BETA PLA Silk @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Silk @BBL P1P.json" + }, + { + "name": "BETA PLA Silk @BBL A1", + "sub_path": "filament/BETA/BETA PLA Silk @BBL A1.json" + }, + { + "name": "BETA PLA Silk @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Silk @BBL A1M.json" + }, + { + "name": "BETA PLA Silk @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Silk @BBL H2D.json" + }, + { + "name": "BETA PLA Silk @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Silk @BBL X1C.json" + }, + { + "name": "BETA PLA Transparent @base", + "sub_path": "filament/BETA/BETA PLA Transparent @base.json" + }, + { + "name": "BETA PLA Transparent @BBL A1", + "sub_path": "filament/BETA/BETA PLA Transparent @BBL A1.json" + }, + { + "name": "BETA PLA Transparent @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Transparent @BBL A1M.json" + }, + { + "name": "BETA PLA Transparent @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Transparent @BBL H2D.json" + }, + { + "name": "BETA PLA Transparent @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Transparent @BBL P1P.json" + }, + { + "name": "BETA PLA Transparent @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Transparent @BBL X1C.json" + }, + { + "name": "BETA PLA UV Color Change @base", + "sub_path": "filament/BETA/BETA PLA UV Color Change @base.json" + }, + { + "name": "BETA PLA UV Color Change @BBL P1P", + "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL P1P.json" + }, + { + "name": "BETA PLA UV Color Change @BBL A1", + "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL A1.json" + }, + { + "name": "BETA PLA UV Color Change @BBL A1M", + "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL A1M.json" + }, + { + "name": "BETA PLA UV Color Change @BBL H2D", + "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL H2D.json" + }, + { + "name": "BETA PLA UV Color Change @BBL X1C", + "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL X1C.json" + }, + { + "name": "BETA PLA Youth @base", + "sub_path": "filament/BETA/BETA PLA Youth @base.json" + }, + { + "name": "BETA PLA Youth @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Youth @BBL X1C.json" + }, + { + "name": "BETA PLA Youth @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Youth @BBL A1M.json" + }, + { + "name": "BETA PLA Youth @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Youth @BBL P1P.json" + }, + { + "name": "BETA PLA Youth @BBL A1", + "sub_path": "filament/BETA/BETA PLA Youth @BBL A1.json" + }, + { + "name": "BETA PLA Youth @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Youth @BBL H2D.json" + }, + { + "name": "BETA PLA-CF @base", + "sub_path": "filament/BETA/BETA PLA-CF @base.json" + }, + { + "name": "BETA PLA-CF @BBL A1", + "sub_path": "filament/BETA/BETA PLA-CF @BBL A1.json" + }, + { + "name": "BETA PLA-CF @BBL A1M", + "sub_path": "filament/BETA/BETA PLA-CF @BBL A1M.json" + }, + { + "name": "BETA PLA-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PLA-CF @BBL P1P", + "sub_path": "filament/BETA/BETA PLA-CF @BBL P1P.json" + }, + { + "name": "BETA PLA-CF @BBL X1C", + "sub_path": "filament/BETA/BETA PLA-CF @BBL X1C.json" + }, + { + "name": "BETA PLA High Temp @base", + "sub_path": "filament/BETA/BETA PLA High Temp @base.json" + }, + { + "name": "BETA PLA High Temp @BBL P1P", + "sub_path": "filament/BETA/BETA PLA High Temp @BBL P1P.json" + }, + { + "name": "BETA PLA High Temp @BBL X1C", + "sub_path": "filament/BETA/BETA PLA High Temp @BBL X1C.json" + }, + { + "name": "BETA PLA High Temp @BBL A1", + "sub_path": "filament/BETA/BETA PLA High Temp @BBL A1.json" + }, + { + "name": "BETA PLA High Temp @BBL A1M", + "sub_path": "filament/BETA/BETA PLA High Temp @BBL A1M.json" + }, + { + "name": "BETA PLA High Temp @BBL H2D", + "sub_path": "filament/BETA/BETA PLA High Temp @BBL H2D.json" + }, + { + "name": "BETA PLA Wood @base", + "sub_path": "filament/BETA/BETA PLA Wood @base.json" + }, + { + "name": "BETA PLA Wood @BBL A1", + "sub_path": "filament/BETA/BETA PLA Wood @BBL A1.json" + }, + { + "name": "BETA PLA Wood @BBL A1M", + "sub_path": "filament/BETA/BETA PLA Wood @BBL A1M.json" + }, + { + "name": "BETA PLA Wood @BBL H2D", + "sub_path": "filament/BETA/BETA PLA Wood @BBL H2D.json" + }, + { + "name": "BETA PLA Wood @BBL P1P", + "sub_path": "filament/BETA/BETA PLA Wood @BBL P1P.json" + }, + { + "name": "BETA PLA Wood @BBL X1C", + "sub_path": "filament/BETA/BETA PLA Wood @BBL X1C.json" + }, + { + "name": "BETA TPU Matte @base", + "sub_path": "filament/BETA/BETA TPU Matte @base.json" + }, + { + "name": "BETA TPU Matte @BBL A1", + "sub_path": "filament/BETA/BETA TPU Matte @BBL A1.json" + }, + { + "name": "BETA TPU Matte @BBL A1M", + "sub_path": "filament/BETA/BETA TPU Matte @BBL A1M.json" + }, + { + "name": "BETA TPU Matte @BBL H2D", + "sub_path": "filament/BETA/BETA TPU Matte @BBL H2D.json" + }, + { + "name": "BETA TPU Matte @BBL P1P", + "sub_path": "filament/BETA/BETA TPU Matte @BBL P1P.json" + }, + { + "name": "BETA TPU Matte @BBL X1C", + "sub_path": "filament/BETA/BETA TPU Matte @BBL X1C.json" + }, + { + "name": "BETA TPU 95A @base", + "sub_path": "filament/BETA/BETA TPU 95A @base.json" + }, + { + "name": "BETA TPU 95A @BBL A1", + "sub_path": "filament/BETA/BETA TPU 95A @BBL A1.json" + }, + { + "name": "BETA TPU 95A @BBL A1M", + "sub_path": "filament/BETA/BETA TPU 95A @BBL A1M.json" + }, + { + "name": "BETA TPU 95A @BBL H2D", + "sub_path": "filament/BETA/BETA TPU 95A @BBL H2D.json" + }, + { + "name": "BETA TPU 95A @BBL P1P", + "sub_path": "filament/BETA/BETA TPU 95A @BBL P1P.json" + }, + { + "name": "BETA TPU 95A @BBL X1C", + "sub_path": "filament/BETA/BETA TPU 95A @BBL X1C.json" + }, + { + "name": "BETA TPU 98A @base", + "sub_path": "filament/BETA/BETA TPU 98A @base.json" + }, + { + "name": "BETA TPU 98A @BBL A1", + "sub_path": "filament/BETA/BETA TPU 98A @BBL A1.json" + }, + { + "name": "BETA TPU 98A @BBL A1M", + "sub_path": "filament/BETA/BETA TPU 98A @BBL A1M.json" + }, + { + "name": "BETA TPU 98A @BBL H2D", + "sub_path": "filament/BETA/BETA TPU 98A @BBL H2D.json" + }, + { + "name": "BETA TPU 98A @BBL P1P", + "sub_path": "filament/BETA/BETA TPU 98A @BBL P1P.json" + }, + { + "name": "BETA TPU 98A @BBL X1C", + "sub_path": "filament/BETA/BETA TPU 98A @BBL X1C.json" + }, + { + "name": "BETA TPU 90A @base", + "sub_path": "filament/BETA/BETA TPU 90A @base.json" + }, + { + "name": "BETA TPU 90A @BBL A1", + "sub_path": "filament/BETA/BETA TPU 90A @BBL A1.json" + }, + { + "name": "BETA TPU 90A @BBL A1M", + "sub_path": "filament/BETA/BETA TPU 90A @BBL A1M.json" + }, + { + "name": "BETA TPU 90A @BBL H2D", + "sub_path": "filament/BETA/BETA TPU 90A @BBL H2D.json" + }, + { + "name": "BETA TPU 90A @BBL P1P", + "sub_path": "filament/BETA/BETA TPU 90A @BBL P1P.json" + }, + { + "name": "BETA TPU 90A @BBL X1C", + "sub_path": "filament/BETA/BETA TPU 90A @BBL X1C.json" + }, + { + "name": "BETA PLA High Speed @base", + "sub_path": "filament/BETA/BETA PLA High Speed @base.json" + }, + { + "name": "BETA PLA High Speed @BBL A1", + "sub_path": "filament/BETA/BETA PLA High Speed @BBL A1.json" + }, + { + "name": "BETA PLA High Speed @BBL A1M", + "sub_path": "filament/BETA/BETA PLA High Speed @BBL A1M.json" + }, + { + "name": "BETA PLA High Speed @BBL H2D", + "sub_path": "filament/BETA/BETA PLA High Speed @BBL H2D.json" + }, + { + "name": "BETA PLA High Speed @BBL P1P", + "sub_path": "filament/BETA/BETA PLA High Speed @BBL P1P.json" + }, + { + "name": "BETA PLA High Speed @BBL X1C", + "sub_path": "filament/BETA/BETA PLA High Speed @BBL X1C.json" + }, + { + "name": "BETA HIPS @base", + "sub_path": "filament/BETA/BETA HIPS @base.json" + }, + { + "name": "BETA HIPS @BBL H2D", + "sub_path": "filament/BETA/BETA HIPS @BBL H2D.json" + }, + { + "name": "BETA HIPS @BBL X1C", + "sub_path": "filament/BETA/BETA HIPS @BBL X1C.json" + }, + { + "name": "Bambu ABS @BBL X2D", + "sub_path": "filament/Bambu ABS @BBL X2D.json" + }, + { + "name": "Bambu ABS @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ABS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu ABS-GF @BBL X2D", + "sub_path": "filament/Bambu ABS-GF @BBL X2D.json" + }, + { + "name": "Bambu ABS-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL X2D", + "sub_path": "filament/Bambu Support for ABS @BBL X2D.json" + }, + { + "name": "Bambu Support for ABS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic ABS @BBL X2D", + "sub_path": "filament/Generic ABS @BBL X2D.json" + }, + { + "name": "Generic ABS @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X2D", + "sub_path": "filament/Bambu ASA @BBL X2D.json" + }, + { + "name": "Bambu ASA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-Aero @BBL X2D", + "sub_path": "filament/Bambu ASA-Aero @BBL X2D.json" + }, + { + "name": "Bambu ASA-Aero @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL X2D", + "sub_path": "filament/Bambu ASA-CF @BBL X2D.json" + }, + { + "name": "Bambu ASA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic ASA @BBL X2D", + "sub_path": "filament/Generic ASA @BBL X2D.json" + }, + { + "name": "Generic ASA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic ASA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic BVOH @BBL X2D", + "sub_path": "filament/Generic BVOH @BBL X2D.json" + }, + { + "name": "Generic BVOH @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic BVOH @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic EVA @BBL X2D", + "sub_path": "filament/Generic EVA @BBL X2D.json" + }, + { + "name": "Generic EVA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic EVA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic HIPS @BBL X2D", + "sub_path": "filament/Generic HIPS @BBL X2D.json" + }, + { + "name": "Generic HIPS @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic HIPS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PA-CF @BBL X2D", + "sub_path": "filament/Bambu PA-CF @BBL X2D.json" + }, + { + "name": "Bambu PA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL X2D", + "sub_path": "filament/Bambu PA6-CF @BBL X2D.json" + }, + { + "name": "Bambu PA6-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PA6-GF @BBL X2D", + "sub_path": "filament/Bambu PA6-GF @BBL X2D.json" + }, + { + "name": "Bambu PA6-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL X2D", + "sub_path": "filament/Bambu PAHT-CF @BBL X2D.json" + }, + { + "name": "Bambu PAHT-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PA/PET @BBL X2D", + "sub_path": "filament/Bambu Support For PA PET @BBL X2D.json" + }, + { + "name": "Bambu Support For PA/PET @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support G @BBL X2D", + "sub_path": "filament/Bambu Support G @BBL X2D.json" + }, + { + "name": "Bambu Support G @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support G @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PA @BBL X2D", + "sub_path": "filament/Generic PA @BBL X2D.json" + }, + { + "name": "Generic PA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PA-CF @BBL X2D", + "sub_path": "filament/Generic PA-CF @BBL X2D.json" + }, + { + "name": "Generic PA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL X2D", + "sub_path": "filament/Bambu PC @BBL X2D.json" + }, + { + "name": "Bambu PC @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PC @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X2D", + "sub_path": "filament/Bambu PC FR @BBL X2D.json" + }, + { + "name": "Bambu PC FR @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Generic PC @BBL X2D", + "sub_path": "filament/Generic PC @BBL X2D.json" + }, + { + "name": "Generic PC @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PCTG @BBL X2D", + "sub_path": "filament/Generic PCTG @BBL X2D.json" + }, + { + "name": "Generic PCTG @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PCTG @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PE @BBL X2D", + "sub_path": "filament/Generic PE @BBL X2D.json" + }, + { + "name": "Generic PE @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PE @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PE-CF @BBL X2D", + "sub_path": "filament/Generic PE-CF @BBL X2D.json" + }, + { + "name": "Generic PE-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PE-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PET-CF @BBL X2D", + "sub_path": "filament/Bambu PET-CF @BBL X2D.json" + }, + { + "name": "Bambu PET-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D", + "sub_path": "filament/Bambu PETG Basic @BBL X2D.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X2D", + "sub_path": "filament/Bambu PETG HF @BBL X2D.json" + }, + { + "name": "Bambu PETG HF @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL X2D", + "sub_path": "filament/Bambu PETG-CF @BBL X2D.json" + }, + { + "name": "Bambu PETG-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Generic PETG @BBL X2D", + "sub_path": "filament/Generic PETG @BBL X2D.json" + }, + { + "name": "Generic PETG @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL X2D", + "sub_path": "filament/Generic PETG HF @BBL X2D.json" + }, + { + "name": "Generic PETG HF @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PETG HF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PETG-CF @BBL X2D", + "sub_path": "filament/Generic PETG-CF @BBL X2D.json" + }, + { + "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PHA @BBL X2D", + "sub_path": "filament/Generic PHA @BBL X2D.json" + }, + { + "name": "Generic PHA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PHA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Aero @BBL X2D", + "sub_path": "filament/Bambu PLA Aero @BBL X2D.json" + }, + { + "name": "Bambu PLA Aero @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D", + "sub_path": "filament/Bambu PLA Basic @BBL X2D.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X2D", + "sub_path": "filament/Bambu PLA Dynamic @BBL X2D.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X2D", + "sub_path": "filament/Bambu PLA Galaxy @BBL X2D.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X2D", + "sub_path": "filament/Bambu PLA Glow @BBL X2D.json" + }, + { + "name": "Bambu PLA Glow @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D", + "sub_path": "filament/Bambu PLA Lite @BBL X2D.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL X2D", + "sub_path": "filament/Bambu PLA Marble @BBL X2D.json" + }, + { + "name": "Bambu PLA Marble @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D", + "sub_path": "filament/Bambu PLA Matte @BBL X2D.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL X2D", + "sub_path": "filament/Bambu PLA Metal @BBL X2D.json" + }, + { + "name": "Bambu PLA Metal @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL X2D", + "sub_path": "filament/Bambu PLA Silk @BBL X2D.json" + }, + { + "name": "Bambu PLA Silk @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X2D", + "sub_path": "filament/Bambu PLA Sparkle @BBL X2D.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL X2D", + "sub_path": "filament/Bambu PLA Tough @BBL X2D.json" + }, + { + "name": "Bambu PLA Tough @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL X2D", + "sub_path": "filament/Bambu PLA Wood @BBL X2D.json" + }, + { + "name": "Bambu PLA Wood @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL X2D", + "sub_path": "filament/Bambu PLA-CF @BBL X2D.json" + }, + { + "name": "Bambu PLA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D", + "sub_path": "filament/Bambu Support For PLA @BBL X2D.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support W @BBL X2D", + "sub_path": "filament/Bambu Support W @BBL X2D.json" + }, + { + "name": "Bambu Support W @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support W @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA @BBL X2D", + "sub_path": "filament/Generic PLA @BBL X2D.json" + }, + { + "name": "Generic PLA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL X2D", + "sub_path": "filament/Generic PLA High Speed @BBL X2D.json" + }, + { + "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA Silk @BBL X2D", + "sub_path": "filament/Generic PLA Silk @BBL X2D.json" + }, + { + "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA-CF @BBL X2D", + "sub_path": "filament/Generic PLA-CF @BBL X2D.json" + }, + { + "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PP @BBL X2D", + "sub_path": "filament/Generic PP @BBL X2D.json" + }, + { + "name": "Generic PP @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PP @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PP-CF @BBL X2D", + "sub_path": "filament/Generic PP-CF @BBL X2D.json" + }, + { + "name": "Generic PP-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PP-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PP-GF @BBL X2D", + "sub_path": "filament/Generic PP-GF @BBL X2D.json" + }, + { + "name": "Generic PP-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PP-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PPA-CF @BBL X2D", + "sub_path": "filament/Bambu PPA-CF @BBL X2D.json" + }, + { + "name": "Bambu PPA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PPA-CF @BBL X2D", + "sub_path": "filament/Generic PPA-CF @BBL X2D.json" + }, + { + "name": "Generic PPA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PPA-GF @BBL X2D", + "sub_path": "filament/Generic PPA-GF @BBL X2D.json" + }, + { + "name": "Generic PPA-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PVA @BBL X2D", + "sub_path": "filament/Bambu PVA @BBL X2D.json" + }, + { + "name": "Bambu PVA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PVA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PVA @BBL X2D", + "sub_path": "filament/Generic PVA @BBL X2D.json" + }, + { + "name": "Generic PVA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PVA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL X2D", + "sub_path": "filament/Bambu TPU 85A @BBL X2D.json" + }, + { + "name": "Bambu TPU 85A @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL X2D", + "sub_path": "filament/Bambu TPU 90A @BBL X2D.json" + }, + { + "name": "Bambu TPU 90A @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A @BBL X2D", + "sub_path": "filament/Bambu TPU 95A @BBL X2D.json" + }, + { + "name": "Bambu TPU 95A @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X2D", + "sub_path": "filament/Bambu TPU 95A HF @BBL X2D.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL X2D", + "sub_path": "filament/Bambu TPU for AMS @BBL X2D.json" + }, + { + "name": "Bambu TPU for AMS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic TPU @BBL X2D", + "sub_path": "filament/Generic TPU @BBL X2D.json" + }, + { + "name": "Generic TPU @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic TPU for AMS @BBL X2D", + "sub_path": "filament/Generic TPU for AMS @BBL X2D.json" + }, + { + "name": "Generic TPU for AMS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json" } ], "machine_list": [ @@ -7894,6 +9666,22 @@ { "name": "Bambu Lab H2D Pro 0.8 nozzle", "sub_path": "machine/Bambu Lab H2D Pro 0.8 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.2 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.6 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.6 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.8 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.8 nozzle.json" } ] } diff --git a/resources/profiles/BBL/Bambu Lab X2D_cover.png b/resources/profiles/BBL/Bambu Lab X2D_cover.png new file mode 100644 index 0000000000..7478f9007f Binary files /dev/null and b/resources/profiles/BBL/Bambu Lab X2D_cover.png differ diff --git a/resources/profiles/BBL/cli_config.json b/resources/profiles/BBL/cli_config.json index c20612b7a8..1fd91d685c 100644 --- a/resources/profiles/BBL/cli_config.json +++ b/resources/profiles/BBL/cli_config.json @@ -29,7 +29,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab A1 0.4 nozzle": [ "Bambu Lab P1S 0.4 nozzle", @@ -41,7 +42,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab A1 0.6 nozzle": [ "Bambu Lab P1S 0.6 nozzle", @@ -53,7 +55,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab A1 0.8 nozzle": [ "Bambu Lab P1S 0.8 nozzle", @@ -65,7 +68,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -97,7 +101,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab A1 mini 0.4 nozzle": [ "Bambu Lab P1S 0.4 nozzle", @@ -108,7 +113,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab A1 mini 0.6 nozzle": [ "Bambu Lab P1S 0.6 nozzle", @@ -119,7 +125,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab A1 mini 0.8 nozzle": [ "Bambu Lab P1S 0.8 nozzle", @@ -130,7 +137,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -142,7 +150,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab X1 0.4 nozzle": [ "Bambu Lab A1 mini 0.4 nozzle", @@ -150,7 +159,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab X1 0.6 nozzle": [ "Bambu Lab A1 mini 0.6 nozzle", @@ -158,7 +168,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab X1 0.8 nozzle": [ "Bambu Lab A1 mini 0.8 nozzle", @@ -166,7 +177,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -178,7 +190,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab X1 Carbon 0.4 nozzle": [ "Bambu Lab A1 mini 0.4 nozzle", @@ -186,7 +199,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab X1 Carbon 0.6 nozzle": [ "Bambu Lab A1 mini 0.6 nozzle", @@ -194,7 +208,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab X1 Carbon 0.8 nozzle": [ "Bambu Lab A1 mini 0.8 nozzle", @@ -202,7 +217,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -214,7 +230,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab X1E 0.4 nozzle": [ "Bambu Lab A1 mini 0.4 nozzle", @@ -222,7 +239,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab X1E 0.6 nozzle": [ "Bambu Lab A1 mini 0.6 nozzle", @@ -230,7 +248,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab X1E 0.8 nozzle": [ "Bambu Lab A1 mini 0.8 nozzle", @@ -238,7 +257,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -250,7 +270,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab P1P 0.4 nozzle": [ "Bambu Lab A1 mini 0.4 nozzle", @@ -258,7 +279,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab P1P 0.6 nozzle": [ "Bambu Lab A1 mini 0.6 nozzle", @@ -266,7 +288,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab P1P 0.8 nozzle": [ "Bambu Lab A1 mini 0.8 nozzle", @@ -274,7 +297,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -286,7 +310,8 @@ "Bambu Lab H2D 0.2 nozzle", "Bambu Lab H2D Pro 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab P1S 0.4 nozzle": [ "Bambu Lab A1 mini 0.4 nozzle", @@ -294,7 +319,8 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab P1S 0.6 nozzle": [ "Bambu Lab A1 mini 0.6 nozzle", @@ -302,7 +328,8 @@ "Bambu Lab H2D 0.6 nozzle", "Bambu Lab H2D Pro 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab P1S 0.8 nozzle": [ "Bambu Lab A1 mini 0.8 nozzle", @@ -310,7 +337,8 @@ "Bambu Lab H2D 0.8 nozzle", "Bambu Lab H2D Pro 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -325,7 +353,8 @@ "Bambu Lab A1 0.2 nozzle", "Bambu Lab A1 mini 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab H2D 0.4 nozzle": [ "Bambu Lab P1S 0.4 nozzle", @@ -336,7 +365,8 @@ "Bambu Lab A1 0.4 nozzle", "Bambu Lab A1 mini 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab H2D 0.6 nozzle": [ "Bambu Lab P1S 0.6 nozzle", @@ -347,7 +377,8 @@ "Bambu Lab A1 0.6 nozzle", "Bambu Lab A1 mini 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab H2D 0.8 nozzle": [ "Bambu Lab P1S 0.8 nozzle", @@ -358,7 +389,8 @@ "Bambu Lab A1 0.8 nozzle", "Bambu Lab A1 mini 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -373,7 +405,8 @@ "Bambu Lab A1 0.2 nozzle", "Bambu Lab A1 mini 0.2 nozzle", "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab H2D Pro 0.4 nozzle": [ "Bambu Lab P1S 0.4 nozzle", @@ -384,7 +417,8 @@ "Bambu Lab A1 0.4 nozzle", "Bambu Lab A1 mini 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab H2D Pro 0.6 nozzle": [ "Bambu Lab P1S 0.6 nozzle", @@ -395,7 +429,8 @@ "Bambu Lab A1 0.6 nozzle", "Bambu Lab A1 mini 0.6 nozzle", "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab H2D Pro 0.8 nozzle": [ "Bambu Lab P1S 0.8 nozzle", @@ -406,7 +441,8 @@ "Bambu Lab A1 0.8 nozzle", "Bambu Lab A1 mini 0.8 nozzle", "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -422,7 +458,8 @@ "Bambu Lab X1 0.2 nozzle", "Bambu Lab X1 Carbon 0.2 nozzle", "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab H2S 0.4 nozzle": [ "Bambu Lab A1 0.4 nozzle", @@ -434,7 +471,8 @@ "Bambu Lab X1 0.4 nozzle", "Bambu Lab X1 Carbon 0.4 nozzle", "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab H2S 0.6 nozzle": [ "Bambu Lab A1 0.6 nozzle", @@ -446,7 +484,8 @@ "Bambu Lab X1 0.6 nozzle", "Bambu Lab X1 Carbon 0.6 nozzle", "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab H2S 0.8 nozzle": [ "Bambu Lab A1 0.8 nozzle", @@ -458,7 +497,8 @@ "Bambu Lab X1 0.8 nozzle", "Bambu Lab X1 Carbon 0.8 nozzle", "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" ] } }, @@ -474,7 +514,8 @@ "Bambu Lab P1S 0.2 nozzle", "Bambu Lab X1 0.2 nozzle", "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" ], "Bambu Lab P2S 0.4 nozzle": [ "Bambu Lab A1 0.4 nozzle", @@ -486,7 +527,8 @@ "Bambu Lab P1S 0.4 nozzle", "Bambu Lab X1 0.4 nozzle", "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" ], "Bambu Lab P2S 0.6 nozzle": [ "Bambu Lab A1 0.6 nozzle", @@ -498,7 +540,8 @@ "Bambu Lab P1S 0.6 nozzle", "Bambu Lab X1 0.6 nozzle", "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle" + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" ], "Bambu Lab P2S 0.8 nozzle": [ "Bambu Lab A1 0.8 nozzle", @@ -510,7 +553,68 @@ "Bambu Lab P1S 0.8 nozzle", "Bambu Lab X1 0.8 nozzle", "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle" + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ] + } + }, + "Bambu Lab X2D": { + "downward_check": { + "Bambu Lab X2D 0.2 nozzle": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle" + ], + "Bambu Lab X2D 0.4 nozzle": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle" + ], + "Bambu Lab X2D 0.6 nozzle": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle" + ], + "Bambu Lab X2D 0.8 nozzle": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle" ] } } diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json index a59bb59d3d..b78033c2ac 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AliZPX1FSA04", "name": "AliZ PA-CF @P1-X1", - "from": "system", - "instantiation": "true", "inherits": "AliZ PA-CF @base", + "from": "system", + "setting_id": "AliZPX1FSA04", + "instantiation": "true", "enable_pressure_advance": [ "1" ], diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json index ef430c6bc8..97fe6ec6f6 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AliZPX1FSA04", "name": "AliZ PETG @P1-X1", - "from": "system", - "instantiation": "true", "inherits": "AliZ PETG @base", + "from": "system", + "setting_id": "AliZPX1FSA04", + "instantiation": "true", "enable_pressure_advance": [ "1" ], diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json index ccda6da67c..797a387940 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json @@ -4,13 +4,13 @@ "inherits": "AliZ PETG-CF @base", "from": "system", "setting_id": "AliZPX1FSG50", + "instantiation": "true", "enable_pressure_advance": [ "1" ], "pressure_advance": [ "0.026" ], - "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json index 551ee2ba8d..095c5ab58b 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "AliZPX1FSA04", "name": "AliZ PLA @P1-X1", - "from": "system", - "instantiation": "true", "inherits": "AliZ PLA @base", + "from": "system", + "setting_id": "AliZPX1FSA04", + "instantiation": "true", "enable_pressure_advance": [ "1" ], diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL A1.json new file mode 100644 index 0000000000..97348b871d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA ABS @BBL A1", + "inherits": "BETA ABS @base", + "from": "system", + "setting_id": "BABB00_07", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL H2D.json new file mode 100644 index 0000000000..d4c4fda0ba --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL H2D.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "BETA ABS @BBL H2D", + "inherits": "BETA ABS @base", + "from": "system", + "setting_id": "BABB00_11", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "fan_max_speed": [ + "60" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "35" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "slow_down_layer_time": [ + "12" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL P1P.json new file mode 100644 index 0000000000..c9c9bbfe4b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA ABS @BBL P1P", + "inherits": "BETA ABS @base", + "from": "system", + "setting_id": "BABB00_03", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL X1C.json new file mode 100644 index 0000000000..b6682d512a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ABS @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA ABS @BBL X1C", + "inherits": "BETA ABS @base", + "from": "system", + "setting_id": "BABB00", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @base.json b/resources/profiles/BBL/filament/BETA/BETA ABS @base.json new file mode 100644 index 0000000000..38e7aa5c12 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ABS @base.json @@ -0,0 +1,21 @@ +{ + "type": "filament", + "name": "BETA ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "BABB00", + "instantiation": "false", + "description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "filament_cost": [ + "24.99" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "7.4" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json new file mode 100644 index 0000000000..3aaff7f087 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json @@ -0,0 +1,20 @@ +{ + "type": "filament", + "name": "BETA ASA @BBL A1 0.4 nozzle", + "inherits": "BETA ASA @base", + "from": "system", + "setting_id": "BASB00_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..66569a778a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json @@ -0,0 +1,149 @@ +{ + "type": "filament", + "name": "BETA ASA @BBL H2D 0.4 nozzle", + "inherits": "BETA ASA @base", + "from": "system", + "setting_id": "BASB00_13", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.007" + ], + "counter_coef_3": [ + "0.003" + ], + "counter_limit_max": [ + "0.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "35" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.006" + ], + "hole_coef_3": [ + "0.25" + ], + "hole_limit_min": [ + "-0.088" + ], + "hole_limit_max": [ + "0.14" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json new file mode 100644 index 0000000000..3420b95e62 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json @@ -0,0 +1,126 @@ +{ + "type": "filament", + "name": "BETA ASA @BBL X1C 0.4 nozzle", + "inherits": "BETA ASA @base", + "from": "system", + "setting_id": "BASB00_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @base.json b/resources/profiles/BBL/filament/BETA/BETA ASA @base.json new file mode 100644 index 0000000000..a36f654b02 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA ASA @base.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "BETA ASA @base", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "BASB00", + "instantiation": "false", + "description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "35" + ], + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.05" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "BETA" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "4.9" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL H2D.json new file mode 100644 index 0000000000..7975343472 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL H2D.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA HIPS @BBL H2D", + "inherits": "BETA HIPS @base", + "from": "system", + "setting_id": "BHIB00_06", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL X1C.json new file mode 100644 index 0000000000..7f8204ab99 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL X1C.json @@ -0,0 +1,133 @@ +{ + "type": "filament", + "name": "BETA HIPS @BBL X1C", + "inherits": "BETA HIPS @base", + "from": "system", + "setting_id": "BHIB00_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA HIPS @base.json b/resources/profiles/BBL/filament/BETA/BETA HIPS @base.json new file mode 100644 index 0000000000..2647bc3397 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA HIPS @base.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "BETA HIPS @base", + "inherits": "fdm_filament_hips", + "from": "system", + "filament_id": "BHIB00", + "instantiation": "false", + "filament_is_support": [ + "1" + ], + "filament_vendor": [ + "BETA" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL H2D.json new file mode 100644 index 0000000000..283b174880 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL H2D.json @@ -0,0 +1,139 @@ +{ + "type": "filament", + "name": "BETA PAHT-CF @BBL H2D", + "inherits": "BETA PAHT-CF @base", + "from": "system", + "setting_id": "BPAB00_01", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00545" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL P1P.json new file mode 100644 index 0000000000..020684ae9d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL P1P.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "BETA PAHT-CF @BBL P1P", + "inherits": "BETA PAHT-CF @base", + "from": "system", + "setting_id": "BPAB00_10", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL X1C.json new file mode 100644 index 0000000000..2d07f60dd7 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL X1C.json @@ -0,0 +1,133 @@ +{ + "type": "filament", + "name": "BETA PAHT-CF @BBL X1C", + "inherits": "BETA PAHT-CF @base", + "from": "system", + "setting_id": "BPAB00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json new file mode 100644 index 0000000000..c0116f418c --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json @@ -0,0 +1,48 @@ +{ + "type": "filament", + "name": "BETA PAHT-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "BPAB00", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "94.99" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "BETA" + ], + "full_fan_speed_layer": [ + "2" + ], + "impact_strength_z": [ + "13.3" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "180" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1.json new file mode 100644 index 0000000000..5d2672ea39 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @BBL A1", + "inherits": "BETA PEBA 90A @base", + "from": "system", + "setting_id": "BPBB00_04", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1M.json new file mode 100644 index 0000000000..65a899ec25 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1M.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @BBL A1M", + "inherits": "BETA PEBA 90A @base", + "from": "system", + "setting_id": "BPBB00_05", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL H2D.json new file mode 100644 index 0000000000..15e570c0ef --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL H2D.json @@ -0,0 +1,145 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @BBL H2D", + "inherits": "BETA PEBA 90A @base", + "from": "system", + "setting_id": "BPBB00_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7" + ], + "filament_printable": [ + "2" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "195", + "195" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL P1P.json new file mode 100644 index 0000000000..d84427a067 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL P1P.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @BBL P1P", + "inherits": "BETA PEBA 90A @base", + "from": "system", + "setting_id": "BPBB00_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL X1C.json new file mode 100644 index 0000000000..9787ec8671 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @BBL X1C", + "inherits": "BETA PEBA 90A @base", + "from": "system", + "setting_id": "BPBB00_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json new file mode 100644 index 0000000000..d92ceb29b1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "BPBB00", + "instantiation": "false", + "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", + "filament_cost": [ + "59.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1.json new file mode 100644 index 0000000000..e66cac62b6 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG @BBL A1", + "inherits": "BETA PETG @base", + "from": "system", + "setting_id": "BPGB00_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..0831aa7d3e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG @base", + "from": "system", + "setting_id": "BPGB00_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..5f581768f2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG @base", + "from": "system", + "setting_id": "BPGB00_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL X1C.json new file mode 100644 index 0000000000..5a92aaf386 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG @BBL X1C", + "inherits": "BETA PETG @base", + "from": "system", + "setting_id": "BPGB00_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG @base.json new file mode 100644 index 0000000000..9d15c065f5 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB00", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1.json new file mode 100644 index 0000000000..4afed91de9 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Fluorescence @BBL A1", + "inherits": "BETA PETG Fluorescence @base", + "from": "system", + "setting_id": "BPGB02_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..3dea382bb2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Fluorescence @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Fluorescence @base", + "from": "system", + "setting_id": "BPGB02_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..62dfb7753f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Fluorescence @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Fluorescence @base", + "from": "system", + "setting_id": "BPGB02_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL X1C.json new file mode 100644 index 0000000000..88562c9da2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Fluorescence @BBL X1C", + "inherits": "BETA PETG Fluorescence @base", + "from": "system", + "setting_id": "BPGB02_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @base.json new file mode 100644 index 0000000000..b9b0032612 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Fluorescence @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB02", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1.json new file mode 100644 index 0000000000..d3a13707b4 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Glitter @BBL A1", + "inherits": "BETA PETG Glitter @base", + "from": "system", + "setting_id": "BPGB03_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..2b12feac1e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Glitter @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Glitter @base", + "from": "system", + "setting_id": "BPGB03_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..988f09054d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Glitter @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Glitter @base", + "from": "system", + "setting_id": "BPGB03_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL X1C.json new file mode 100644 index 0000000000..8eb9ef276f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Glitter @BBL X1C", + "inherits": "BETA PETG Glitter @base", + "from": "system", + "setting_id": "BPGB03_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @base.json new file mode 100644 index 0000000000..70d84d21d3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Glitter @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB03", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1.json new file mode 100644 index 0000000000..039a6b5a77 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Glow @BBL A1", + "inherits": "BETA PETG Glow @base", + "from": "system", + "setting_id": "BPGB04_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..30a1290c7f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Glow @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Glow @base", + "from": "system", + "setting_id": "BPGB04_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..d460a13719 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Glow @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Glow @base", + "from": "system", + "setting_id": "BPGB04_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL X1C.json new file mode 100644 index 0000000000..e599deed02 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Glow @BBL X1C", + "inherits": "BETA PETG Glow @base", + "from": "system", + "setting_id": "BPGB04_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @base.json new file mode 100644 index 0000000000..7da99e23fc --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Glow @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Glow @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB04", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1.json new file mode 100644 index 0000000000..8c732afcf6 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Gradient @BBL A1", + "inherits": "BETA PETG Gradient @base", + "from": "system", + "setting_id": "BPGB05_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..c7dd29444b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Gradient @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Gradient @base", + "from": "system", + "setting_id": "BPGB05_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..078a954fd6 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Gradient @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Gradient @base", + "from": "system", + "setting_id": "BPGB05_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL X1C.json new file mode 100644 index 0000000000..0bca3fd849 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Gradient @BBL X1C", + "inherits": "BETA PETG Gradient @base", + "from": "system", + "setting_id": "BPGB05_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @base.json new file mode 100644 index 0000000000..6f6e891503 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Gradient @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB05", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1.json new file mode 100644 index 0000000000..4fa56ff56c --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "BETA PETG HF @BBL A1", + "inherits": "BETA PETG HF @base", + "from": "system", + "setting_id": "BPGB06_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1M.json new file mode 100644 index 0000000000..4594b057e3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1M.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "BETA PETG HF @BBL A1M", + "inherits": "BETA PETG HF @base", + "from": "system", + "setting_id": "BPGB06_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..5af6977e37 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json @@ -0,0 +1,164 @@ +{ + "type": "filament", + "name": "BETA PETG HF @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG HF @base", + "from": "system", + "setting_id": "BPGB06_09", + "instantiation": "true", + "counter_coef_2": [ + "0.007" + ], + "counter_coef_3": [ + "0.003" + ], + "counter_limit_max": [ + "0.1" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "25", + "40" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "fan_max_speed": [ + "30" + ], + "hole_coef_2": [ + "-0.006" + ], + "hole_coef_3": [ + "0.1" + ], + "hole_limit_min": [ + "0.1" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL X1C.json new file mode 100644 index 0000000000..e880bef58f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL X1C.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG HF @BBL X1C", + "inherits": "BETA PETG HF @base", + "from": "system", + "setting_id": "BPGB06_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG HF @base.json new file mode 100644 index 0000000000..1ce6e4299e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG HF @base.json @@ -0,0 +1,89 @@ +{ + "type": "filament", + "name": "BETA PETG HF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB06", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "BETA" + ], + "filament_change_length": [ + "12" + ], + "filament_prime_volume": [ + "30" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10.6" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1.json new file mode 100644 index 0000000000..178a75b1cc --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Heat Color Change @BBL A1", + "inherits": "BETA PETG Heat Color Change @base", + "from": "system", + "setting_id": "BPGB01_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..62371b18de --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Heat Color Change @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Heat Color Change @base", + "from": "system", + "setting_id": "BPGB01_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..e94aec5705 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Heat Color Change @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Heat Color Change @base", + "from": "system", + "setting_id": "BPGB01_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL X1C.json new file mode 100644 index 0000000000..9b3cec67e5 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Heat Color Change @BBL X1C", + "inherits": "BETA PETG Heat Color Change @base", + "from": "system", + "setting_id": "BPGB01_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @base.json new file mode 100644 index 0000000000..32a62c63b7 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Heat Color Change @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB01", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1.json new file mode 100644 index 0000000000..829f200312 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Marble @BBL A1", + "inherits": "BETA PETG Marble @base", + "from": "system", + "setting_id": "BPGB07_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..b0cb67eb0e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Marble @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Marble @base", + "from": "system", + "setting_id": "BPGB07_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..2f510ad7ab --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Marble @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Marble @base", + "from": "system", + "setting_id": "BPGB07_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL X1C.json new file mode 100644 index 0000000000..3b38034011 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Marble @BBL X1C", + "inherits": "BETA PETG Marble @base", + "from": "system", + "setting_id": "BPGB07_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @base.json new file mode 100644 index 0000000000..30c79b2db5 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Marble @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Marble @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB07", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1.json new file mode 100644 index 0000000000..a8062a0de5 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Matte @BBL A1", + "inherits": "BETA PETG Matte @base", + "from": "system", + "setting_id": "BPGB08_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..2ed2cd9930 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Matte @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Matte @base", + "from": "system", + "setting_id": "BPGB08_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..edfdacc993 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Matte @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Matte @base", + "from": "system", + "setting_id": "BPGB08_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL X1C.json new file mode 100644 index 0000000000..763594b41d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Matte @BBL X1C", + "inherits": "BETA PETG Matte @base", + "from": "system", + "setting_id": "BPGB08_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @base.json new file mode 100644 index 0000000000..c7278e20dd --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Matte @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Matte @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB08", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1.json new file mode 100644 index 0000000000..715ebc1ad1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Metallic @BBL A1", + "inherits": "BETA PETG Metallic @base", + "from": "system", + "setting_id": "BPGB09_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..85b11b2e80 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG Metallic @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG Metallic @base", + "from": "system", + "setting_id": "BPGB09_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..c00e63bf3d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG Metallic @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Metallic @base", + "from": "system", + "setting_id": "BPGB09_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL X1C.json new file mode 100644 index 0000000000..71f0be98d3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG Metallic @BBL X1C", + "inherits": "BETA PETG Metallic @base", + "from": "system", + "setting_id": "BPGB09_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @base.json new file mode 100644 index 0000000000..b2d9ce8524 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG Metallic @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB09", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1.json new file mode 100644 index 0000000000..53202d68d2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PETG Transparent @BBL A1", + "inherits": "BETA PETG Transparent @base", + "from": "system", + "setting_id": "BPGB10_05", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1M.json new file mode 100644 index 0000000000..0419cdd3d4 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1M.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PETG Transparent @BBL A1M", + "inherits": "BETA PETG Transparent @base", + "from": "system", + "setting_id": "BPGB10_02", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..e0e2c984aa --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "BETA PETG Transparent @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG Transparent @base", + "from": "system", + "setting_id": "BPGB10_06", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "slow_down_layer_time": [ + "8" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL X1C.json new file mode 100644 index 0000000000..102dbce7bf --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL X1C.json @@ -0,0 +1,126 @@ +{ + "type": "filament", + "name": "BETA PETG Transparent @BBL X1C", + "inherits": "BETA PETG Transparent @base", + "from": "system", + "setting_id": "BPGB10_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.3", + "0.3" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @base.json new file mode 100644 index 0000000000..6378e0cfdd --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @base.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "BETA PETG Transparent @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB10", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "BETA" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "7.2" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1.json new file mode 100644 index 0000000000..fd0e5b8e0d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG UV Color Change @BBL A1", + "inherits": "BETA PETG UV Color Change @base", + "from": "system", + "setting_id": "BPGB11_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..9b8d64318c --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PETG UV Color Change @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG UV Color Change @base", + "from": "system", + "setting_id": "BPGB11_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..2ff953dc88 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json @@ -0,0 +1,138 @@ +{ + "type": "filament", + "name": "BETA PETG UV Color Change @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG UV Color Change @base", + "from": "system", + "setting_id": "BPGB11_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL X1C.json new file mode 100644 index 0000000000..cd5be66bf3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PETG UV Color Change @BBL X1C", + "inherits": "BETA PETG UV Color Change @base", + "from": "system", + "setting_id": "BPGB11_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @base.json new file mode 100644 index 0000000000..53717f5be3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @base.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "BETA PETG UV Color Change @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB11", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "filament_prime_volume_nc": [ + "60" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "override_process_overhang_speed": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json new file mode 100644 index 0000000000..4e15c8fc86 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "BETA PETG-CF @BBL A1 0.4 nozzle", + "inherits": "BETA PETG-CF @base", + "from": "system", + "setting_id": "BPGB12_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..d19e61f946 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "BETA PETG-CF @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG-CF @base", + "from": "system", + "setting_id": "BPGB12_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "9" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..fd47d4f843 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json @@ -0,0 +1,155 @@ +{ + "type": "filament", + "name": "BETA PETG-CF @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG-CF @base", + "from": "system", + "setting_id": "BPGB12_08", + "instantiation": "true", + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0112" + ], + "counter_limit_max": [ + "0.065" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0121" + ], + "hole_coef_3": [ + "0.145" + ], + "hole_limit_min": [ + "0.068" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json new file mode 100644 index 0000000000..845086dfe1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "BETA PETG-CF @BBL P1P 0.4 nozzle", + "inherits": "BETA PETG-CF @base", + "from": "system", + "setting_id": "BPGB12_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json new file mode 100644 index 0000000000..4c8bf18ae3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "BETA PETG-CF @BBL X1C 0.4 nozzle", + "inherits": "BETA PETG-CF @base", + "from": "system", + "setting_id": "BPGB12_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @base.json new file mode 100644 index 0000000000..165d5a56b8 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-CF @base.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "BETA PETG-CF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB12", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "BETA" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10.7" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json new file mode 100644 index 0000000000..719dd3ddfe --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "BETA PETG-GF @BBL A1 0.4 nozzle", + "inherits": "BETA PETG-GF @base", + "from": "system", + "setting_id": "BPGB13_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..f874d81f46 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "BETA PETG-GF @BBL A1M 0.4 nozzle", + "inherits": "BETA PETG-GF @base", + "from": "system", + "setting_id": "BPGB13_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "9" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..fd093d8506 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json @@ -0,0 +1,155 @@ +{ + "type": "filament", + "name": "BETA PETG-GF @BBL H2D 0.4 nozzle", + "inherits": "BETA PETG-GF @base", + "from": "system", + "setting_id": "BPGB13_08", + "instantiation": "true", + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0112" + ], + "counter_limit_max": [ + "0.065" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0121" + ], + "hole_coef_3": [ + "0.145" + ], + "hole_limit_min": [ + "0.068" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json new file mode 100644 index 0000000000..f700b2149e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "BETA PETG-GF @BBL P1P 0.4 nozzle", + "inherits": "BETA PETG-GF @base", + "from": "system", + "setting_id": "BPGB13_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json new file mode 100644 index 0000000000..32b0daf255 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "BETA PETG-GF @BBL X1C 0.4 nozzle", + "inherits": "BETA PETG-GF @base", + "from": "system", + "setting_id": "BPGB13_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @base.json b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @base.json new file mode 100644 index 0000000000..6261eaa7d2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PETG-GF @base.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "BETA PETG-GF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "BPGB13", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "BETA" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10.7" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1.json new file mode 100644 index 0000000000..3e0545627d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1.json @@ -0,0 +1,46 @@ +{ + "type": "filament", + "name": "BETA PLA Basic @BBL A1", + "inherits": "BETA PLA Basic @base", + "from": "system", + "setting_id": "BPLB00_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1M.json new file mode 100644 index 0000000000..074c8bbad6 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1M.json @@ -0,0 +1,46 @@ +{ + "type": "filament", + "name": "BETA PLA Basic @BBL A1M", + "inherits": "BETA PLA Basic @base", + "from": "system", + "setting_id": "BPLB00_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL H2D.json new file mode 100644 index 0000000000..f309ce4697 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL H2D.json @@ -0,0 +1,155 @@ +{ + "type": "filament", + "name": "BETA PLA Basic @BBL H2D", + "inherits": "BETA PLA Basic @base", + "from": "system", + "setting_id": "BPLB00_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "25", + "40" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_3": [ + "0.18" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL P1P.json new file mode 100644 index 0000000000..a9b3b41e67 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Basic @BBL P1P", + "inherits": "BETA PLA Basic @base", + "from": "system", + "setting_id": "BPLB00_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL X1C.json new file mode 100644 index 0000000000..2efae39e66 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA PLA Basic @BBL X1C", + "inherits": "BETA PLA Basic @base", + "from": "system", + "setting_id": "BPLB00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @base.json new file mode 100644 index 0000000000..1653813bc1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Basic @base.json @@ -0,0 +1,48 @@ +{ + "type": "filament", + "name": "BETA PLA Basic @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB00", + "instantiation": "false", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_change_length": [ + "5" + ], + "filament_prime_volume": [ + "30" + ], + "impact_strength_z": [ + "13.8" + ], + "compatible_printers": [], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1.json new file mode 100644 index 0000000000..da7e730707 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Chameleon @BBL A1", + "inherits": "BETA PLA Chameleon @base", + "from": "system", + "setting_id": "BPLB02_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1M.json new file mode 100644 index 0000000000..667a27517c --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Chameleon @BBL A1M", + "inherits": "BETA PLA Chameleon @base", + "from": "system", + "setting_id": "BPLB02_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL H2D.json new file mode 100644 index 0000000000..61921e055e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Chameleon @BBL H2D", + "inherits": "BETA PLA Chameleon @base", + "from": "system", + "setting_id": "BPLB02_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL P1P.json new file mode 100644 index 0000000000..896b695cad --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Chameleon @BBL P1P", + "inherits": "BETA PLA Chameleon @base", + "from": "system", + "setting_id": "BPLB02_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL X1C.json new file mode 100644 index 0000000000..ecc1332410 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Chameleon @BBL X1C", + "inherits": "BETA PLA Chameleon @base", + "from": "system", + "setting_id": "BPLB02_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @base.json new file mode 100644 index 0000000000..cb618e7bd0 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Chameleon @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB02", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "6.5" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1.json new file mode 100644 index 0000000000..07ccf57777 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Fluorescence @BBL A1", + "inherits": "BETA PLA Fluorescence @base", + "from": "system", + "setting_id": "BPLB04_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1M.json new file mode 100644 index 0000000000..fe2a32394a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Fluorescence @BBL A1M", + "inherits": "BETA PLA Fluorescence @base", + "from": "system", + "setting_id": "BPLB04_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL H2D.json new file mode 100644 index 0000000000..4dfe6a3041 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Fluorescence @BBL H2D", + "inherits": "BETA PLA Fluorescence @base", + "from": "system", + "setting_id": "BPLB04_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL P1P.json new file mode 100644 index 0000000000..fa085c4b5b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Fluorescence @BBL P1P", + "inherits": "BETA PLA Fluorescence @base", + "from": "system", + "setting_id": "BPLB04_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL X1C.json new file mode 100644 index 0000000000..f7930db006 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Fluorescence @BBL X1C", + "inherits": "BETA PLA Fluorescence @base", + "from": "system", + "setting_id": "BPLB04_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @base.json new file mode 100644 index 0000000000..684ce8866f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Fluorescence @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB04", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "6.5" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1.json new file mode 100644 index 0000000000..a50ea558f6 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "BETA PLA Glitter @BBL A1", + "inherits": "BETA PLA Glitter @base", + "from": "system", + "setting_id": "BPLB05_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1M.json new file mode 100644 index 0000000000..e9f9995415 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1M.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "BETA PLA Glitter @BBL A1M", + "inherits": "BETA PLA Glitter @base", + "from": "system", + "setting_id": "BPLB05_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL H2D.json new file mode 100644 index 0000000000..30a169c731 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Glitter @BBL H2D", + "inherits": "BETA PLA Glitter @base", + "from": "system", + "setting_id": "BPLB05_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL P1P.json new file mode 100644 index 0000000000..56fbd91b1f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Glitter @BBL P1P", + "inherits": "BETA PLA Glitter @base", + "from": "system", + "setting_id": "BPLB05_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL X1C.json new file mode 100644 index 0000000000..27ef9b6bb1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Glitter @BBL X1C", + "inherits": "BETA PLA Glitter @base", + "from": "system", + "setting_id": "BPLB05_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @base.json new file mode 100644 index 0000000000..d180d4fb04 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Glitter @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB05", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "10.3" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1.json new file mode 100644 index 0000000000..b3e3f5810f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Glow @BBL A1", + "inherits": "BETA PLA Glow @base", + "from": "system", + "setting_id": "BPLB06_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1M.json new file mode 100644 index 0000000000..ce16e93ea2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Glow @BBL A1M", + "inherits": "BETA PLA Glow @base", + "from": "system", + "setting_id": "BPLB06_16", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL H2D.json new file mode 100644 index 0000000000..f36dad2a44 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Glow @BBL H2D", + "inherits": "BETA PLA Glow @base", + "from": "system", + "setting_id": "BPLB06_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL P1P.json new file mode 100644 index 0000000000..4e1abbead0 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Glow @BBL P1P", + "inherits": "BETA PLA Glow @base", + "from": "system", + "setting_id": "BPLB06_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL X1C.json new file mode 100644 index 0000000000..b7ed381bd3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA PLA Glow @BBL X1C", + "inherits": "BETA PLA Glow @base", + "from": "system", + "setting_id": "BPLB06_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @base.json new file mode 100644 index 0000000000..05657ebd86 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Glow @base.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "BETA PLA Glow @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB06", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "19.8" + ], + "temperature_vitrification": [ + "45" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1.json new file mode 100644 index 0000000000..93a1e0c8a7 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Gradient @BBL A1", + "inherits": "BETA PLA Gradient @base", + "from": "system", + "setting_id": "BPLB07_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1M.json new file mode 100644 index 0000000000..a29b928941 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Gradient @BBL A1M", + "inherits": "BETA PLA Gradient @base", + "from": "system", + "setting_id": "BPLB07_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL H2D.json new file mode 100644 index 0000000000..3657d33348 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Gradient @BBL H2D", + "inherits": "BETA PLA Gradient @base", + "from": "system", + "setting_id": "BPLB07_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL P1P.json new file mode 100644 index 0000000000..38ca268766 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Gradient @BBL P1P", + "inherits": "BETA PLA Gradient @base", + "from": "system", + "setting_id": "BPLB07_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL X1C.json new file mode 100644 index 0000000000..28167832c7 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Gradient @BBL X1C", + "inherits": "BETA PLA Gradient @base", + "from": "system", + "setting_id": "BPLB07_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @base.json new file mode 100644 index 0000000000..f6cb4e3193 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Gradient @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB07", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "6.5" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1.json new file mode 100644 index 0000000000..f07c12540f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Heat Color Change @BBL A1", + "inherits": "BETA PLA Heat Color Change @base", + "from": "system", + "setting_id": "BPLB03_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1M.json new file mode 100644 index 0000000000..057ac94128 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Heat Color Change @BBL A1M", + "inherits": "BETA PLA Heat Color Change @base", + "from": "system", + "setting_id": "BPLB03_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL H2D.json new file mode 100644 index 0000000000..7777bdb4ca --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Heat Color Change @BBL H2D", + "inherits": "BETA PLA Heat Color Change @base", + "from": "system", + "setting_id": "BPLB03_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL P1P.json new file mode 100644 index 0000000000..0b8b264d0f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Heat Color Change @BBL P1P", + "inherits": "BETA PLA Heat Color Change @base", + "from": "system", + "setting_id": "BPLB03_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL X1C.json new file mode 100644 index 0000000000..96ae68563e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Heat Color Change @BBL X1C", + "inherits": "BETA PLA Heat Color Change @base", + "from": "system", + "setting_id": "BPLB03_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @base.json new file mode 100644 index 0000000000..6f55ffdab8 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Heat Color Change @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB03", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "6.5" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1.json new file mode 100644 index 0000000000..0f8dc55aec --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @BBL A1", + "inherits": "BETA PLA High Speed @base", + "from": "system", + "setting_id": "BPLB20_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1M.json new file mode 100644 index 0000000000..a9a989fa0b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1M.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @BBL A1M", + "inherits": "BETA PLA High Speed @base", + "from": "system", + "setting_id": "BPLB20_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL H2D.json new file mode 100644 index 0000000000..c353b206f8 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @BBL H2D", + "inherits": "BETA PLA High Speed @base", + "from": "system", + "setting_id": "BPLB20_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "slow_down_layer_time": [ + "4" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL P1P.json new file mode 100644 index 0000000000..36f42f9c42 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL P1P.json @@ -0,0 +1,139 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @BBL P1P", + "inherits": "BETA PLA High Speed @base", + "from": "system", + "setting_id": "BPLB20_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL X1C.json new file mode 100644 index 0000000000..0c6aa6b8b2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL X1C.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @BBL X1C", + "inherits": "BETA PLA High Speed @base", + "from": "system", + "setting_id": "BPLB20_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json new file mode 100644 index 0000000000..604604cb04 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json @@ -0,0 +1,20 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB20", + "instantiation": "false", + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_vendor": [ + "BETA" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1.json new file mode 100644 index 0000000000..b8ccc3af16 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA High Temp @BBL A1", + "inherits": "BETA PLA High Temp @base", + "from": "system", + "setting_id": "BPLB18_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1M.json new file mode 100644 index 0000000000..c7bca3f5c4 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA High Temp @BBL A1M", + "inherits": "BETA PLA High Temp @base", + "from": "system", + "setting_id": "BPLB18_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL H2D.json new file mode 100644 index 0000000000..08653bbf37 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL H2D.json @@ -0,0 +1,148 @@ +{ + "type": "filament", + "name": "BETA PLA High Temp @BBL H2D", + "inherits": "BETA PLA High Temp @base", + "from": "system", + "setting_id": "BPLB18_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "6" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL P1P.json new file mode 100644 index 0000000000..25a0522a02 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA High Temp @BBL P1P", + "inherits": "BETA PLA High Temp @base", + "from": "system", + "setting_id": "BPLB18_03", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL X1C.json new file mode 100644 index 0000000000..e221c28c18 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL X1C.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA High Temp @BBL X1C", + "inherits": "BETA PLA High Temp @base", + "from": "system", + "setting_id": "BPLB18_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @base.json new file mode 100644 index 0000000000..7ac72d59fa --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @base.json @@ -0,0 +1,39 @@ +{ + "type": "filament", + "name": "BETA PLA High Temp @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB18", + "instantiation": "false", + "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "8.5" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1.json new file mode 100644 index 0000000000..4bff45b61d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Marble @BBL A1", + "inherits": "BETA PLA Marble @base", + "from": "system", + "setting_id": "BPLB08_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1M.json new file mode 100644 index 0000000000..3ad98ecb34 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Marble @BBL A1M", + "inherits": "BETA PLA Marble @base", + "from": "system", + "setting_id": "BPLB08_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL H2D.json new file mode 100644 index 0000000000..decacdcc40 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Marble @BBL H2D", + "inherits": "BETA PLA Marble @base", + "from": "system", + "setting_id": "BPLB08_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL P1P.json new file mode 100644 index 0000000000..2e7cf93c79 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Marble @BBL P1P", + "inherits": "BETA PLA Marble @base", + "from": "system", + "setting_id": "BPLB08_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL X1C.json new file mode 100644 index 0000000000..bfc904d686 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Marble @BBL X1C", + "inherits": "BETA PLA Marble @base", + "from": "system", + "setting_id": "BPLB08_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @base.json new file mode 100644 index 0000000000..c27f1b4fd1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Marble @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Marble @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB08", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "6.5" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1.json new file mode 100644 index 0000000000..5791eaacb1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "BETA PLA Matte @BBL A1", + "inherits": "BETA PLA Matte @base", + "from": "system", + "setting_id": "BPLB09_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1M.json new file mode 100644 index 0000000000..d2dace4b32 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1M.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "BETA PLA Matte @BBL A1M", + "inherits": "BETA PLA Matte @base", + "from": "system", + "setting_id": "BPLB09_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL H2D.json new file mode 100644 index 0000000000..ef3fa05d53 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL H2D.json @@ -0,0 +1,161 @@ +{ + "type": "filament", + "name": "BETA PLA Matte @BBL H2D", + "inherits": "BETA PLA Matte @base", + "from": "system", + "setting_id": "BPLB09_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_min": [ + "-0.4" + ], + "counter_limit_max": [ + "0.05" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "25", + "40" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.18" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL P1P.json new file mode 100644 index 0000000000..8076797fb8 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Matte @BBL P1P", + "inherits": "BETA PLA Matte @base", + "from": "system", + "setting_id": "BPLB09_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL X1C.json new file mode 100644 index 0000000000..dea5b1f08b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA PLA Matte @BBL X1C", + "inherits": "BETA PLA Matte @base", + "from": "system", + "setting_id": "BPLB09", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @base.json new file mode 100644 index 0000000000..d67331d549 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Matte @base.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "BETA PLA Matte @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB09", + "instantiation": "false", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "impact_strength_z": [ + "6.6" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1.json new file mode 100644 index 0000000000..0824f7da2a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Metal @BBL A1", + "inherits": "BETA PLA Metal @base", + "from": "system", + "setting_id": "BPLB10_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1M.json new file mode 100644 index 0000000000..7c845e3bc0 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Metal @BBL A1M", + "inherits": "BETA PLA Metal @base", + "from": "system", + "setting_id": "BPLB10_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL H2D.json new file mode 100644 index 0000000000..7dd3a3f16d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Metal @BBL H2D", + "inherits": "BETA PLA Metal @base", + "from": "system", + "setting_id": "BPLB10_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL P1P.json new file mode 100644 index 0000000000..48eede1a01 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Metal @BBL P1P", + "inherits": "BETA PLA Metal @base", + "from": "system", + "setting_id": "BPLB10_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL X1C.json new file mode 100644 index 0000000000..263bf64877 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Metal @BBL X1C", + "inherits": "BETA PLA Metal @base", + "from": "system", + "setting_id": "BPLB10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @base.json new file mode 100644 index 0000000000..3a5668800d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metal @base.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "name": "BETA PLA Metal @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB10", + "instantiation": "false", + "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_seam_type": [ + "none" + ], + "impact_strength_z": [ + "16.8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1.json new file mode 100644 index 0000000000..87c03f5dc7 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Metallic @BBL A1", + "inherits": "BETA PLA Metallic @base", + "from": "system", + "setting_id": "BPLB11_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1M.json new file mode 100644 index 0000000000..685c0be389 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Metallic @BBL A1M", + "inherits": "BETA PLA Metallic @base", + "from": "system", + "setting_id": "BPLB11_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL H2D.json new file mode 100644 index 0000000000..23e0eada1d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Metallic @BBL H2D", + "inherits": "BETA PLA Metallic @base", + "from": "system", + "setting_id": "BPLB11_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL P1P.json new file mode 100644 index 0000000000..eb1d1f6804 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Metallic @BBL P1P", + "inherits": "BETA PLA Metallic @base", + "from": "system", + "setting_id": "BPLB11_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL X1C.json new file mode 100644 index 0000000000..edc372c4c8 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Metallic @BBL X1C", + "inherits": "BETA PLA Metallic @base", + "from": "system", + "setting_id": "BPLB11", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @base.json new file mode 100644 index 0000000000..5c1c8f3ddf --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @base.json @@ -0,0 +1,30 @@ +{ + "type": "filament", + "name": "BETA PLA Metallic @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB11", + "instantiation": "false", + "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_seam_type": [ + "none" + ], + "impact_strength_z": [ + "16.8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1.json new file mode 100644 index 0000000000..c8b2a6fa6a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1.json @@ -0,0 +1,46 @@ +{ + "type": "filament", + "name": "BETA PLA PRO @BBL A1", + "inherits": "BETA PLA PRO @base", + "from": "system", + "setting_id": "BPLB12_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1M.json new file mode 100644 index 0000000000..fe1de91251 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1M.json @@ -0,0 +1,46 @@ +{ + "type": "filament", + "name": "BETA PLA PRO @BBL A1M", + "inherits": "BETA PLA PRO @base", + "from": "system", + "setting_id": "BPLB12_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL H2D.json new file mode 100644 index 0000000000..13aaebc092 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL H2D.json @@ -0,0 +1,155 @@ +{ + "type": "filament", + "name": "BETA PLA PRO @BBL H2D", + "inherits": "BETA PLA PRO @base", + "from": "system", + "setting_id": "BPLB12_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "25", + "40" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_3": [ + "0.18" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL P1P.json new file mode 100644 index 0000000000..ded38c78d8 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA PRO @BBL P1P", + "inherits": "BETA PLA PRO @base", + "from": "system", + "setting_id": "BPLB12_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL X1C.json new file mode 100644 index 0000000000..bb7581f809 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA PLA PRO @BBL X1C", + "inherits": "BETA PLA PRO @base", + "from": "system", + "setting_id": "BPLB12", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @base.json new file mode 100644 index 0000000000..340b2c88ec --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA PRO @base.json @@ -0,0 +1,48 @@ +{ + "type": "filament", + "name": "BETA PLA PRO @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB12", + "instantiation": "false", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_change_length": [ + "5" + ], + "filament_prime_volume": [ + "30" + ], + "impact_strength_z": [ + "13.8" + ], + "compatible_printers": [], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1.json new file mode 100644 index 0000000000..0fa19d6760 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Silk @BBL A1", + "inherits": "BETA PLA Silk @base", + "from": "system", + "setting_id": "BPLB13_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1M.json new file mode 100644 index 0000000000..eb9a1c4d17 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Silk @BBL A1M", + "inherits": "BETA PLA Silk @base", + "from": "system", + "setting_id": "BPLB13_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL H2D.json new file mode 100644 index 0000000000..513d2a4aa7 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL H2D.json @@ -0,0 +1,160 @@ +{ + "type": "filament", + "name": "BETA PLA Silk @BBL H2D", + "inherits": "BETA PLA Silk @base", + "from": "system", + "setting_id": "BPLB13_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.02" + ], + "counter_coef_3": [ + "-0.01" + ], + "counter_limit_min": [ + "-0.05" + ], + "counter_limit_max": [ + "0.05" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.2" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "slow_down_layer_time": [ + "6" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL P1P.json new file mode 100644 index 0000000000..e8cbc2e14b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL P1P.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Silk @BBL P1P", + "inherits": "BETA PLA Silk @base", + "from": "system", + "setting_id": "BPLB13_12", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL X1C.json new file mode 100644 index 0000000000..8a7e3eff50 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA PLA Silk @BBL X1C", + "inherits": "BETA PLA Silk @base", + "from": "system", + "setting_id": "BPLB13_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @base.json new file mode 100644 index 0000000000..fb445eed6b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk @base.json @@ -0,0 +1,45 @@ +{ + "type": "filament", + "name": "BETA PLA Silk @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB13", + "instantiation": "false", + "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "impact_strength_z": [ + "4.6" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1.json new file mode 100644 index 0000000000..fde75ade2b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Silk+ @BBL A1", + "inherits": "BETA PLA Silk+ @base", + "from": "system", + "setting_id": "BPLB01_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1M.json new file mode 100644 index 0000000000..2f7caa3f45 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1M.json @@ -0,0 +1,43 @@ +{ + "type": "filament", + "name": "BETA PLA Silk+ @BBL A1M", + "inherits": "BETA PLA Silk+ @base", + "from": "system", + "setting_id": "BPLB01_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL H2D.json new file mode 100644 index 0000000000..244dab338f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL H2D.json @@ -0,0 +1,148 @@ +{ + "type": "filament", + "name": "BETA PLA Silk+ @BBL H2D", + "inherits": "BETA PLA Silk+ @base", + "from": "system", + "setting_id": "BPLB01_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "6" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL P1P.json new file mode 100644 index 0000000000..f809b6d7e9 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Silk+ @BBL P1P", + "inherits": "BETA PLA Silk+ @base", + "from": "system", + "setting_id": "BPLB01_03", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL X1C.json new file mode 100644 index 0000000000..065b493b2c --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL X1C.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA Silk+ @BBL X1C", + "inherits": "BETA PLA Silk+ @base", + "from": "system", + "setting_id": "BPLB01_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @base.json new file mode 100644 index 0000000000..3320396323 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @base.json @@ -0,0 +1,39 @@ +{ + "type": "filament", + "name": "BETA PLA Silk+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB01", + "instantiation": "false", + "description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "8.5" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1.json new file mode 100644 index 0000000000..2a84d1f507 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "BETA PLA Transparent @BBL A1", + "inherits": "BETA PLA Transparent @base", + "from": "system", + "setting_id": "BPLB14_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1M.json new file mode 100644 index 0000000000..94753a2b93 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1M.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "BETA PLA Transparent @BBL A1M", + "inherits": "BETA PLA Transparent @base", + "from": "system", + "setting_id": "BPLB14_09", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL H2D.json new file mode 100644 index 0000000000..3d11c50857 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL H2D.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "BETA PLA Transparent @BBL H2D", + "inherits": "BETA PLA Transparent @base", + "from": "system", + "setting_id": "BPLB14_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL P1P.json new file mode 100644 index 0000000000..a180a2a124 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL P1P.json @@ -0,0 +1,143 @@ +{ + "type": "filament", + "name": "BETA PLA Transparent @BBL P1P", + "inherits": "BETA PLA Transparent @base", + "from": "system", + "setting_id": "BPLB14_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL X1C.json new file mode 100644 index 0000000000..072bb2ec9c --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL X1C.json @@ -0,0 +1,129 @@ +{ + "type": "filament", + "name": "BETA PLA Transparent @BBL X1C", + "inherits": "BETA PLA Transparent @base", + "from": "system", + "setting_id": "BPLB14_00", + "instantiation": "true", + "description": "The generic presets are conservatively tuned for compatibility with a wider range of filaments. For higher printing quality and speeds, please use Bambu filaments with Bambu presets.", + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @base.json new file mode 100644 index 0000000000..ce0c342852 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "BETA PLA Transparent @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB14", + "instantiation": "false", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1.json new file mode 100644 index 0000000000..f9016e233b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA UV Color Change @BBL A1", + "inherits": "BETA PLA UV Color Change @base", + "from": "system", + "setting_id": "BPLB15_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1M.json new file mode 100644 index 0000000000..da74968584 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA UV Color Change @BBL A1M", + "inherits": "BETA PLA UV Color Change @base", + "from": "system", + "setting_id": "BPLB15_16", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL H2D.json new file mode 100644 index 0000000000..5d23c31585 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL H2D.json @@ -0,0 +1,136 @@ +{ + "type": "filament", + "name": "BETA PLA UV Color Change @BBL H2D", + "inherits": "BETA PLA UV Color Change @base", + "from": "system", + "setting_id": "BPLB15_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL P1P.json new file mode 100644 index 0000000000..4ec6559082 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA UV Color Change @BBL P1P", + "inherits": "BETA PLA UV Color Change @base", + "from": "system", + "setting_id": "BPLB15_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL X1C.json new file mode 100644 index 0000000000..f990e19fbe --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA PLA UV Color Change @BBL X1C", + "inherits": "BETA PLA UV Color Change @base", + "from": "system", + "setting_id": "BPLB15_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @base.json new file mode 100644 index 0000000000..033d1ef2ce --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @base.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "BETA PLA UV Color Change @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB15", + "instantiation": "false", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "19.8" + ], + "temperature_vitrification": [ + "45" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1.json new file mode 100644 index 0000000000..59a931d95d --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Wood @BBL A1", + "inherits": "BETA PLA Wood @base", + "from": "system", + "setting_id": "BPLB19_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1M.json new file mode 100644 index 0000000000..ee662f0c7b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "BETA PLA Wood @BBL A1M", + "inherits": "BETA PLA Wood @base", + "from": "system", + "setting_id": "BPLB19_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL H2D.json new file mode 100644 index 0000000000..74c43f6e6b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL H2D.json @@ -0,0 +1,135 @@ +{ + "type": "filament", + "name": "BETA PLA Wood @BBL H2D", + "inherits": "BETA PLA Wood @base", + "from": "system", + "setting_id": "BPLB19_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL P1P.json new file mode 100644 index 0000000000..eb0c56df11 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL P1P.json @@ -0,0 +1,145 @@ +{ + "type": "filament", + "name": "BETA PLA Wood @BBL P1P", + "inherits": "BETA PLA Wood @base", + "from": "system", + "setting_id": "BPLB19_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL X1C.json new file mode 100644 index 0000000000..9ada7a13f1 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL X1C.json @@ -0,0 +1,124 @@ +{ + "type": "filament", + "name": "BETA PLA Wood @BBL X1C", + "inherits": "BETA PLA Wood @base", + "from": "system", + "setting_id": "BPLB19_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @base.json new file mode 100644 index 0000000000..471c5709cd --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Wood @base.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "BETA PLA Wood @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB19", + "instantiation": "false", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.21" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "5.6" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1.json new file mode 100644 index 0000000000..c2fa4faa80 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "BETA PLA Youth @BBL A1", + "inherits": "BETA PLA Youth @base", + "from": "system", + "setting_id": "BPLB16_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1M.json new file mode 100644 index 0000000000..799c3c13db --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1M.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "BETA PLA Youth @BBL A1M", + "inherits": "BETA PLA Youth @base", + "from": "system", + "setting_id": "BPLB16_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL H2D.json new file mode 100644 index 0000000000..66520b424e --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL H2D.json @@ -0,0 +1,161 @@ +{ + "type": "filament", + "name": "BETA PLA Youth @BBL H2D", + "inherits": "BETA PLA Youth @base", + "from": "system", + "setting_id": "BPLB16_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_min": [ + "-0.4" + ], + "counter_limit_max": [ + "0.05" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "25", + "40" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.18" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL P1P.json new file mode 100644 index 0000000000..2afbb6da25 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL P1P.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "BETA PLA Youth @BBL P1P", + "inherits": "BETA PLA Youth @base", + "from": "system", + "setting_id": "BPLB16_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL X1C.json new file mode 100644 index 0000000000..e80eb16387 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA PLA Youth @BBL X1C", + "inherits": "BETA PLA Youth @base", + "from": "system", + "setting_id": "BPLB16", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @base.json new file mode 100644 index 0000000000..b63dc707e0 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA Youth @base.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "BETA PLA Youth @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB16", + "instantiation": "false", + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "BETA" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "impact_strength_z": [ + "6.6" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1.json new file mode 100644 index 0000000000..8aab52aaff --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PLA-CF @BBL A1", + "inherits": "BETA PLA-CF @base", + "from": "system", + "setting_id": "BPLB17_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1M.json new file mode 100644 index 0000000000..4ccfd18683 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1M.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "BETA PLA-CF @BBL A1M", + "inherits": "BETA PLA-CF @base", + "from": "system", + "setting_id": "BPLB17_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..320aee32e5 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json @@ -0,0 +1,146 @@ +{ + "type": "filament", + "name": "BETA PLA-CF @BBL H2D 0.4 nozzle", + "inherits": "BETA PLA-CF @base", + "from": "system", + "setting_id": "BPLB17_08", + "instantiation": "true", + "counter_coef_2": [ + "0.012" + ], + "counter_coef_3": [ + "-0.063" + ], + "counter_limit_max": [ + "0.07" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0103" + ], + "hole_coef_3": [ + "0.1974" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL P1P.json new file mode 100644 index 0000000000..499a024436 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL P1P.json @@ -0,0 +1,137 @@ +{ + "type": "filament", + "name": "BETA PLA-CF @BBL P1P", + "inherits": "BETA PLA-CF @base", + "from": "system", + "setting_id": "BPLB17_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL X1C.json new file mode 100644 index 0000000000..0f123a7e5a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL X1C.json @@ -0,0 +1,125 @@ +{ + "type": "filament", + "name": "BETA PLA-CF @BBL X1C", + "inherits": "BETA PLA-CF @base", + "from": "system", + "setting_id": "BPLB17_01", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @base.json new file mode 100644 index 0000000000..88028090da --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA PLA-CF @base.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "BETA PLA-CF @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "BPLB17", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_type": [ + "PLA-CF" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "7.8" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "required_nozzle_HRC": [ + "40" + ], + "supertack_plate_temp": [ + "50" + ], + "supertack_plate_temp_initial_layer": [ + "50" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1.json new file mode 100644 index 0000000000..35e3010043 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @BBL A1", + "inherits": "BETA TPU 90A @base", + "from": "system", + "setting_id": "BTUB00_04", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1M.json new file mode 100644 index 0000000000..e4a5c32532 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1M.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @BBL A1M", + "inherits": "BETA TPU 90A @base", + "from": "system", + "setting_id": "BTUB00_05", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL H2D.json new file mode 100644 index 0000000000..d37436075b --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL H2D.json @@ -0,0 +1,145 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @BBL H2D", + "inherits": "BETA TPU 90A @base", + "from": "system", + "setting_id": "BTUB00_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7" + ], + "filament_printable": [ + "2" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "195", + "195" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL P1P.json new file mode 100644 index 0000000000..2b599ce405 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL P1P.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @BBL P1P", + "inherits": "BETA TPU 90A @base", + "from": "system", + "setting_id": "BTUB00_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL X1C.json new file mode 100644 index 0000000000..00935d8509 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @BBL X1C", + "inherits": "BETA TPU 90A @base", + "from": "system", + "setting_id": "BTUB00_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json new file mode 100644 index 0000000000..6664874f99 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "BTUB00", + "instantiation": "false", + "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", + "filament_cost": [ + "59.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1.json new file mode 100644 index 0000000000..7a7432b1c0 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @BBL A1", + "inherits": "BETA TPU 95A @base", + "from": "system", + "setting_id": "BTUB02_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1M.json new file mode 100644 index 0000000000..a6d90ba06a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1M.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @BBL A1M", + "inherits": "BETA TPU 95A @base", + "from": "system", + "setting_id": "BTUB02_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL H2D.json new file mode 100644 index 0000000000..dcce8d00cb --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL H2D.json @@ -0,0 +1,139 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @BBL H2D", + "inherits": "BETA TPU 95A @base", + "from": "system", + "setting_id": "BTUB02_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9" + ], + "filament_printable": [ + "2" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL P1P.json new file mode 100644 index 0000000000..a2fb288291 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL P1P.json @@ -0,0 +1,133 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @BBL P1P", + "inherits": "BETA TPU 95A @base", + "from": "system", + "setting_id": "BTUB02_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL X1C.json new file mode 100644 index 0000000000..e96641af54 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @BBL X1C", + "inherits": "BETA TPU 95A @base", + "from": "system", + "setting_id": "BTUB02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json new file mode 100644 index 0000000000..2ec4a56075 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "BTUB02", + "instantiation": "false", + "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1.json new file mode 100644 index 0000000000..2813ecc893 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @BBL A1", + "inherits": "BETA TPU 98A @base", + "from": "system", + "setting_id": "BTUB03_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1M.json new file mode 100644 index 0000000000..baf4f84328 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1M.json @@ -0,0 +1,28 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @BBL A1M", + "inherits": "BETA TPU 98A @base", + "from": "system", + "setting_id": "BTUB03_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL H2D.json new file mode 100644 index 0000000000..bf342fadc9 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL H2D.json @@ -0,0 +1,139 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @BBL H2D", + "inherits": "BETA TPU 98A @base", + "from": "system", + "setting_id": "BTUB03_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9" + ], + "filament_printable": [ + "2" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL P1P.json new file mode 100644 index 0000000000..419eb5b7c6 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL P1P.json @@ -0,0 +1,133 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @BBL P1P", + "inherits": "BETA TPU 98A @base", + "from": "system", + "setting_id": "BTUB03_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL X1C.json new file mode 100644 index 0000000000..8df9a59fe2 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL X1C.json @@ -0,0 +1,127 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @BBL X1C", + "inherits": "BETA TPU 98A @base", + "from": "system", + "setting_id": "BTUB03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json new file mode 100644 index 0000000000..58ef5a5c21 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json @@ -0,0 +1,27 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "BTUB03", + "instantiation": "false", + "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1.json new file mode 100644 index 0000000000..427e618aec --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @BBL A1", + "inherits": "BETA TPU Matte @base", + "from": "system", + "setting_id": "BTUB01_04", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1M.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1M.json new file mode 100644 index 0000000000..0ce2e0f9f3 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1M.json @@ -0,0 +1,34 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @BBL A1M", + "inherits": "BETA TPU Matte @base", + "from": "system", + "setting_id": "BTUB01_05", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL H2D.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL H2D.json new file mode 100644 index 0000000000..10193d7d5a --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL H2D.json @@ -0,0 +1,145 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @BBL H2D", + "inherits": "BETA TPU Matte @base", + "from": "system", + "setting_id": "BTUB01_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7" + ], + "filament_printable": [ + "2" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "195", + "195" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL P1P.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL P1P.json new file mode 100644 index 0000000000..c5648fb898 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL P1P.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @BBL P1P", + "inherits": "BETA TPU Matte @base", + "from": "system", + "setting_id": "BTUB01_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL X1C.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL X1C.json new file mode 100644 index 0000000000..046660b063 --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL X1C.json @@ -0,0 +1,130 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @BBL X1C", + "inherits": "BETA TPU Matte @base", + "from": "system", + "setting_id": "BTUB01_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json new file mode 100644 index 0000000000..20d773373f --- /dev/null +++ b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "BTUB01", + "instantiation": "false", + "description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.", + "filament_cost": [ + "59.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..d8cc33038d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.2 nozzle.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL X2D 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_min_speed": [ + "80" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..127196b764 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.4 nozzle.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL X2D 0.4 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "25", + "16", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..d62909130b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL X2D 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_30", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "35", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D.json new file mode 100644 index 0000000000..5c8d0db73f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL X2D", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_19", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "35", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..83718ceffb --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Bambu ABS-GF @BBL X2D 0.4 nozzle", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "1", + "1", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D.json new file mode 100644 index 0000000000..dc684ed111 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Bambu ABS-GF @BBL X2D", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "1", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..a2d4ee198c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json @@ -0,0 +1,293 @@ +{ + "type": "filament", + "name": "Bambu ASA @BBL X2D 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_21", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..0049bdd6bd --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,293 @@ +{ + "type": "filament", + "name": "Bambu ASA @BBL X2D 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_22", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "18", + "25", + "18", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json new file mode 100644 index 0000000000..b3b5e73c4c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json @@ -0,0 +1,297 @@ +{ + "type": "filament", + "name": "Bambu ASA @BBL X2D", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "fan_min_speed": [ + "25" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "18", + "35", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..4e948ec55a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json @@ -0,0 +1,269 @@ +{ + "type": "filament", + "name": "Bambu ASA-Aero @BBL X2D 0.4 nozzle", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5", + "1.5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "5", + "5", + "5", + "5" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "3", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D.json new file mode 100644 index 0000000000..7b2293c644 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D.json @@ -0,0 +1,270 @@ +{ + "type": "filament", + "name": "Bambu ASA-Aero @BBL X2D", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5", + "1.5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "5", + "5", + "5", + "5" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "3", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..1f43c3e688 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,269 @@ +{ + "type": "filament", + "name": "Bambu ASA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D.json new file mode 100644 index 0000000000..9352ed31ad --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D.json @@ -0,0 +1,270 @@ +{ + "type": "filament", + "name": "Bambu ASA-CF @BBL X2D", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..57bfcb4d75 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,281 @@ +{ + "type": "filament", + "name": "Bambu PA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "full_fan_speed_layer": [ + "2" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D.json new file mode 100644 index 0000000000..c9f8772c79 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D.json @@ -0,0 +1,282 @@ +{ + "type": "filament", + "name": "Bambu PA-CF @BBL X2D", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "full_fan_speed_layer": [ + "2" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..0d4b65e724 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,302 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_01", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275" + ], + "overhang_fan_speed": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D.json new file mode 100644 index 0000000000..133ef2ee2d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D.json @@ -0,0 +1,294 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL X2D", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..14e7f3ba63 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Bambu PA6-GF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "265" + ], + "nozzle_temperature": [ + "265", + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265", + "265" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D.json new file mode 100644 index 0000000000..83b90323f8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Bambu PA6-GF @BBL X2D", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "265" + ], + "nozzle_temperature": [ + "265", + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265", + "265" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..32a05382ba --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_04", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "fan_max_speed": [ + "45" + ], + "fan_min_speed": [ + "25" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "overhang_fan_speed": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D.json new file mode 100644 index 0000000000..89c68e9c33 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D.json @@ -0,0 +1,291 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL X2D", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..4b4fb66fc0 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json @@ -0,0 +1,302 @@ +{ + "type": "filament", + "name": "Bambu PC @BBL X2D 0.4 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_18", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "55" + ], + "fan_min_speed": [ + "25" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "30", + "18", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..00d22e5e27 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json @@ -0,0 +1,296 @@ +{ + "type": "filament", + "name": "Bambu PC @BBL X2D 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_37", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "35", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PC @BBL X2D.json new file mode 100644 index 0000000000..8e388cacbe --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X2D.json @@ -0,0 +1,296 @@ +{ + "type": "filament", + "name": "Bambu PC @BBL X2D", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_31", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "35", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..e855d956c7 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PC FR @BBL X2D 0.4 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_28", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..305ddb6c5b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.8 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PC FR @BBL X2D 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_40", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D.json new file mode 100644 index 0000000000..b57e2d3411 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PC FR @BBL X2D", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_29", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..ec8b228fbb --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,311 @@ +{ + "type": "filament", + "name": "Bambu PET-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "45" + ], + "fan_min_speed": [ + "25" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D.json new file mode 100644 index 0000000000..f9b90f58ab --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D.json @@ -0,0 +1,309 @@ +{ + "type": "filament", + "name": "Bambu PET-CF @BBL X2D", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..d1062bae38 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..fb53d02912 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "21", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json new file mode 100644 index 0000000000..699cf9611e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json @@ -0,0 +1,279 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_22", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "23", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..07bd51a1a9 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json @@ -0,0 +1,311 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..381ae65dd5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,311 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "21", + "30", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json new file mode 100644 index 0000000000..e7e516b72a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json @@ -0,0 +1,312 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL X2D", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_22", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "21", + "35", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..5da7bcc5dc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json @@ -0,0 +1,281 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_21", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "additional_cooling_fan_speed": [ + "20" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..0d2604da26 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_19", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "additional_cooling_fan_speed": [ + "10" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..dd05df3f9d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_29", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json new file mode 100644 index 0000000000..8c65dd98f6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..63502e9f99 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,305 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..b048455936 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json @@ -0,0 +1,305 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_22", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json new file mode 100644 index 0000000000..5870af7871 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json @@ -0,0 +1,305 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL X2D", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..75d5e2d631 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json @@ -0,0 +1,284 @@ +{ + "type": "filament", + "name": "Bambu PLA Aero @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "3", + "6", + "6", + "6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json new file mode 100644 index 0000000000..d9663b8c24 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json @@ -0,0 +1,285 @@ +{ + "type": "filament", + "name": "Bambu PLA Aero @BBL X2D", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_10", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "3", + "6", + "6", + "6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..872033281b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..fec7aeb1e5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json @@ -0,0 +1,296 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_08", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json new file mode 100644 index 0000000000..7c9963249a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json @@ -0,0 +1,297 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..57e56acc27 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_22", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..5e22e07c12 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json new file mode 100644 index 0000000000..5a9f3939d1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X2D", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_21", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..8b154c0518 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_22", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..0d4ed1815e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json new file mode 100644 index 0000000000..50cd6aa79b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X2D", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_21", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..08f24d63d8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "name": "Bambu PLA Glow @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Glow @BBL X1C", + "from": "system", + "setting_id": "GFSA12_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_extruder_compatibility": [ + "9" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_printable": [ + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "retraction_distances_when_ec": [ + "3", + "3" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..826f5db868 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Glow @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json new file mode 100644 index 0000000000..2f4bad282c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Glow @BBL X2D", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_21", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..31210a2d44 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..c2ff288751 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1.029", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json new file mode 100644 index 0000000000..fb392361e4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..1a285d0cca --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Marble @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_08", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json new file mode 100644 index 0000000000..e1f7f6f18b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Marble @BBL X2D", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..b34707d2fe --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json @@ -0,0 +1,299 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a598fe2ee9 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json @@ -0,0 +1,296 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1.006", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22", + "25" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json new file mode 100644 index 0000000000..727ba0f6aa --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json @@ -0,0 +1,297 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_11", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..d88aa17534 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Metal @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..533a24b7dd --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Metal @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json new file mode 100644 index 0000000000..14469bc7e8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json @@ -0,0 +1,276 @@ +{ + "type": "filament", + "name": "Bambu PLA Metal @BBL X2D", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_18", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..280a747d47 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json @@ -0,0 +1,302 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..2cc9b50bb7 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json @@ -0,0 +1,302 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json new file mode 100644 index 0000000000..0d10764e68 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json @@ -0,0 +1,303 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk @BBL X2D", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_20", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..df46de0024 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json @@ -0,0 +1,284 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..ffbd1f363e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json @@ -0,0 +1,281 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "3", + "3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json new file mode 100644 index 0000000000..419eabdc03 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json @@ -0,0 +1,282 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..9f041ca69d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_08", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json new file mode 100644 index 0000000000..5bf2d292d6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json @@ -0,0 +1,276 @@ +{ + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X2D", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..e47ebf91a4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_19", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..fb61fc0555 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json new file mode 100644 index 0000000000..d6a6c3e64a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough @BBL X2D", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_18", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..00908fcc1b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..541368a581 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json new file mode 100644 index 0000000000..aadd4ae6db --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_18", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..08c0253238 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_25", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "250", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..9bf012934e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json @@ -0,0 +1,276 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_26", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "The generic presets are conservatively tuned for compatibility with a wider range of filaments. For higher printing quality and speeds, please use Bambu filaments with Bambu presets.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json new file mode 100644 index 0000000000..536cdf9cb1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_27", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..2372de3573 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_28", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..4aaed174be --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PLA Wood @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json new file mode 100644 index 0000000000..39592384b1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PLA Wood @BBL X2D", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..f3b1a6b992 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,296 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json new file mode 100644 index 0000000000..6da39af155 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json @@ -0,0 +1,297 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL X2D", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..81b06932d4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,296 @@ +{ + "type": "filament", + "name": "Bambu PPA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json new file mode 100644 index 0000000000..b6818e58a5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json @@ -0,0 +1,297 @@ +{ + "type": "filament", + "name": "Bambu PPA-CF @BBL X2D", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a23bdf153c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL X2D 0.4 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_08", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json new file mode 100644 index 0000000000..71151cf8e6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL X2D", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..46283ebba8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json @@ -0,0 +1,269 @@ +{ + "type": "filament", + "name": "Bambu Support For PA/PET @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json new file mode 100644 index 0000000000..506c188475 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json @@ -0,0 +1,270 @@ +{ + "type": "filament", + "name": "Bambu Support For PA/PET @BBL X2D", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..4a29bf79fe --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..82731fa9e9 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json new file mode 100644 index 0000000000..8d3929fed5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_19", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..75f649146b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a55c1c8ef3 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json new file mode 100644 index 0000000000..6acc6ad0bf --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..4238d60d8e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Bambu Support G @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json new file mode 100644 index 0000000000..5da2ec0c7c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Bambu Support G @BBL X2D", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..45979d042a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu Support W @BBL X2D 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..3bc7956c2d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Bambu Support W @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json new file mode 100644 index 0000000000..c51b414b40 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Bambu Support W @BBL X2D", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_11", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..89e8556c2f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json new file mode 100644 index 0000000000..a9fae6e28f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL X2D", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..0bde7eb2e4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu TPU 85A @BBL X2D 0.8 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_21", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1.2", + "1.2", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "2.2", + "2.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json new file mode 100644 index 0000000000..df1e421aad --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu TPU 85A @BBL X2D", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_04", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "200", + "200", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "2.2", + "2.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a408dd51f2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu TPU 90A @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Auto Lift", + "Auto Lift" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8", + "2.8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..4596dc5cfc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json @@ -0,0 +1,281 @@ +{ + "type": "filament", + "name": "Bambu TPU 90A @BBL X2D 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.5", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8", + "2.8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json new file mode 100644 index 0000000000..d41e9b3574 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json @@ -0,0 +1,281 @@ +{ + "type": "filament", + "name": "Bambu TPU 90A @BBL X2D", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.5", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8", + "2.8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..d99f6acf2d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_02", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json new file mode 100644 index 0000000000..14091161d3 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json @@ -0,0 +1,279 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A @BBL X2D", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..b9ab2be6e6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json new file mode 100644 index 0000000000..8fd01e296c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json @@ -0,0 +1,279 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X2D", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..bb7ebd7daf --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.2", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json new file mode 100644 index 0000000000..e5357ea399 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json @@ -0,0 +1,279 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL X2D", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_08", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..4854d1c98b --- /dev/null +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic ABS @BBL X2D 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..7840aa4d8a --- /dev/null +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic ABS @BBL X2D 0.4 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json b/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json new file mode 100644 index 0000000000..354570652b --- /dev/null +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic ABS @BBL X2D", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..84de220839 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic ASA @BBL X2D 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..4c17d0b666 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic ASA @BBL X2D 0.4 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json b/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json new file mode 100644 index 0000000000..40c72ceee4 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic ASA @BBL X2D", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a76d2f3bc8 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic BVOH @BBL X2D 0.4 nozzle", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json new file mode 100644 index 0000000000..feeb341891 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic BVOH @BBL X2D", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..02e31aa051 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic EVA @BBL X2D 0.4 nozzle", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json b/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json new file mode 100644 index 0000000000..9730666950 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json @@ -0,0 +1,274 @@ +{ + "type": "filament", + "name": "Generic EVA @BBL X2D", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..16d3e96621 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic HIPS @BBL X2D 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..bd1986896c --- /dev/null +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic HIPS @BBL X2D 0.4 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_12", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json new file mode 100644 index 0000000000..940072f4a5 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic HIPS @BBL X2D", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..f8703664fe --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,263 @@ +{ + "type": "filament", + "name": "Generic PA @BBL X2D 0.4 nozzle", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_04", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PA @BBL X2D.json new file mode 100644 index 0000000000..081a982513 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PA @BBL X2D.json @@ -0,0 +1,264 @@ +{ + "type": "filament", + "name": "Generic PA @BBL X2D", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..e799f4bee8 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PA-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN98_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json new file mode 100644 index 0000000000..55a9e5601f --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic PA-CF @BBL X2D", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN98_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..a78168d21c --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PC @BBL X2D 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..f0af348f0e --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PC @BBL X2D 0.4 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_18", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X2D.json b/resources/profiles/BBL/filament/Generic PC @BBL X2D.json new file mode 100644 index 0000000000..dcc901e61d --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PC @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic PC @BBL X2D", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_19", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..df0ea56d94 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PCTG @BBL X2D 0.4 nozzle", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json new file mode 100644 index 0000000000..df1601a0d1 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic PCTG @BBL X2D", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..5db7dad391 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PE @BBL X2D 0.4 nozzle", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PE @BBL X2D.json b/resources/profiles/BBL/filament/Generic PE @BBL X2D.json new file mode 100644 index 0000000000..1d33204d49 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PE @BBL X2D.json @@ -0,0 +1,274 @@ +{ + "type": "filament", + "name": "Generic PE @BBL X2D", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a4d7d0aa2a --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PE-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json new file mode 100644 index 0000000000..630ad14c1e --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PE-CF @BBL X2D", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..952532b483 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PETG @BBL X2D 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..44ea0d462b --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PETG @BBL X2D 0.4 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json b/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json new file mode 100644 index 0000000000..0ffb3c2ec0 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic PETG @BBL X2D", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..fab213e03d --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PETG HF @BBL X2D 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..0aa0826fcd --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PETG HF @BBL X2D 0.4 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json new file mode 100644 index 0000000000..0e9381abae --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic PETG HF @BBL X2D", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..8d09db5733 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,278 @@ +{ + "type": "filament", + "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json new file mode 100644 index 0000000000..63ecfe6fa5 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json @@ -0,0 +1,279 @@ +{ + "type": "filament", + "name": "Generic PETG-CF @BBL X2D", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..d385da7295 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PHA @BBL X2D 0.4 nozzle", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json new file mode 100644 index 0000000000..e46a4dde77 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json @@ -0,0 +1,274 @@ +{ + "type": "filament", + "name": "Generic PHA @BBL X2D", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..e4869e8bdd --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PLA @BBL X2D 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_19", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6", + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..0459c3fd56 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PLA @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json new file mode 100644 index 0000000000..5504d3dd84 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PLA @BBL X2D", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_18", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..df1a884f06 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Generic PLA High Speed @BBL X2D 0.2 nozzle", + "inherits": "Generic PLA High Speed @BBL X1C", + "from": "system", + "setting_id": "GFSL95_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "retraction_distances_when_ec": [ + "3", + "3" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a094687796 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_16", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json new file mode 100644 index 0000000000..180ace5a9f --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json @@ -0,0 +1,276 @@ +{ + "type": "filament", + "name": "Generic PLA High Speed @BBL X2D", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_17", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..22ac6a6d7a --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json new file mode 100644 index 0000000000..05fa8b0263 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PLA Silk @BBL X2D", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..89b2b2c72e --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json new file mode 100644 index 0000000000..823f303441 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PLA-CF @BBL X2D", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..1dc84c927b --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PP @BBL X2D 0.4 nozzle", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PP @BBL X2D.json b/resources/profiles/BBL/filament/Generic PP @BBL X2D.json new file mode 100644 index 0000000000..27a96daa13 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PP @BBL X2D.json @@ -0,0 +1,274 @@ +{ + "type": "filament", + "name": "Generic PP @BBL X2D", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_08", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..04b944dac3 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PP-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json new file mode 100644 index 0000000000..592172649d --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json @@ -0,0 +1,274 @@ +{ + "type": "filament", + "name": "Generic PP-CF @BBL X2D", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..d6291e8f70 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PP-GF @BBL X2D 0.4 nozzle", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_04", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json new file mode 100644 index 0000000000..23f2e79eba --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json @@ -0,0 +1,274 @@ +{ + "type": "filament", + "name": "Generic PP-GF @BBL X2D", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "description": "This is neither a commonly used filament, nor one of Bambu filaments, and it varies a lot from brand to brand. So, it's highly recommended to ask its vendor for suitable profile before printing and adjust some parameters according to its performances.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..483b8a1400 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Generic PPA-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json new file mode 100644 index 0000000000..077782b7cf --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json @@ -0,0 +1,276 @@ +{ + "type": "filament", + "name": "Generic PPA-CF @BBL X2D", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..faa187791e --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json @@ -0,0 +1,266 @@ +{ + "type": "filament", + "name": "Generic PPA-GF @BBL X2D 0.4 nozzle", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json new file mode 100644 index 0000000000..dafb6822f0 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json @@ -0,0 +1,267 @@ +{ + "type": "filament", + "name": "Generic PPA-GF @BBL X2D", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_06", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..2a197b4591 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PVA @BBL X2D 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_13", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..214e64453a --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json @@ -0,0 +1,272 @@ +{ + "type": "filament", + "name": "Generic PVA @BBL X2D 0.4 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_14", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json new file mode 100644 index 0000000000..3e624721ef --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json @@ -0,0 +1,273 @@ +{ + "type": "filament", + "name": "Generic PVA @BBL X2D", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_15", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..c971cba747 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json @@ -0,0 +1,275 @@ +{ + "type": "filament", + "name": "Generic TPU @BBL X2D 0.4 nozzle", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_03", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2", + "3.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json b/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json new file mode 100644 index 0000000000..af94c4486d --- /dev/null +++ b/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json @@ -0,0 +1,276 @@ +{ + "type": "filament", + "name": "Generic TPU @BBL X2D", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_07", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2", + "3.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..065efc188c --- /dev/null +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json @@ -0,0 +1,287 @@ +{ + "type": "filament", + "name": "Generic TPU for AMS @BBL X2D 0.4 nozzle", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_05", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json new file mode 100644 index 0000000000..b345595ccd --- /dev/null +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json @@ -0,0 +1,288 @@ +{ + "type": "filament", + "name": "Generic TPU for AMS @BBL X2D", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_09", + "instantiation": "true", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/fdm_filament_common.json b/resources/profiles/BBL/filament/fdm_filament_common.json index 096e2dc3ce..69fb92a4ec 100644 --- a/resources/profiles/BBL/filament/fdm_filament_common.json +++ b/resources/profiles/BBL/filament/fdm_filament_common.json @@ -15,6 +15,9 @@ "close_fan_the_first_x_layers": [ "3" ], + "close_additional_fan_first_x_layers": [ + "3" + ], "complete_print_exhaust_fan_speed": [ "70" ], @@ -174,6 +177,9 @@ "full_fan_speed_layer": [ "0" ], + "additional_fan_full_speed_layer": [ + "0" + ], "filament_extruder_variant": [ "Direct Drive Standard" ], diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json index a7fc83584b..96e9e51600 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json @@ -161,6 +161,7 @@ ], "printable_height": "256", "auxiliary_fan": "0", + "support_air_filtration": "1", "printer_extruder_id": [ "1", "1" @@ -242,10 +243,10 @@ "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle" ], - "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== P2S start gcode==========\n;===== Based on official 2026/02/26 start gcode =====\n \n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400 \n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50 \nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50 \nM1006 W\n;=====printer start sound ===================\n\n M620 M ;enable remap\n G389\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n G90\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M975 S1 ; turn on input shaping\n M982.2 S1 ; turn on cog noise reduction\n M983.4 S0\n;===== reset machine status =================\n\n;==== set airduct mode ==== \n;==== if Chamber Cooling is necessary ====\n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S255 ; turn on filter fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\n{else}\n{if (min_vitrification_temperature <= 50)}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on chamber cooling fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\nM142 P6 R30 S40 U0.3 V0.8 ; set PETG exhaust chamber autocooling\n{else}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S127 ; turn on 50% filter fan\nM142 P6 R30 S40 U0.3 V0.8 ; set PLA/TPU exhaust chamber autocooling\n{endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M104 S140 A \n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M972 S26 P0 C0\n M972 S42 P0 T5000\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G90\n G1 X128 Y128 F30000\n G28 Z P0 T400\n M400\n;===== first homing end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A ; rise temp in advance\n M972 S19 P0 T5000 ;plate type detection\n \n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G150.3\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise temp in advance\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n \n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n \n M620.11 P0 L0 I[initial_no_support_extruder] E0\n M620.11 K0 I[initial_no_support_extruder] R0\n \n M620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_extruder]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M621 S[initial_no_support_extruder]A\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_extruder]}\n {if bed_temperature_initial_layer_single > 89}\n M1030 S1800\n SYNC R0 T1800\n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n \n {if filament_type[current_extruder] == \"TPU\" || filament_type[current_extruder] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n \n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n \n{if filament_type[current_extruder] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n;===== wipe left nozzle end =====\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M970.2 Q1 K1 W74 Z0.01\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M970.2 Q0 K1 W74 Z0.01\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M500 ; save cali data\n M623\n \n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M500 ; save cali data\n M623\n\n M622 J0\n ;skip to homing\n M623\n G29.2 S1\n G28\n;===== bed leveling end ================================\n\n M985.1 U0 E2\n M985.1 U1 E2\n\n M104 S[nozzle_temperature_initial_layer] A\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n \n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M620 S[initial_no_support_extruder]A\n M400\n T[initial_no_support_extruder]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_extruder]A\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 89}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.0}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.03}\n {endif}\n {endif}\n\n M500\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 X100 Y0 F24000\n M400\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E12 D4\n G90\n M83\n G1 Z0.5\n M400\n;===== nozzle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\") || \n(filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu, pla and petg clog detect\n{else}\nM1015.3 S0;disable clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM1010 Q0 B0.023 S0.01\nM1010 Q1 B0.005 S0.01\nM1010.1 S1", - "machine_end_gcode": ";======== P2S end gcode ==========\n;===== Based on official 2026/03/13 end gcode =====\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nG150.3\n\nM400 ; wait all motion done\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off left aux fan\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\n;if activate_air_filtration is enabled in filament settings, it will skip purification regardless of what is set on the printer.\nM622 J1\n{if !activate_air_filtration[current_extruder]}\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P2 S255\nM400 S180\nM106 P2 S0\n{endif}\nM623\n\nM622 J2\n{if !activate_air_filtration[current_extruder]}\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\n{endif}\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18", - "layer_change_gcode": ";======== P2S layer_change gcode ==========\n;===== 2026/01/08 ====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{else}\n{if (min_vitrification_temperature > 50)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif} \n{endif}\n{endif}\n\n{if (layer_num + 1 == close_fan_the_first_x_layers[current_extruder]+1)}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n ;not reset filter fan in Xth layer\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{additional_cooling_fan_speed[current_extruder]*255.0/100.0}; set left aux fan \n M623\n;not reset fan\n{endif}\n\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change", + "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== P2S start gcode==========\n;===== Based on official 2026/04/21 start gcode =====\n \n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50 \nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50 \nM1006 W\n;=====printer start sound ===================\n\n M620 M ;enable remap\n G389\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n G90\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M975 S1 ; turn on input shaping\n M982.2 S1 ; turn on cog noise reduction\n M983.4 S0\n;===== reset machine status =================\n\n;==== set airduct mode ==== \n;==== if Chamber Cooling is necessary ====\n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S255 ; turn on filter fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\n{else}\n{if (min_vitrification_temperature <= 50)}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on chamber cooling fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\nM142 P6 R30 S40 U0.3 V0.8 ; set PETG exhaust chamber autocooling\n{else}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S127 ; turn on 50% filter fan\nM142 P6 R30 S40 U0.3 V0.8 ; set PLA/TPU exhaust chamber autocooling\n{endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M104 S140 A \n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M972 S26 P0 C0\n M972 S42 P0 T5000\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G90\n G1 X128 Y128 F30000\n G28 Z P0 T400\n M400\n;===== first homing end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A ; rise temp in advance\n M972 S19 P0 T5000 ;plate type detection\n \n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G150.3\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise temp in advance\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n \n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n \n M620.11 P0 L0 I[initial_no_support_extruder] E0\n M620.11 K0 I[initial_no_support_extruder] R0\n \n M620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_extruder]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M621 S[initial_no_support_extruder]A\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_extruder]}\n {if bed_temperature_initial_layer_single > 89}\n M1030 S1800 \n SYNC R0 T1800\n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n \n {if filament_type[current_extruder] == \"TPU\" || filament_type[current_extruder] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n\n ; series of wipes to ensure the nozzle is as clean as possible to avoid potential z-drift issues.\n M104 S180\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n M106 P1 S255\n M109 S180 A\n G150.1 F8000 \n M109 S140 A\n M106 P1 S0\n G150.1 F8000\n G91\n G1 Y-16 F12000\n G1 X100 F6000\n G90\n M400\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n \n{if filament_type[current_extruder] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n;===== wipe left nozzle end =====\n\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M970.2 Q1 K1 W74 Z0.01\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M970.2 Q0 K1 W74 Z0.01\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M623\n \n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M623\n\n M622 J0\n ;skip to homing\n M623\n G29.2 S1\n G28\n;===== bed leveling end ================================\n\n M985.1 U0 E2\n M985.1 U1 E2\n\n M104 S[nozzle_temperature_initial_layer] A\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n \n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M620 S[initial_no_support_extruder]A\n M400\n T[initial_no_support_extruder]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_extruder]A\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 89}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.0}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.03}\n {endif}\n {endif}\n\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 X100 Y0 F24000\n M400\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E12 D4\n G90\n M83\n G1 Z1\n M400\n;===== nozzle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\") || \n(filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu, pla and petg clog detect\n{else}\nM1015.3 S0;disable clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM1010 Q0 B0.023 S0.01\nM1010 Q1 B0.005 S0.01\nM1010.1 S1\n", + "machine_end_gcode": ";======== P2S end gcode ==========\n;===== Based on official 2026/04/01 end gcode =====\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off left aux fan\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.1 F8000\nM621 S65535\n\nG150.3\nM104 S0 ; turn off hotend\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\n;checks for activate_air_filtration_on_completion and parent flag. If enabled, the override fan speed will be used. Otherwise, the default air purification will kick in.\n\nM622 J1\n{if !activate_air_filtration[current_extruder] || (activate_air_filtration[current_extruder] && !activate_air_filtration_on_completion[current_extruder])}\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P2 S255\nM400 S180\nM106 P2 S0\n{endif}\nM623\n\nM622 J2\n{if !activate_air_filtration[current_extruder] || (activate_air_filtration[current_extruder] && !activate_air_filtration_on_completion[current_extruder])}\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\n{endif}\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n", + "layer_change_gcode": ";======== P2S layer_change gcode ==========\n;===== Based on official 2026/04/08 layer change gcode =====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{else}\n{if (min_vitrification_temperature > 50)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif} \n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_fan_the_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}\n {endif}\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}; set first x_layer left aux fan \n M623\n;not reset fan\n{elsif (layer_num + 1 < full_fan_speed_layer[current_extruder] && full_fan_speed_layer[current_extruder] > close_fan_the_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[current_extruder]) / (full_fan_speed_layer[current_extruder] - close_fan_the_first_x_layers[current_extruder])) * 255.0/100.0}\n {endif}\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[current_extruder]) / (full_fan_speed_layer[current_extruder] - close_fan_the_first_x_layers[current_extruder])) * 255.0/100.0}\n M623\n;not reset fan\n{elsif (layer_num + 1 == max(close_fan_the_first_x_layers[current_extruder] + 1, full_fan_speed_layer[current_extruder]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n ;not reset filter fan in Xth layer\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{additional_cooling_fan_speed[current_extruder]*255.0/100.0}; set left aux fan \n M623\n;not reset fan\n{endif}\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n\n", "time_lapse_gcode": ";======== P2S timeslape gcode ==========\n;===== 2025/06/16 ====\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\n G150.3 ; move to garbage can\n M400\n M1004 S5 P1 ; external shutter\n M400 P300\n M971 S11 C10 O0\n M400 P350\n \n G90\n G1 Z{max_layer_z + 3.0} F1200\n G0 Y210 F18000\n{endif}\nM623\n; SKIPPABLE_END\n", "wrapping_detection_gcode": ";======== P2S 20250822 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y240 F30000\n G1 Y210 F15000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}", - "change_filament_gcode": ";======== P2S filament_change gcode ==========\n;===== Based on official 2026/02/27 filament change gcode =====\n\nM620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_extruder] E0\n{endif}\n\nM620.11 K0 I[current_extruder] R0\n\nT[next_extruder]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if filament_type[next_extruder] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 80) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM621 S[next_extruder]A\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\n\nG1 Y256 F18000\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 < close_fan_the_first_x_layers[next_extruder] + 1)}\n{if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer aux fan\n {endif}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {endif}\n{endif}\n{endif}\n\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\n{if (layer_num + 1 < close_fan_the_first_x_layers[next_extruder] + 1)}\n M106 P10 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer left aux fan \n{else}\n M106 P10 S{additional_cooling_fan_speed[next_extruder]*255.0/100.0};set left aux fan\n{endif}\nM623\n\n;not set fan changing filament" + "change_filament_gcode": ";======== P2S filament_change gcode ==========\n;===== Based on official 2026/04/08 filament change gcode =====\n\nM620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_extruder] E0\n{endif}\n\nM620.11 K0 I[current_extruder] R0\n\n \nT[next_extruder]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if filament_type[next_extruder] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 80) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\n\nM629\nM400\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM621 S[next_extruder]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\n\nG1 Y256 F18000\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_fan_the_first_x_layers[next_extruder])}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer aux fan\n {endif}\n{elsif (layer_num + 1 < full_fan_speed_layer[next_extruder] && full_fan_speed_layer[next_extruder] > close_fan_the_first_x_layers[next_extruder])}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[next_extruder]) / (full_fan_speed_layer[next_extruder] - close_fan_the_first_x_layers[next_extruder])) * 255.0/100.0}\n {endif}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {endif}\n{endif}\n{endif}\n\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\n{if (layer_num + 1 <= close_fan_the_first_x_layers[next_extruder])}\n M106 P10 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer left aux fan \n{elsif (layer_num + 1 < full_fan_speed_layer[next_extruder] && full_fan_speed_layer[next_extruder] > close_fan_the_first_x_layers[next_extruder])}\n M106 P10 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[next_extruder]) / (full_fan_speed_layer[next_extruder] - close_fan_the_first_x_layers[next_extruder])) * 255.0/100.0}\n{else}\n M106 P10 S{additional_cooling_fan_speed[next_extruder]*255.0/100.0};set left aux fan\n{endif}\nM623\n\n;not set fan changing filament" } diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json new file mode 100644 index 0000000000..ebb6a2f83c --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json @@ -0,0 +1,34 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.2 nozzle", + "inherits": "Bambu Lab X2D 0.4 nozzle", + "from": "system", + "setting_id": "GM046", + "instantiation": "true", + "nozzle_diameter": [ + "0.2", + "0.2" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL X2D 0.2 nozzle", + "max_layer_height": [ + "0.14", + "0.14" + ], + "min_layer_height": [ + "0.04", + "0.04" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle" + ] +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json new file mode 100644 index 0000000000..6d73d9fa8e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json @@ -0,0 +1,156 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle", + "inherits": "fdm_bbl_3dp_002_common", + "from": "system", + "setting_id": "GM045", + "instantiation": "true", + "change_filament_gcode": "======== X2D filament_change gcode ==========\n;===== 2026/04/08 =====\n\nM620 S[next_extruder]A B H[next_hotend]\n;M204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_extruder]}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_extruder] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_extruder] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_extruder] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_extruder] B[current_hotend] R0\n{endif}\n\nM620.22 I[next_extruder] P1 ; enable remote extruder runout auto purge.\n \nT[next_extruder] H[next_hotend]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if filament_type[next_extruder] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 125) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\n\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\n\nM621 S[next_extruder]A B\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM620.6 I[next_extruder] H[next_hotend] W1 ;enable ams air printing detect\n\n{if (filament_type[next_extruder] == \"TPU\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\nG1 Y256 F18000\n\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[next_extruder])}\n M106 P2 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer fan\n\tM106 P10 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[next_extruder] && additional_fan_full_speed_layer[next_extruder] > close_additional_fan_first_x_layers[next_extruder])}\n M106 P2 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_extruder]) / (additional_fan_full_speed_layer[next_extruder] - close_additional_fan_first_x_layers[next_extruder])) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_extruder]) / (additional_fan_full_speed_layer[next_extruder] - close_additional_fan_first_x_layers[next_extruder])) * 255.0/100.0}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 U{max_additional_fan/100.0} V1.0 O40; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n{endif}\n{endif}\n;not set fan changing filament", + "layer_change_gcode": ";======== X2D layer_change gcode ==========\n;===== 2025/04/08 =====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}\n\tM106 P10 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[current_extruder] && additional_fan_full_speed_layer[current_extruder] > close_additional_fan_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_extruder]) / (additional_fan_full_speed_layer[current_extruder] - close_additional_fan_first_x_layers[current_extruder])) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_extruder]) / (additional_fan_full_speed_layer[current_extruder] - close_additional_fan_first_x_layers[current_extruder])) * 255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 == max(close_additional_fan_first_x_layers[current_extruder] + 1, additional_fan_full_speed_layer[current_extruder]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 U{max_additional_fan/100.0} V1.0 O40; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n;not reset fan\n{endif}\n\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n", + "machine_end_gcode": ";======== X2D end gcode ==========\n;===== 2026/03/30 =====\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM141 S0 ; turn off chamber heating\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off remote part1 cooling fan\n\n; pull back filament to AMS\nM620 S65279 B\n; M620.11 P1 L0 I65279 E-3\nT65279\nG150.1 F8000\nM621 S65279 B\n\nM620 S65535 B\n; M620.11 P1 L0 I65535 E-4\nT65535\nG150.1 F8000\nM621 S65535 B\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P10 S255\nM400 S180\nM106 P10 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n", + "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== X2D start gcode==========\n;===== 2026/03/26 =====\n\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n ;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50 \nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50 \nM1006 W\n;=====printer start sound ===================\n\n M1012.1 T1100\n M620 M ;enable remap\n M622.1 S0\n G383.4\n \n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n;===== reset machine status =================\n\n;==== set airduct mode ==== \n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S0 ; turn off auxiliary fan\nM106 P10 S255 ; turn on filter fan\n{else}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P10 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\n;M140 S0 ; stop heatbed from heating\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on auxiliary fan\nM106 P10 S102 ; turn on chamber fan\nM142 P6 R30 S40 U0.6 V0.8 ; set PLA/TPU/PETG exhaust chamber autocooling\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]} \n \n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n;===== set chamber temperature ==========\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300 R\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n M972 S26 P0 C0\n G90\n M83\n G1 Y128 F30000\n G1 X128\n G28 Z P0 T400\n M400\n;===== first homign end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n\n M104 S0 T0\n M104 S0 T1\n M562 P1 E0 B1\n M562 P2 E0 B1\n M18 E\n M400 P200\n M1028 S1\n M972 S19 P0 ;heatbed detection\n M972 S31 P0 ;toolhead camera dirt detection\n M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 ;print plate deviation detection\n M1028 S0\n M562 P1 E1 B1\n M562 P2 E1 B1\n M17 D\n\n ;M400\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} T{filament_map[initial_no_support_extruder] % 2} ; rise temp in advance\n G151 P{filament_map[initial_no_support_extruder] % 2} M ; plug the heat nozzle\n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40} A ; rise temp in advance\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n \n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n \n M620.11 P0 L0 I[initial_no_support_extruder] B[initial_no_support_hotend] E0\n M620.11 K0 I[initial_no_support_extruder] B[initial_no_support_hotend] R0\n\n M620 S[initial_no_support_extruder]A H[initial_no_support_hotend] B ; switch material if AMS exist\n M620.22 I[initial_no_support_extruder] P1 ; enable remote extruder runout auto purge.\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_extruder] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M621 S[initial_no_support_extruder]A B\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n G150.3\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_extruder]}\n {if bed_temperature_initial_layer_single > 89}\n {if overall_chamber_temperature < 40}\n M1030 S1200\n SYNC R0 T1200\n {else}\n M1030 S600\n SYNC R0 T600\n {endif} \n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n\n {if filament_type[current_extruder] == \"TPU\" || filament_type[current_extruder] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n\n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n;===== wipe left nozzle end =====\n\n{if filament_type[current_extruder] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n M106 S0 ; turn off fan , too noisy\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n\n{if (overall_chamber_temperature >= 40)}\nM1002 gcode_claim_action : 49\nM191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\n;===== z ofst cali start =====\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n G383 O0 M1 T140\n M400\n;===== z ofst cali end =====\nG90\nM83\nG0 Y200 F18000\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n \n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n; cali eddy z pos\n;G383.13 T1 C1\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} A\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\nM104 S[nozzle_temperature_initial_layer] A\nG150.3\n;===== xy ofst cali start =====\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n M620 D[initial_no_support_hotend]\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n M620 D[initial_no_support_hotend]\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\n M104 S[nozzle_temperature_initial_layer] A\n\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M140 S[bed_temperature_initial_layer_single] \n M190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n \n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n M983.4 S0 ; turn off deformation compensation \n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M620 S[initial_no_support_extruder]A H[initial_no_support_hotend] B\n M620.22 I[initial_no_support_extruder] P1 ; enable remote extruder runout auto purge.\n M400\n T[initial_no_support_extruder] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_extruder]A B\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.002} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.022}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 X100 Y0 F24000\n M400\n ;G130 O0 X100 Y-0.4 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E20 D5\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E12 D4\nG90\n G90\n M83\n G1 Z0.5\n M400\n;===== noozle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n;M993 A1 B1 C1 ; nozzle cam detection allowed.\n\nM620.6 I[initial_no_support_extruder] H[initial_no_support_hotend] W1 ;enable ams air printing detect\n\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\nM400 P50\nM500 D1\n", + "time_lapse_gcode": ";======== X2D timelapse gcode ========\n;======== 2025/08/15 ========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\n\nM622 J1\n\n{if !spiral_mode && !(has_timelapse_safe_pos && print_sequence != \"by object\") }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n{endif}\n\n{if has_timelapse_safe_pos && print_sequence != \"by object\"}\nM9711 M{timelapse_type} E{most_used_physical_extruder_id} X{timelapse_pos_x} Y{timelapse_pos_y} Z{layer_z + 0.4} S11 C10 O0 T3000\n{else}\nM9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + 0.4} S11 C10 O0 T3000\n{endif}\n\n{if !spiral_mode && !(has_timelapse_safe_pos && print_sequence != \"by object\") }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n M83\n G1 Z{max_layer_z + 3.0} F1200\n G0 F18000\n {endif}\n{endif}\n\nM623\n; SKIPPABLE_END\n", + "nozzle_diameter": [ + "0.4", + "0.4" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.4", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D 0.4 nozzle" + ], + "default_print_profile": "0.20mm Standard @BBL X2D", + "deretract_speed_extruder_change": [ + "30", + "30", + "90", + "90" + ], + "deretraction_speed": [ + "30", + "30", + "20", + "20" + ], + "enable_long_retraction_when_cut": "2", + "enable_pre_heating": "1", + "extruder_clearance_height_to_lid": "133", + "extruder_clearance_height_to_rod": "32.8", + "extruder_clearance_max_radius": "60", + "extruder_height_gap": "7", + "extruder_printable_area": [ + "0x0,256x0,256x256,0x256", + "20.5x0,256x0,256x256,20.5x256" + ], + "extruder_printable_height": [ + "261", + "256" + ], + "extruder_type": [ + "Direct Drive", + "Bowden" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Bowden Standard,Bowden High Flow" + ], + "fan_direction": "both", + "group_algo_with_time": "1", + "hotend_heating_rate": [ + "1.5", + "1.5", + "1.5", + "1.5" + ], + "machine_max_acceleration_e": [ + "30000", + "5000", + "30000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_retracting": [ + "30000", + "5000", + "30000", + "5000", + "30000", + "5000", + "30000", + "5000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30", + "120", + "120", + "120", + "120" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "printable_area": [ + "0x0", + "256x0", + "256x256", + "0x256 " + ], + "print_in_clockwise": "1", + "printable_height": "261", + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "retract_lift_below": [ + "254", + "254", + "254", + "254" + ], + "retraction_length": [ + "0.8", + "0.8", + "2", + "2" + ], + "retraction_speed": [ + "30", + "30", + "20", + "20" + ], + "support_chamber_temp_control": "1", + "upward_compatible_machine": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json new file mode 100644 index 0000000000..dc85dedc23 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json @@ -0,0 +1,34 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.6 nozzle", + "inherits": "Bambu Lab X2D 0.4 nozzle", + "from": "system", + "setting_id": "GM047", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", + "0.6" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D" + ], + "default_print_profile": "0.30mm Standard @BBL X2D 0.6 nozzle", + "max_layer_height": [ + "0.42", + "0.42" + ], + "min_layer_height": [ + "0.12", + "0.12" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle" + ] +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json new file mode 100644 index 0000000000..c6ddef3ac8 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json @@ -0,0 +1,34 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.8 nozzle", + "inherits": "Bambu Lab X2D 0.4 nozzle", + "from": "system", + "setting_id": "GM048", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", + "0.8" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D" + ], + "default_print_profile": "0.40mm Standard @BBL X2D 0.8 nozzle", + "max_layer_height": [ + "0.56", + "0.56" + ], + "min_layer_height": [ + "0.16", + "0.16" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D.json b/resources/profiles/BBL/machine/Bambu Lab X2D.json new file mode 100644 index 0000000000..d34c8717d3 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D.json @@ -0,0 +1,18 @@ +{ + "type": "machine_model", + "name": "Bambu Lab X2D", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "image_bed_type": "n", + "bottom_texture_end_name": "n", + "bottom_texture_rect": "74,-10,148,12", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "middle_texture_rect": "13,240,236.12,10", + "machine_tech": "FFF", + "model_id": "N6", + "not_support_bed_type": "Cool Plate", + "default_materials": "Bambu PLA Matte @BBL X2D;Bambu PLA Basic @BBL X2D;Bambu TPU 95A @BBL X2D;Generic TPU @BBL X2D;Bambu PETG Basic @BBL X2D;Bambu PETG HF @BBL X2D;Bambu ABS @BBL X2D;Bambu PC @BBL X2D" +} diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json index d918d41bea..ef8582cf08 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json @@ -11,6 +11,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json index c6731a7178..33bcdcb417 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json @@ -10,6 +10,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..7fad2321e6 --- /dev/null +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json @@ -0,0 +1,71 @@ +{ + "type": "process", + "name": "0.08mm High Quality @BBL X2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP216", + "instantiation": "true", + "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "20", + "20" + ], + "outer_wall_acceleration": [ + "2000", + "5000", + "5000", + "5000" + ], + "outer_wall_speed": [ + "60", + "120", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json new file mode 100644 index 0000000000..201721da9e --- /dev/null +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json @@ -0,0 +1,101 @@ +{ + "type": "process", + "name": "0.08mm High Quality @BBL X2D", + "inherits": "fdm_process_dual_0.08_nozzle_0.4", + "from": "system", + "setting_id": "GP217", + "instantiation": "true", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "4000", + "1000", + "1000" + ], + "enable_tower_interface_features": "1", + "initial_layer_infill_speed": [ + "70", + "70", + "100", + "100" + ], + "initial_layer_speed": [ + "50", + "40", + "50", + "50" + ], + "inner_wall_speed": [ + "120", + "120", + "100", + "100" + ], + "internal_solid_infill_speed": [ + "120", + "120", + "100", + "100" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "1000", + "1000" + ], + "outer_wall_speed": [ + "60", + "60", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "top_shell_thickness": "0.8", + "top_surface_speed": [ + "120", + "120", + "100", + "100" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json index 12c99abbeb..8d545a01f4 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json @@ -10,6 +10,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..db79e7411c --- /dev/null +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json @@ -0,0 +1,69 @@ +{ + "type": "process", + "name": "0.10mm Standard @BBL X2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP148", + "instantiation": "true", + "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "10000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "20", + "20", + "20" + ], + "outer_wall_acceleration": [ + "2000", + "5000", + "4000", + "4000" + ], + "outer_wall_speed": [ + "100", + "120", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json index caeefe5f36..e1b48ac5b8 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json @@ -10,6 +10,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..0659337324 --- /dev/null +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json @@ -0,0 +1,68 @@ +{ + "type": "process", + "name": "0.12mm Balanced Quality @BBL X2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP219", + "instantiation": "true", + "default_acceleration": [ + "4000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "20", + "20" + ], + "outer_wall_acceleration": [ + "2000", + "5000", + "5000", + "5000" + ], + "outer_wall_speed": [ + "100", + "120", + "50", + "50" + ], + "overhang_1_4_speed": [ + "60", + "60", + "0", + "0" + ], + "overhang_2_4_speed": [ + "30", + "50", + "50", + "50" + ], + "overhang_3_4_speed": [ + "10", + "30", + "30", + "30" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json index 547fe83248..d1464e4305 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json @@ -10,6 +10,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json new file mode 100644 index 0000000000..38f954fd37 --- /dev/null +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json @@ -0,0 +1,101 @@ +{ + "type": "process", + "name": "0.12mm High Quality @BBL X2D", + "inherits": "fdm_process_dual_0.12_nozzle_0.4", + "from": "system", + "setting_id": "GP220", + "instantiation": "true", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "4000", + "1000", + "1000" + ], + "enable_tower_interface_features": "1", + "initial_layer_infill_speed": [ + "105", + "70", + "100", + "100" + ], + "initial_layer_speed": [ + "50", + "40", + "50", + "50" + ], + "inner_wall_speed": [ + "150", + "120", + "100", + "100" + ], + "internal_solid_infill_speed": [ + "180", + "150", + "100", + "100" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "1000", + "1000" + ], + "outer_wall_speed": [ + "60", + "60", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "150", + "100", + "100", + "100" + ], + "top_color_penetration_layers": "7", + "top_surface_speed": [ + "150", + "150", + "100", + "100" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json index 3c76d25250..e8c99baf95 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json @@ -11,6 +11,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json new file mode 100644 index 0000000000..4b5cf6a1b5 --- /dev/null +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json @@ -0,0 +1,95 @@ +{ + "type": "process", + "name": "0.16mm High Quality @BBL X2D", + "inherits": "fdm_process_dual_0.16_nozzle_0.4", + "from": "system", + "setting_id": "GP221", + "instantiation": "true", + "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "4000", + "1000", + "1000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "150", + "150", + "100", + "100" + ], + "internal_solid_infill_speed": [ + "180", + "180", + "100", + "100" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "1000", + "1000" + ], + "outer_wall_speed": [ + "60", + "60", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "180", + "180", + "100", + "100" + ], + "top_surface_speed": [ + "150", + "150", + "100", + "100" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json b/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json index 840c7fc2fe..3936f388e6 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json @@ -11,6 +11,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json b/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json new file mode 100644 index 0000000000..d88dfcd60d --- /dev/null +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json @@ -0,0 +1,88 @@ +{ + "type": "process", + "name": "0.16mm Standard @BBL X2D", + "inherits": "fdm_process_dual_0.16_nozzle_0.4", + "from": "system", + "setting_id": "GP222", + "instantiation": "true", + "description": "Standard profile for 0.16mm layer height, prioritizing speed.", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "10000", + "8000", + "1000", + "1000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "100", + "100" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_speed": [ + "150", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json index f5839097a1..1357450ea1 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json @@ -11,6 +11,7 @@ "30", "30" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json new file mode 100644 index 0000000000..12852d7a3c --- /dev/null +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "process", + "name": "0.18mm Balanced Quality @BBL X2D 0.6 nozzle", + "inherits": "fdm_process_dual_0.18_nozzle_0.6", + "from": "system", + "setting_id": "GP223", + "instantiation": "true", + "description": "High quality profile for 0.6mm nozzle, prioritizing print quality and strength.", + "bridge_speed": [ + "30", + "50", + "30", + "30" + ], + "default_acceleration": [ + "10000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "50", + "50" + ], + "initial_layer_infill_speed": [ + "55", + "105", + "55", + "55" + ], + "initial_layer_speed": [ + "35", + "50", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "150", + "150" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "30", + "15", + "15" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_speed": [ + "150", + "200", + "150", + "150" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json index 952481c1cd..fc29792372 100644 --- a/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json @@ -11,6 +11,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json new file mode 100644 index 0000000000..7c2cb2180f --- /dev/null +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json @@ -0,0 +1,100 @@ +{ + "type": "process", + "name": "0.20mm High Quality @BBL X2D", + "inherits": "fdm_process_dual_0.20_nozzle_0.4", + "from": "system", + "setting_id": "GP224", + "instantiation": "true", + "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", + "default_acceleration": [ + "4000", + "4000", + "1000", + "1000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "150", + "150", + "100", + "100" + ], + "internal_solid_infill_speed": [ + "200", + "200", + "100", + "100" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "1000", + "1000" + ], + "outer_wall_speed": [ + "60", + "60", + "50", + "50" + ], + "overhang_1_4_speed": [ + "60", + "0", + "0", + "0" + ], + "overhang_2_4_speed": [ + "30", + "30", + "50", + "30" + ], + "overhang_3_4_speed": [ + "10", + "10", + "30", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "200", + "200", + "100", + "100" + ], + "top_surface_speed": [ + "150", + "150", + "100", + "100" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json b/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json index e2509d6a9f..2c4de0d7bc 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json @@ -11,6 +11,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json b/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json new file mode 100644 index 0000000000..797add313c --- /dev/null +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json @@ -0,0 +1,92 @@ +{ + "type": "process", + "name": "0.20mm Standard @BBL X2D", + "inherits": "fdm_process_dual_0.20_nozzle_0.4", + "from": "system", + "setting_id": "GP151", + "instantiation": "true", + "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", + "bridge_speed": [ + "50", + "50", + "50", + "200" + ], + "default_acceleration": [ + "10000", + "10000", + "1000", + "1000" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "0" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "600", + "200", + "200" + ], + "internal_solid_infill_speed": [ + "250", + "600", + "200", + "200" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "1000", + "1000" + ], + "outer_wall_speed": [ + "200", + "500", + "50", + "50" + ], + "overhang_3_4_speed": [ + "30", + "20", + "30", + "20" + ], + "prime_tower_brim_width": "-1", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "200", + "200" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "1000", + "1000" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json index 07970aba83..7b7f633040 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json @@ -11,6 +11,7 @@ "30", "30" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json index 5cad977499..4a303b27d9 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json @@ -11,6 +11,7 @@ "30", "30" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json new file mode 100644 index 0000000000..28b6e84f97 --- /dev/null +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "process", + "name": "0.24mm Balanced Quality @BBL X2D 0.6 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP227", + "instantiation": "true", + "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", + "bridge_speed": [ + "30", + "50", + "30", + "30" + ], + "default_acceleration": [ + "10000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "50", + "50" + ], + "initial_layer_infill_speed": [ + "55", + "105", + "55", + "55" + ], + "initial_layer_speed": [ + "35", + "50", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "150", + "150" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "30", + "15", + "15" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_speed": [ + "150", + "200", + "150", + "150" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..8656248052 --- /dev/null +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "process", + "name": "0.24mm Balanced Quality @BBL X2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP226", + "instantiation": "true", + "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", + "bridge_speed": [ + "30", + "50", + "30", + "30" + ], + "default_acceleration": [ + "10000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "50", + "50" + ], + "initial_layer_infill_speed": [ + "55", + "105", + "55", + "55" + ], + "initial_layer_speed": [ + "35", + "50", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "150", + "150" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "30", + "25", + "25" + ], + "overhang_4_4_speed": [ + "10", + "10", + "5", + "5" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_pattern": "monotonicline", + "top_surface_speed": [ + "150", + "200", + "150", + "150" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json b/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json index db7ea35de0..a6dae0a6dd 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json @@ -10,6 +10,7 @@ "50", "50" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json b/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json new file mode 100644 index 0000000000..fa06724591 --- /dev/null +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json @@ -0,0 +1,56 @@ +{ + "type": "process", + "name": "0.24mm Standard @BBL X2D", + "inherits": "fdm_process_dual_0.24_nozzle_0.4", + "from": "system", + "setting_id": "GP228", + "instantiation": "true", + "default_acceleration": [ + "10000", + "8000", + "1000", + "1000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "100", + "100" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json index c3b576306a..9f4c86e17a 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json @@ -11,6 +11,7 @@ "30", "30" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json new file mode 100644 index 0000000000..4ef62cbbdc --- /dev/null +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json @@ -0,0 +1,68 @@ +{ + "type": "process", + "name": "0.30mm Standard @BBL X2D 0.6 nozzle", + "inherits": "fdm_process_dual_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP154", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "default_acceleration": [ + "10000", + "10000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "35", + "35", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "600", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "600", + "150", + "150" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "4000", + "4000" + ], + "outer_wall_speed": [ + "200", + "500", + "50", + "50" + ], + "prime_tower_brim_width": "-1", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json index bb8ac922c0..ffa69df36b 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json @@ -11,6 +11,7 @@ "30", "30" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..5d1cf50bc4 --- /dev/null +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "process", + "name": "0.32mm Balanced Quality @BBL X2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP230", + "instantiation": "true", + "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", + "bridge_speed": [ + "30", + "50", + "30", + "30" + ], + "default_acceleration": [ + "10000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "50", + "50" + ], + "initial_layer_infill_speed": [ + "55", + "105", + "55", + "55" + ], + "initial_layer_speed": [ + "35", + "50", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "150", + "150" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "30", + "25", + "25" + ], + "overhang_4_4_speed": [ + "10", + "10", + "5", + "5" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_pattern": "monotonicline", + "top_surface_speed": [ + "150", + "200", + "150", + "150" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json index 22c58ba46e..e1fe009797 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json @@ -11,6 +11,7 @@ "30", "30" ], + "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..43b4034653 --- /dev/null +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json @@ -0,0 +1,81 @@ +{ + "type": "process", + "name": "0.40mm Standard @BBL X2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP150", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "default_acceleration": [ + "10000", + "10000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "35", + "35", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "600", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "600", + "150", + "150" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "4000", + "4000" + ], + "outer_wall_speed": [ + "200", + "500", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "10", + "5", + "5", + "5" + ], + "prime_tower_brim_width": "-1", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_pattern": "monotonicline", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ] +} diff --git a/resources/profiles/BIQU.json b/resources/profiles/BIQU.json index 6698aaee89..cef8049680 100644 --- a/resources/profiles/BIQU.json +++ b/resources/profiles/BIQU.json @@ -1,6 +1,6 @@ { "name": "BIQU", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "BIQU configurations", "machine_model_list": [ diff --git a/resources/profiles/BIQU/BIQU_B1_buildplate_texture.png b/resources/profiles/BIQU/BIQU_B1_buildplate_texture.png deleted file mode 100644 index c87094ae2c..0000000000 Binary files a/resources/profiles/BIQU/BIQU_B1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/BIQU/BIQU_B1_buildplate_texture.svg b/resources/profiles/BIQU/BIQU_B1_buildplate_texture.svg new file mode 100644 index 0000000000..e21dae35aa --- /dev/null +++ b/resources/profiles/BIQU/BIQU_B1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/BIQU/BIQU_BX_buildplate_texture.png b/resources/profiles/BIQU/BIQU_BX_buildplate_texture.png deleted file mode 100644 index 8af4091c2d..0000000000 Binary files a/resources/profiles/BIQU/BIQU_BX_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/BIQU/BIQU_BX_buildplate_texture.svg b/resources/profiles/BIQU/BIQU_BX_buildplate_texture.svg new file mode 100644 index 0000000000..ab8d8a61a4 --- /dev/null +++ b/resources/profiles/BIQU/BIQU_BX_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/BIQU/BIQU_Hurakan_buildplate_texture.png b/resources/profiles/BIQU/BIQU_Hurakan_buildplate_texture.png deleted file mode 100644 index f0ce2a5290..0000000000 Binary files a/resources/profiles/BIQU/BIQU_Hurakan_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/BIQU/BIQU_Hurakan_buildplate_texture.svg b/resources/profiles/BIQU/BIQU_Hurakan_buildplate_texture.svg new file mode 100644 index 0000000000..0036c317bc --- /dev/null +++ b/resources/profiles/BIQU/BIQU_Hurakan_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/BIQU/machine/BIQU B1.json b/resources/profiles/BIQU/machine/BIQU B1.json index 815eb57935..21d5299079 100644 --- a/resources/profiles/BIQU/machine/BIQU B1.json +++ b/resources/profiles/BIQU/machine/BIQU B1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "BIQU", "bed_model": "BIQU_B1_buildplate_model.stl", - "bed_texture": "BIQU_B1_buildplate_texture.png", + "bed_texture": "BIQU_B1_buildplate_texture.svg", "hotend_model": "biqu_b1_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System" } diff --git a/resources/profiles/BIQU/machine/BIQU BX.json b/resources/profiles/BIQU/machine/BIQU BX.json index 17ba98d9b0..8696a4f268 100644 --- a/resources/profiles/BIQU/machine/BIQU BX.json +++ b/resources/profiles/BIQU/machine/BIQU BX.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "BIQU", "bed_model": "BIQU_BX_buildplate_model.stl", - "bed_texture": "BIQU_BX_buildplate_texture.png", + "bed_texture": "BIQU_BX_buildplate_texture.svg", "hotend_model": "biqu_bx_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System" } diff --git a/resources/profiles/BIQU/machine/BIQU Hurakan.json b/resources/profiles/BIQU/machine/BIQU Hurakan.json index 2dd676eb68..2cf4b4d7d3 100644 --- a/resources/profiles/BIQU/machine/BIQU Hurakan.json +++ b/resources/profiles/BIQU/machine/BIQU Hurakan.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "BIQU", "bed_model": "BIQU_Hurakan_buildplate_model.stl", - "bed_texture": "BIQU_Hurakan_buildplate_model.png", + "bed_texture": "BIQU_Hurakan_buildplate_texture.svg", "hotend_model": "biqu_hurakan_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System" } diff --git a/resources/profiles/Blocks.json b/resources/profiles/Blocks.json index 651ed98964..6f39b96ef5 100644 --- a/resources/profiles/Blocks.json +++ b/resources/profiles/Blocks.json @@ -1,6 +1,6 @@ { "name": "Blocks", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Blocks configurations", "machine_model_list": [ diff --git a/resources/profiles/Blocks/PRO S100 HotBed texture.png b/resources/profiles/Blocks/PRO S100 HotBed texture.png deleted file mode 100644 index 357b473687..0000000000 Binary files a/resources/profiles/Blocks/PRO S100 HotBed texture.png and /dev/null differ diff --git a/resources/profiles/Blocks/PRO S100 HotBed texture.svg b/resources/profiles/Blocks/PRO S100 HotBed texture.svg new file mode 100644 index 0000000000..25f0059d58 --- /dev/null +++ b/resources/profiles/Blocks/PRO S100 HotBed texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Blocks/RD50 V2 HotBed texture.png b/resources/profiles/Blocks/RD50 V2 HotBed texture.png deleted file mode 100644 index b697f5b927..0000000000 Binary files a/resources/profiles/Blocks/RD50 V2 HotBed texture.png and /dev/null differ diff --git a/resources/profiles/Blocks/RD50 V2 HotBed texture.svg b/resources/profiles/Blocks/RD50 V2 HotBed texture.svg new file mode 100644 index 0000000000..9692db01c7 --- /dev/null +++ b/resources/profiles/Blocks/RD50 V2 HotBed texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Blocks/RF50 HotBed texture.png b/resources/profiles/Blocks/RF50 HotBed texture.png deleted file mode 100644 index c277b178e7..0000000000 Binary files a/resources/profiles/Blocks/RF50 HotBed texture.png and /dev/null differ diff --git a/resources/profiles/Blocks/RF50 HotBed texture.svg b/resources/profiles/Blocks/RF50 HotBed texture.svg new file mode 100644 index 0000000000..486301943c --- /dev/null +++ b/resources/profiles/Blocks/RF50 HotBed texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100.json index 5ff0c6a70e..abd474d3f1 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Blocks", "bed_model": "PRO S100 HotBed model.stl", - "bed_texture": "PRO S100 HotBed texture.png", + "bed_texture": "PRO S100 HotBed texture.svg", "hotend_model": "BLOCKS PrintCore.stl", "default_materials": "Blocks Generic PLA;Blocks Generic PETG;Blocks Generic TPU" } diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2.json index ce8abf6ce1..b3b82c876c 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Blocks", "bed_model": "RD50 V2 HotBed model.stl", - "bed_texture": "RD50 V2 HotBed texture.png", + "bed_texture": "RD50 V2 HotBed texture.svg", "hotend_model": "BLOCKS PrintCore.stl", "default_materials": "Blocks Generic PLA;Blocks Generic PETG;Blocks Generic TPU" } diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50.json b/resources/profiles/Blocks/machine/BLOCKS RF50.json index 2f2e3359ae..acc4e95f63 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Blocks", "bed_model": "RF50 HotBed model.stl", - "bed_texture": "RF50 HotBed texture.png", + "bed_texture": "RF50 HotBed texture.svg", "hotend_model": "BLOCKS PrintCore.stl", "default_materials": "Blocks Generic PLA;Blocks Generic PETG;Blocks Generic TPU" } diff --git a/resources/profiles/Chuanying.json b/resources/profiles/Chuanying.json index 657340bf16..325569339a 100644 --- a/resources/profiles/Chuanying.json +++ b/resources/profiles/Chuanying.json @@ -1,7 +1,7 @@ { "name": "Chuanying", "url": "", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Chuanying configurations", "machine_model_list": [ diff --git a/resources/profiles/Chuanying/chuanying_x1_buildplate_texture.png b/resources/profiles/Chuanying/chuanying_x1_buildplate_texture.png deleted file mode 100644 index 62e4658694..0000000000 Binary files a/resources/profiles/Chuanying/chuanying_x1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Chuanying/chuanying_x1_buildplate_texture.svg b/resources/profiles/Chuanying/chuanying_x1_buildplate_texture.svg new file mode 100644 index 0000000000..68118d8cd7 --- /dev/null +++ b/resources/profiles/Chuanying/chuanying_x1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Chuanying/machine/Chuanying X1.json b/resources/profiles/Chuanying/machine/Chuanying X1.json index a854dcb654..c3debcfa76 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Chuanying", "bed_model": "chuanying_x1_buildplate_model.STL", - "bed_texture": "chuanying_x1_buildplate_texture.png", + "bed_texture": "chuanying_x1_buildplate_texture.svg", "hotend_model": "chuanying_x1_hotend.STL", "default_materials": "Chuanying Generic PETG;Chuanying Generic PLA" } diff --git a/resources/profiles/Co Print.json b/resources/profiles/Co Print.json index 78433932cb..7184d02328 100644 --- a/resources/profiles/Co Print.json +++ b/resources/profiles/Co Print.json @@ -1,6 +1,6 @@ { "name": "Co Print", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "CoPrint configurations", "machine_model_list": [ diff --git a/resources/profiles/Co Print/Co_Print_ChromaSet_buildplate_texture.png b/resources/profiles/Co Print/Co_Print_ChromaSet_buildplate_texture.png deleted file mode 100644 index be496254c0..0000000000 Binary files a/resources/profiles/Co Print/Co_Print_ChromaSet_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Co Print/Co_Print_ChromaSet_buildplate_texture.svg b/resources/profiles/Co Print/Co_Print_ChromaSet_buildplate_texture.svg new file mode 100644 index 0000000000..774dc9f41e --- /dev/null +++ b/resources/profiles/Co Print/Co_Print_ChromaSet_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet.json b/resources/profiles/Co Print/machine/Co Print ChromaSet.json index 76d3bc0e7d..883ee91c93 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Co Print", "bed_model": "", - "bed_texture": "Co_Print_ChromaSet_buildplate_texture.png", + "bed_texture": "Co_Print_ChromaSet_buildplate_texture.svg", "hotend_model": "", "default_materials": "CoPrint Generic PLA" } diff --git a/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png b/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png index 558641f54d..bfa28d72dc 100644 Binary files a/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png and b/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png differ diff --git a/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png b/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png index 13646d0c95..51410d4d35 100644 Binary files a/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png and b/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png differ diff --git a/resources/profiles/CoLiDo/CoLiDo X16_cover.png b/resources/profiles/CoLiDo/CoLiDo X16_cover.png index 4f4c602d77..bfa28d72dc 100644 Binary files a/resources/profiles/CoLiDo/CoLiDo X16_cover.png and b/resources/profiles/CoLiDo/CoLiDo X16_cover.png differ diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json index 6c768f524c..13f8fad50f 100644 --- a/resources/profiles/Comgrow.json +++ b/resources/profiles/Comgrow.json @@ -1,6 +1,6 @@ { "name": "Comgrow", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Comgrow configurations", "machine_model_list": [ diff --git a/resources/profiles/Comgrow/comgrow_t300_buildplate_model.stl b/resources/profiles/Comgrow/comgrow_t300_buildplate_model.stl index 1a066e0539..138e99fb86 100644 Binary files a/resources/profiles/Comgrow/comgrow_t300_buildplate_model.stl and b/resources/profiles/Comgrow/comgrow_t300_buildplate_model.stl differ diff --git a/resources/profiles/Comgrow/comgrow_t300_buildplate_texture.png b/resources/profiles/Comgrow/comgrow_t300_buildplate_texture.png deleted file mode 100644 index f0da3b2543..0000000000 Binary files a/resources/profiles/Comgrow/comgrow_t300_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Comgrow/comgrow_t300_buildplate_texture.svg b/resources/profiles/Comgrow/comgrow_t300_buildplate_texture.svg new file mode 100644 index 0000000000..202709baf3 --- /dev/null +++ b/resources/profiles/Comgrow/comgrow_t300_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Comgrow/comgrow_t500_buildplate_texture.png b/resources/profiles/Comgrow/comgrow_t500_buildplate_texture.png deleted file mode 100644 index 2c20b53703..0000000000 Binary files a/resources/profiles/Comgrow/comgrow_t500_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Comgrow/comgrow_t500_buildplate_texture.svg b/resources/profiles/Comgrow/comgrow_t500_buildplate_texture.svg new file mode 100644 index 0000000000..02e4bd42e9 --- /dev/null +++ b/resources/profiles/Comgrow/comgrow_t500_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Comgrow/machine/Comgrow T300.json b/resources/profiles/Comgrow/machine/Comgrow T300.json index 159264daf4..41c94aa193 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T300.json +++ b/resources/profiles/Comgrow/machine/Comgrow T300.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Comgrow", "bed_model": "comgrow_t300_buildplate_model.stl", - "bed_texture": "comgrow_t300_buildplate_texture.png", + "bed_texture": "comgrow_t300_buildplate_texture.svg", "hotend_model": "", "default_materials": "Comgrow T300 PLA" } diff --git a/resources/profiles/Comgrow/machine/Comgrow T500.json b/resources/profiles/Comgrow/machine/Comgrow T500.json index fdb3f8c040..e7945de67a 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Comgrow", "bed_model": "comgrow_t500_buildplate_model.stl", - "bed_texture": "comgrow_t500_buildplate_texture.png", + "bed_texture": "comgrow_t500_buildplate_texture.svg", "hotend_model": "", "default_materials": "Comgrow Generic PLA;Comgrow Generic PETG;Comgrow Generic ABS" } diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index 31eca88b46..b95688e15d 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -1,6 +1,6 @@ { "name": "Creality", - "version": "02.03.02.61", + "version": "02.03.02.71", "force_update": "0", "description": "Creality configurations", "machine_model_list": [ diff --git a/resources/profiles/Creality/Creality CR-10 Max_cover.png b/resources/profiles/Creality/Creality CR-10 Max_cover.png index dc2e32cb3d..b00418c197 100644 Binary files a/resources/profiles/Creality/Creality CR-10 Max_cover.png and b/resources/profiles/Creality/Creality CR-10 Max_cover.png differ diff --git a/resources/profiles/Creality/Creality CR-10 SE_cover.png b/resources/profiles/Creality/Creality CR-10 SE_cover.png index 799af89053..12302a0ca7 100644 Binary files a/resources/profiles/Creality/Creality CR-10 SE_cover.png and b/resources/profiles/Creality/Creality CR-10 SE_cover.png differ diff --git a/resources/profiles/Creality/Creality CR-10 V2_cover.png b/resources/profiles/Creality/Creality CR-10 V2_cover.png index 3d7c6a5f56..de07461203 100644 Binary files a/resources/profiles/Creality/Creality CR-10 V2_cover.png and b/resources/profiles/Creality/Creality CR-10 V2_cover.png differ diff --git a/resources/profiles/Creality/Creality CR-10 V3_cover.png b/resources/profiles/Creality/Creality CR-10 V3_cover.png index 46287c7a45..77c268936d 100644 Binary files a/resources/profiles/Creality/Creality CR-10 V3_cover.png and b/resources/profiles/Creality/Creality CR-10 V3_cover.png differ diff --git a/resources/profiles/Creality/Creality CR-6 Max_cover.png b/resources/profiles/Creality/Creality CR-6 Max_cover.png index 83573b3f9f..e0dd7b0619 100644 Binary files a/resources/profiles/Creality/Creality CR-6 Max_cover.png and b/resources/profiles/Creality/Creality CR-6 Max_cover.png differ diff --git a/resources/profiles/Creality/Creality CR-6 SE_cover.png b/resources/profiles/Creality/Creality CR-6 SE_cover.png index bcceed8c23..39261deb6e 100644 Binary files a/resources/profiles/Creality/Creality CR-6 SE_cover.png and b/resources/profiles/Creality/Creality CR-6 SE_cover.png differ diff --git a/resources/profiles/Creality/Creality CR-M4_cover.png b/resources/profiles/Creality/Creality CR-M4_cover.png index 7f6d77898b..91985cbe35 100644 Binary files a/resources/profiles/Creality/Creality CR-M4_cover.png and b/resources/profiles/Creality/Creality CR-M4_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 Pro_cover.png b/resources/profiles/Creality/Creality Ender-3 Pro_cover.png index 2592d43c30..c411916d2a 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 Pro_cover.png and b/resources/profiles/Creality/Creality Ender-3 Pro_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 S1 Plus_cover.png b/resources/profiles/Creality/Creality Ender-3 S1 Plus_cover.png index 39638e019a..67de8b4938 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 S1 Plus_cover.png and b/resources/profiles/Creality/Creality Ender-3 S1 Plus_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 S1 Pro_cover.png b/resources/profiles/Creality/Creality Ender-3 S1 Pro_cover.png index d5fae1c5ae..e0064cdb29 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 S1 Pro_cover.png and b/resources/profiles/Creality/Creality Ender-3 S1 Pro_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 S1_cover.png b/resources/profiles/Creality/Creality Ender-3 S1_cover.png index aad279e711..fdcdcc70b3 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 S1_cover.png and b/resources/profiles/Creality/Creality Ender-3 S1_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 V2 Neo_cover.png b/resources/profiles/Creality/Creality Ender-3 V2 Neo_cover.png index 995b7864d1..4927638ae8 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 V2 Neo_cover.png and b/resources/profiles/Creality/Creality Ender-3 V2 Neo_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 V2_cover.png b/resources/profiles/Creality/Creality Ender-3 V2_cover.png index 39a68076b3..9f05007cac 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 V2_cover.png and b/resources/profiles/Creality/Creality Ender-3 V2_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 V3 KE_cover.png b/resources/profiles/Creality/Creality Ender-3 V3 KE_cover.png index 1179f0d53d..0d4359c67e 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 V3 KE_cover.png and b/resources/profiles/Creality/Creality Ender-3 V3 KE_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png b/resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png index 9a42a991d7..0961ab842d 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png and b/resources/profiles/Creality/Creality Ender-3 V3 Plus_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 V3 SE_cover.png b/resources/profiles/Creality/Creality Ender-3 V3 SE_cover.png index cd0a3ce0b2..463ae1f90b 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 V3 SE_cover.png and b/resources/profiles/Creality/Creality Ender-3 V3 SE_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3 V3_cover.png b/resources/profiles/Creality/Creality Ender-3 V3_cover.png index ac3568c94b..74e67482fd 100644 Binary files a/resources/profiles/Creality/Creality Ender-3 V3_cover.png and b/resources/profiles/Creality/Creality Ender-3 V3_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-3_cover.png b/resources/profiles/Creality/Creality Ender-3_cover.png index d5af7b7e0f..5a3dcb9043 100644 Binary files a/resources/profiles/Creality/Creality Ender-3_cover.png and b/resources/profiles/Creality/Creality Ender-3_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-5 Max_cover.png b/resources/profiles/Creality/Creality Ender-5 Max_cover.png index 80415333f7..1ed0d90230 100644 Binary files a/resources/profiles/Creality/Creality Ender-5 Max_cover.png and b/resources/profiles/Creality/Creality Ender-5 Max_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-5 Plus_cover.png b/resources/profiles/Creality/Creality Ender-5 Plus_cover.png index e8bf144e78..9be95d9a34 100644 Binary files a/resources/profiles/Creality/Creality Ender-5 Plus_cover.png and b/resources/profiles/Creality/Creality Ender-5 Plus_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-5 Pro (2019)_cover.png b/resources/profiles/Creality/Creality Ender-5 Pro (2019)_cover.png index cd92b6a9a7..dd2d6644db 100644 Binary files a/resources/profiles/Creality/Creality Ender-5 Pro (2019)_cover.png and b/resources/profiles/Creality/Creality Ender-5 Pro (2019)_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-5 S1_cover.png b/resources/profiles/Creality/Creality Ender-5 S1_cover.png index 4ef376a9c9..b8eeba37ef 100644 Binary files a/resources/profiles/Creality/Creality Ender-5 S1_cover.png and b/resources/profiles/Creality/Creality Ender-5 S1_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-5S_cover.png b/resources/profiles/Creality/Creality Ender-5S_cover.png index 8ac5d009cc..1f90ee4389 100644 Binary files a/resources/profiles/Creality/Creality Ender-5S_cover.png and b/resources/profiles/Creality/Creality Ender-5S_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-5_cover.png b/resources/profiles/Creality/Creality Ender-5_cover.png index a77de0c369..1f90ee4389 100644 Binary files a/resources/profiles/Creality/Creality Ender-5_cover.png and b/resources/profiles/Creality/Creality Ender-5_cover.png differ diff --git a/resources/profiles/Creality/Creality Ender-6_cover.png b/resources/profiles/Creality/Creality Ender-6_cover.png index 96b2cba416..696aecc336 100644 Binary files a/resources/profiles/Creality/Creality Ender-6_cover.png and b/resources/profiles/Creality/Creality Ender-6_cover.png differ diff --git a/resources/profiles/Creality/Creality Hi_cover.png b/resources/profiles/Creality/Creality Hi_cover.png index a7343e1186..5b61bf02f4 100644 Binary files a/resources/profiles/Creality/Creality Hi_cover.png and b/resources/profiles/Creality/Creality Hi_cover.png differ diff --git a/resources/profiles/Creality/Creality K1 Max_cover.png b/resources/profiles/Creality/Creality K1 Max_cover.png index 7d6cb09b67..37307637a0 100644 Binary files a/resources/profiles/Creality/Creality K1 Max_cover.png and b/resources/profiles/Creality/Creality K1 Max_cover.png differ diff --git a/resources/profiles/Creality/Creality K1 SE_cover.png b/resources/profiles/Creality/Creality K1 SE_cover.png index 09642cbcc9..57692351e6 100644 Binary files a/resources/profiles/Creality/Creality K1 SE_cover.png and b/resources/profiles/Creality/Creality K1 SE_cover.png differ diff --git a/resources/profiles/Creality/Creality K1C_cover.png b/resources/profiles/Creality/Creality K1C_cover.png index 1b5fda4ce5..8b8c2f20a5 100644 Binary files a/resources/profiles/Creality/Creality K1C_cover.png and b/resources/profiles/Creality/Creality K1C_cover.png differ diff --git a/resources/profiles/Creality/Creality K1_cover.png b/resources/profiles/Creality/Creality K1_cover.png index 5cff5d2187..eea76c1ba0 100644 Binary files a/resources/profiles/Creality/Creality K1_cover.png and b/resources/profiles/Creality/Creality K1_cover.png differ diff --git a/resources/profiles/Creality/Creality K2 Plus_cover.png b/resources/profiles/Creality/Creality K2 Plus_cover.png index b2f5ab7c89..5146856cc9 100644 Binary files a/resources/profiles/Creality/Creality K2 Plus_cover.png and b/resources/profiles/Creality/Creality K2 Plus_cover.png differ diff --git a/resources/profiles/Creality/Creality K2 Pro_cover.png b/resources/profiles/Creality/Creality K2 Pro_cover.png index 31a912708c..5e6ab47fee 100644 Binary files a/resources/profiles/Creality/Creality K2 Pro_cover.png and b/resources/profiles/Creality/Creality K2 Pro_cover.png differ diff --git a/resources/profiles/Creality/Creality K2_cover.png b/resources/profiles/Creality/Creality K2_cover.png index 77928c5d9e..fd131fa85b 100644 Binary files a/resources/profiles/Creality/Creality K2_cover.png and b/resources/profiles/Creality/Creality K2_cover.png differ diff --git a/resources/profiles/Creality/Creality Sermoon V1_cover.png b/resources/profiles/Creality/Creality Sermoon V1_cover.png index 5736dbe7b5..a03a156c9f 100644 Binary files a/resources/profiles/Creality/Creality Sermoon V1_cover.png and b/resources/profiles/Creality/Creality Sermoon V1_cover.png differ diff --git a/resources/profiles/Creality/creality_cr10max_buildplate_texture.png b/resources/profiles/Creality/creality_cr10max_buildplate_texture.png deleted file mode 100644 index c87a116ff5..0000000000 Binary files a/resources/profiles/Creality/creality_cr10max_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_cr10max_buildplate_texture.svg b/resources/profiles/Creality/creality_cr10max_buildplate_texture.svg new file mode 100644 index 0000000000..7f49a75270 --- /dev/null +++ b/resources/profiles/Creality/creality_cr10max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_cr10se_buildplate_texture.png b/resources/profiles/Creality/creality_cr10se_buildplate_texture.png deleted file mode 100644 index f9d61c63ca..0000000000 Binary files a/resources/profiles/Creality/creality_cr10se_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_cr10se_buildplate_texture.svg b/resources/profiles/Creality/creality_cr10se_buildplate_texture.svg new file mode 100644 index 0000000000..b85ab79453 --- /dev/null +++ b/resources/profiles/Creality/creality_cr10se_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_cr10v2_buildplate_texture.png b/resources/profiles/Creality/creality_cr10v2_buildplate_texture.png deleted file mode 100644 index 0098bd6fa2..0000000000 Binary files a/resources/profiles/Creality/creality_cr10v2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_cr10v2_buildplate_texture.svg b/resources/profiles/Creality/creality_cr10v2_buildplate_texture.svg new file mode 100644 index 0000000000..d37228ccaa --- /dev/null +++ b/resources/profiles/Creality/creality_cr10v2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_cr10v3_buildplate_texture.png b/resources/profiles/Creality/creality_cr10v3_buildplate_texture.png deleted file mode 100644 index 0098bd6fa2..0000000000 Binary files a/resources/profiles/Creality/creality_cr10v3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_cr10v3_buildplate_texture.svg b/resources/profiles/Creality/creality_cr10v3_buildplate_texture.svg new file mode 100644 index 0000000000..d37228ccaa --- /dev/null +++ b/resources/profiles/Creality/creality_cr10v3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_cr6max_buildplate_texture.svg b/resources/profiles/Creality/creality_cr6max_buildplate_texture.svg new file mode 100644 index 0000000000..92b180532a --- /dev/null +++ b/resources/profiles/Creality/creality_cr6max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_cr6se_buildplate_texture.png b/resources/profiles/Creality/creality_cr6se_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_cr6se_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_cr6se_buildplate_texture.svg b/resources/profiles/Creality/creality_cr6se_buildplate_texture.svg new file mode 100644 index 0000000000..1461c85413 --- /dev/null +++ b/resources/profiles/Creality/creality_cr6se_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_crm4_buildplate_model.stl b/resources/profiles/Creality/creality_crm4_buildplate_model.stl index 58de989fac..b1e981ef0f 100644 Binary files a/resources/profiles/Creality/creality_crm4_buildplate_model.stl and b/resources/profiles/Creality/creality_crm4_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_crm4_buildplate_texture.png b/resources/profiles/Creality/creality_crm4_buildplate_texture.png deleted file mode 100644 index c87a116ff5..0000000000 Binary files a/resources/profiles/Creality/creality_crm4_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_crm4_buildplate_texture.svg b/resources/profiles/Creality/creality_crm4_buildplate_texture.svg new file mode 100644 index 0000000000..aff3550f75 --- /dev/null +++ b/resources/profiles/Creality/creality_crm4_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3s1_buildplate_model.stl b/resources/profiles/Creality/creality_ender3s1_buildplate_model.stl index b025ac9e71..484e7ebf03 100644 Binary files a/resources/profiles/Creality/creality_ender3s1_buildplate_model.stl and b/resources/profiles/Creality/creality_ender3s1_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_ender3s1_buildplate_texture.png b/resources/profiles/Creality/creality_ender3s1_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender3s1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3s1_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3s1_buildplate_texture.svg new file mode 100644 index 0000000000..ba8844e163 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3s1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3s1plus_buildplate_texture.png b/resources/profiles/Creality/creality_ender3s1plus_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender3s1plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3s1plus_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3s1plus_buildplate_texture.svg new file mode 100644 index 0000000000..c5a87ef366 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3s1plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3s1pro_buildplate_texture.png b/resources/profiles/Creality/creality_ender3s1pro_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender3s1pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3s1pro_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3s1pro_buildplate_texture.svg new file mode 100644 index 0000000000..ba8844e163 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3s1pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3v2_buildplate_texture.png b/resources/profiles/Creality/creality_ender3v2_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender3v2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3v2_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3v2_buildplate_texture.svg new file mode 100644 index 0000000000..8d6abde641 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3v2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3v2neo_buildplate_model.stl b/resources/profiles/Creality/creality_ender3v2neo_buildplate_model.stl index 37b66670ba..484e7ebf03 100644 Binary files a/resources/profiles/Creality/creality_ender3v2neo_buildplate_model.stl and b/resources/profiles/Creality/creality_ender3v2neo_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_ender3v2neo_buildplate_texture.png b/resources/profiles/Creality/creality_ender3v2neo_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender3v2neo_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3v2neo_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3v2neo_buildplate_texture.svg new file mode 100644 index 0000000000..ba8844e163 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3v2neo_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3v3_buildplate_texture.png b/resources/profiles/Creality/creality_ender3v3_buildplate_texture.png deleted file mode 100644 index 2e8d441e67..0000000000 Binary files a/resources/profiles/Creality/creality_ender3v3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3v3_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3v3_buildplate_texture.svg new file mode 100644 index 0000000000..b85ab79453 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3v3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3v3ke_buildplate_texture.png b/resources/profiles/Creality/creality_ender3v3ke_buildplate_texture.png deleted file mode 100644 index 745c3083d0..0000000000 Binary files a/resources/profiles/Creality/creality_ender3v3ke_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3v3ke_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3v3ke_buildplate_texture.svg new file mode 100644 index 0000000000..b85ab79453 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3v3ke_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.png.png b/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.png.png deleted file mode 100644 index 4dcf16e604..0000000000 Binary files a/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.png.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.svg new file mode 100644 index 0000000000..c408483599 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3v3plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender3v3se_buildplate_texture.png b/resources/profiles/Creality/creality_ender3v3se_buildplate_texture.png deleted file mode 100644 index 2e8d441e67..0000000000 Binary files a/resources/profiles/Creality/creality_ender3v3se_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender3v3se_buildplate_texture.svg b/resources/profiles/Creality/creality_ender3v3se_buildplate_texture.svg new file mode 100644 index 0000000000..b85ab79453 --- /dev/null +++ b/resources/profiles/Creality/creality_ender3v3se_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender5_buildplate_texture.png b/resources/profiles/Creality/creality_ender5_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender5_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender5_buildplate_texture.svg b/resources/profiles/Creality/creality_ender5_buildplate_texture.svg new file mode 100644 index 0000000000..8d6abde641 --- /dev/null +++ b/resources/profiles/Creality/creality_ender5_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender5max_buildplate_texture.png b/resources/profiles/Creality/creality_ender5max_buildplate_texture.png deleted file mode 100644 index 2d0d384d42..0000000000 Binary files a/resources/profiles/Creality/creality_ender5max_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender5max_buildplate_texture.svg b/resources/profiles/Creality/creality_ender5max_buildplate_texture.svg new file mode 100644 index 0000000000..df261bd720 --- /dev/null +++ b/resources/profiles/Creality/creality_ender5max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender5plus_buildplate_model.stl b/resources/profiles/Creality/creality_ender5plus_buildplate_model.stl index 55a4416517..bb3b3ddb44 100644 Binary files a/resources/profiles/Creality/creality_ender5plus_buildplate_model.stl and b/resources/profiles/Creality/creality_ender5plus_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_ender5plus_buildplate_texture.png b/resources/profiles/Creality/creality_ender5plus_buildplate_texture.png deleted file mode 100644 index 2d91111eb5..0000000000 Binary files a/resources/profiles/Creality/creality_ender5plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender5plus_buildplate_texture.svg b/resources/profiles/Creality/creality_ender5plus_buildplate_texture.svg new file mode 100644 index 0000000000..3e977a5a83 --- /dev/null +++ b/resources/profiles/Creality/creality_ender5plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender5pro_buildplate_texture.png b/resources/profiles/Creality/creality_ender5pro_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender5pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender5pro_buildplate_texture.svg b/resources/profiles/Creality/creality_ender5pro_buildplate_texture.svg new file mode 100644 index 0000000000..8d6abde641 --- /dev/null +++ b/resources/profiles/Creality/creality_ender5pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender5s1_buildplate_texture.png b/resources/profiles/Creality/creality_ender5s1_buildplate_texture.png deleted file mode 100644 index 9a9e00239c..0000000000 Binary files a/resources/profiles/Creality/creality_ender5s1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender5s1_buildplate_texture.svg b/resources/profiles/Creality/creality_ender5s1_buildplate_texture.svg new file mode 100644 index 0000000000..ba8844e163 --- /dev/null +++ b/resources/profiles/Creality/creality_ender5s1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender5s_buildplate_texture.png b/resources/profiles/Creality/creality_ender5s_buildplate_texture.png deleted file mode 100644 index 1d9ed77a17..0000000000 Binary files a/resources/profiles/Creality/creality_ender5s_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender5s_buildplate_texture.svg b/resources/profiles/Creality/creality_ender5s_buildplate_texture.svg new file mode 100644 index 0000000000..8d6abde641 --- /dev/null +++ b/resources/profiles/Creality/creality_ender5s_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_ender6_buildplate_texture.png b/resources/profiles/Creality/creality_ender6_buildplate_texture.png deleted file mode 100644 index ba7abacd57..0000000000 Binary files a/resources/profiles/Creality/creality_ender6_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_ender6_buildplate_texture.svg b/resources/profiles/Creality/creality_ender6_buildplate_texture.svg new file mode 100644 index 0000000000..62189cc746 --- /dev/null +++ b/resources/profiles/Creality/creality_ender6_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_hi_buildplate_texture.png b/resources/profiles/Creality/creality_hi_buildplate_texture.png deleted file mode 100644 index d08316d5ec..0000000000 Binary files a/resources/profiles/Creality/creality_hi_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_hi_buildplate_texture.svg b/resources/profiles/Creality/creality_hi_buildplate_texture.svg new file mode 100644 index 0000000000..0ba4ee48da --- /dev/null +++ b/resources/profiles/Creality/creality_hi_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k1_buildplate_texture.png b/resources/profiles/Creality/creality_k1_buildplate_texture.png deleted file mode 100644 index cde0238078..0000000000 Binary files a/resources/profiles/Creality/creality_k1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k1_buildplate_texture.svg b/resources/profiles/Creality/creality_k1_buildplate_texture.svg new file mode 100644 index 0000000000..99c1550615 --- /dev/null +++ b/resources/profiles/Creality/creality_k1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k1c_buildplate_texture.png b/resources/profiles/Creality/creality_k1c_buildplate_texture.png deleted file mode 100644 index 2e8d441e67..0000000000 Binary files a/resources/profiles/Creality/creality_k1c_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k1c_buildplate_texture.svg b/resources/profiles/Creality/creality_k1c_buildplate_texture.svg new file mode 100644 index 0000000000..99c1550615 --- /dev/null +++ b/resources/profiles/Creality/creality_k1c_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k1max_buildplate_texture.png b/resources/profiles/Creality/creality_k1max_buildplate_texture.png deleted file mode 100644 index 4dcf16e604..0000000000 Binary files a/resources/profiles/Creality/creality_k1max_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k1max_buildplate_texture.svg b/resources/profiles/Creality/creality_k1max_buildplate_texture.svg new file mode 100644 index 0000000000..6c4647c29c --- /dev/null +++ b/resources/profiles/Creality/creality_k1max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k1se_buildplate_texture.png b/resources/profiles/Creality/creality_k1se_buildplate_texture.png deleted file mode 100644 index cde0238078..0000000000 Binary files a/resources/profiles/Creality/creality_k1se_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k1se_buildplate_texture.svg b/resources/profiles/Creality/creality_k1se_buildplate_texture.svg new file mode 100644 index 0000000000..99c1550615 --- /dev/null +++ b/resources/profiles/Creality/creality_k1se_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k2_buildplate_model.stl b/resources/profiles/Creality/creality_k2_buildplate_model.stl index c442446270..ea27ded434 100644 Binary files a/resources/profiles/Creality/creality_k2_buildplate_model.stl and b/resources/profiles/Creality/creality_k2_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_k2_buildplate_texture.png b/resources/profiles/Creality/creality_k2_buildplate_texture.png deleted file mode 100644 index 4dcf16e604..0000000000 Binary files a/resources/profiles/Creality/creality_k2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k2_buildplate_texture.svg b/resources/profiles/Creality/creality_k2_buildplate_texture.svg new file mode 100644 index 0000000000..53f9ee4f54 --- /dev/null +++ b/resources/profiles/Creality/creality_k2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k2plus_buildplate_texture.png b/resources/profiles/Creality/creality_k2plus_buildplate_texture.png deleted file mode 100644 index 4dcf16e604..0000000000 Binary files a/resources/profiles/Creality/creality_k2plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k2plus_buildplate_texture.svg b/resources/profiles/Creality/creality_k2plus_buildplate_texture.svg new file mode 100644 index 0000000000..d992df26de --- /dev/null +++ b/resources/profiles/Creality/creality_k2plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_k2pro_buildplate_model.stl b/resources/profiles/Creality/creality_k2pro_buildplate_model.stl index 3f2d9ff51f..7392fe7dc6 100644 Binary files a/resources/profiles/Creality/creality_k2pro_buildplate_model.stl and b/resources/profiles/Creality/creality_k2pro_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_k2pro_buildplate_texture.png b/resources/profiles/Creality/creality_k2pro_buildplate_texture.png deleted file mode 100644 index 4dcf16e604..0000000000 Binary files a/resources/profiles/Creality/creality_k2pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Creality/creality_k2pro_buildplate_texture.svg b/resources/profiles/Creality/creality_k2pro_buildplate_texture.svg new file mode 100644 index 0000000000..3107a76d8e --- /dev/null +++ b/resources/profiles/Creality/creality_k2pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/creality_sermoonv1_buildplate_model.stl b/resources/profiles/Creality/creality_sermoonv1_buildplate_model.stl new file mode 100644 index 0000000000..fdf4b6c430 Binary files /dev/null and b/resources/profiles/Creality/creality_sermoonv1_buildplate_model.stl differ diff --git a/resources/profiles/Creality/creality_sermoonv1_buildplate_texture.svg b/resources/profiles/Creality/creality_sermoonv1_buildplate_texture.svg new file mode 100644 index 0000000000..d8fc85dbde --- /dev/null +++ b/resources/profiles/Creality/creality_sermoonv1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality CR-10 Max.json b/resources/profiles/Creality/machine/Creality CR-10 Max.json index 0eff5b35c5..5922576073 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 Max.json +++ b/resources/profiles/Creality/machine/Creality CR-10 Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_cr10max_buildplate_model.stl", - "bed_texture": "creality_cr10max_buildplate_texture.png", + "bed_texture": "creality_cr10max_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE.json b/resources/profiles/Creality/machine/Creality CR-10 SE.json index 3060113b7f..6e57e38c0c 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_cr10se_buildplate_model.stl", - "bed_texture": "creality_cr10se_buildplate_texture.png", + "bed_texture": "creality_cr10se_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PETG;Creality Generic TPU;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality CR-10 V2.json b/resources/profiles/Creality/machine/Creality CR-10 V2.json index 18ee983ea9..a709fe2309 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V2.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_cr10v2_buildplate_model.stl", - "bed_texture": "creality_cr10v2_buildplate_texture.png", + "bed_texture": "creality_cr10v2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality CR-10 V3.json b/resources/profiles/Creality/machine/Creality CR-10 V3.json index 236a87333f..37cfe67f05 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V3.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_cr10v3_buildplate_model.stl", - "bed_texture": "creality_cr10v3_buildplate_texture.png", + "bed_texture": "creality_cr10v3_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max.json b/resources/profiles/Creality/machine/Creality CR-6 Max.json index 850c6af74d..aa1925da6e 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max", "nozzle_diameter": "0.2;0.4;0.6;0.8", "bed_model": "creality_cr6max_buildplate_model.stl", - "bed_texture": "creality_cr6se_buildplate_texture.png", + "bed_texture": "creality_cr6max_buildplate_texture.svg", "family": "Creality", "hotend_model": "", "machine_tech": "FFF", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE.json b/resources/profiles/Creality/machine/Creality CR-6 SE.json index e93dfcc22e..2d7026c31d 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE", "nozzle_diameter": "0.2;0.4;0.6;0.8", "bed_model": "creality_cr6se_buildplate_model.stl", - "bed_texture": "creality_cr6se_buildplate_texture.png", + "bed_texture": "creality_cr6se_buildplate_texture.svg", "family": "Creality", "hotend_model": "", "machine_tech": "FFF", diff --git a/resources/profiles/Creality/machine/Creality CR-M4.json b/resources/profiles/Creality/machine/Creality CR-M4.json index 79ad81768c..0cb519eec9 100644 --- a/resources/profiles/Creality/machine/Creality CR-M4.json +++ b/resources/profiles/Creality/machine/Creality CR-M4.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_crm4_buildplate_model.stl", - "bed_texture": "creality_crm4_buildplate_texture.png", + "bed_texture": "creality_crm4_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro.json index 877835cb7a..982a2256bf 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v2_buildplate_model.stl", - "bed_texture": "creality_ender3v2_buildplate_texture.png", + "bed_texture": "creality_ender3v2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus.json index 74718410df..134df7200d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3s1plus_buildplate_model.stl", - "bed_texture": "creality_ender3s1plus_buildplate_texture.png", + "bed_texture": "creality_ender3s1plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro.json index 5712342369..2ce3d35e19 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3s1pro_buildplate_model.stl", - "bed_texture": "creality_ender3s1pro_buildplate_texture.png", + "bed_texture": "creality_ender3s1pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1.json b/resources/profiles/Creality/machine/Creality Ender-3 S1.json index 4a962d26ca..aec61a4289 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3s1_buildplate_model.stl", - "bed_texture": "creality_ender3s1_buildplate_texture.png", + "bed_texture": "creality_ender3s1_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo.json b/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo.json index 8afdbfbae6..827ae40bc3 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v2neo_buildplate_model.stl", - "bed_texture": "creality_ender3v2neo_buildplate_texture.png", + "bed_texture": "creality_ender3v2neo_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PLA;Creality Generic PETG" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V2.json b/resources/profiles/Creality/machine/Creality Ender-3 V2.json index 780d76b13d..88665f5892 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V2.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v2_buildplate_model.stl", - "bed_texture": "creality_ender3v2_buildplate_texture.png", + "bed_texture": "creality_ender3v2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json index 2d55ee3dcf..44754ead86 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.2", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json index 5052015ad0..8d1269dc4a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.4", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json index 5a26353c84..36e61d6229 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.6", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json index 4f1ca62247..863d20c3fb 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json @@ -5,6 +5,7 @@ "from": "system", "setting_id": "GM001", "instantiation": "true", + "printer_variant": "0.8", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 KE", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE.json index 6c11e0e1ba..63ac65eec6 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v3ke_buildplate_model.stl", - "bed_texture": "creality_ender3v3ke_buildplate_texture.png", + "bed_texture": "creality_ender3v3ke_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @Ender-3V3-all;Creality Generic ASA @Ender-3V3-all;Creality Generic PETG @Ender-3V3-all;Creality Generic PLA @Ender-3V3-all;Creality Generic PLA High Speed @Ender-3V3-all;Creality Generic PLA Matte @Ender-3V3-all;Creality Generic PLA Silk @Ender-3V3-all;Creality Generic TPU @Ender-3V3-all" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus.json index 579d0304b6..b471a9ab08 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v3plus_buildplate_model.stl", - "bed_texture": "creality_ender3v3plus_buildplate_texture.png", + "bed_texture": "creality_ender3v3plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @Ender-3V3-all;Creality Generic ASA @Ender-3V3-all;Creality Generic PETG @Ender-3V3-all;Creality Generic PLA @Ender-3V3-all;Creality Generic PLA High Speed @Ender-3V3-all;Creality Generic PLA Matte @Ender-3V3-all;Creality Generic PLA Silk @Ender-3V3-all;Creality Generic TPU @Ender-3V3-all" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE.json index 3d9a5ddde9..2ceb56c108 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v3se_buildplate_model.stl", - "bed_texture": "creality_ender3v3se_buildplate_texture.png", + "bed_texture": "creality_ender3v3se_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @Ender-3V3-all;Creality Generic ASA @Ender-3V3-all;Creality Generic PETG @Ender-3V3-all;Creality Generic PLA @Ender-3V3-all;Creality Generic PLA High Speed @Ender-3V3-all;Creality Generic PLA Matte @Ender-3V3-all;Creality Generic PLA Silk @Ender-3V3-all;Creality Generic TPU @Ender-3V3-all" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3.json b/resources/profiles/Creality/machine/Creality Ender-3 V3.json index d3f84deee6..74f5c275fc 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v3_buildplate_model.stl", - "bed_texture": "creality_ender3v3_buildplate_texture.png", + "bed_texture": "creality_ender3v3_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @Ender-3V3-all;Creality Generic ASA @Ender-3V3-all;Creality Generic PETG @Ender-3V3-all;Creality Generic PLA @Ender-3V3-all;Creality Generic PLA High Speed @Ender-3V3-all;Creality Generic PLA Matte @Ender-3V3-all;Creality Generic PLA Silk @Ender-3V3-all;Creality Generic TPU @Ender-3V3-all" } diff --git a/resources/profiles/Creality/machine/Creality Ender-3.json b/resources/profiles/Creality/machine/Creality Ender-3.json index e91ce1b765..66a234e378 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3.json +++ b/resources/profiles/Creality/machine/Creality Ender-3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender3v2_buildplate_model.stl", - "bed_texture": "creality_ender3v2_buildplate_texture.png", + "bed_texture": "creality_ender3v2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max.json b/resources/profiles/Creality/machine/Creality Ender-5 Max.json index 5f1304eed7..993b6fee1f 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Max.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender5max_buildplate_model.stl", - "bed_texture": "creality_ender5max_buildplate_texture.png", + "bed_texture": "creality_ender5max_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Hyper PLA-CF @Ender-5Max-all;Creality Hyper PLA @Ender-5Max-all;Creality Hyper ABS @Ender-5Max-all;Creality Generic TPU @Ender-5Max-all;Creality Generic ASA @Ender-5Max-all;Creality Silk PLA @Ender-5Max-all;Creality Generic PLA @Ender-5Max-all;Creality Generic PETG @Ender-5Max-all;Creality Generic ABS @Ender-5Max-all;Creality Generic PA @Ender-5Max-all" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Plus.json b/resources/profiles/Creality/machine/Creality Ender-5 Plus.json index b8ddd17725..2950cdacf5 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Plus.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender5plus_buildplate_model.stl", - "bed_texture": "creality_ender5plus_buildplate_texture.png", + "bed_texture": "creality_ender5plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019).json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019).json index d95a0a78c8..1863dd03c6 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019).json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019).json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender5pro_buildplate_model.stl", - "bed_texture": "creality_ender5pro_buildplate_texture.png", + "bed_texture": "creality_ender5pro_buildplate_texture.svg", "hotend_model": "hotend.stl", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5 S1.json b/resources/profiles/Creality/machine/Creality Ender-5 S1.json index 78285d3da5..23ec29b299 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 S1.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 S1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender5s1_buildplate_model.stl", - "bed_texture": "creality_ender5s1_buildplate_texture.png", + "bed_texture": "creality_ender5s1_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5.json b/resources/profiles/Creality/machine/Creality Ender-5.json index 5f6a6dfe72..f43c00b81b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5.json +++ b/resources/profiles/Creality/machine/Creality Ender-5.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender5_buildplate_model.stl", - "bed_texture": "creality_ender5_buildplate_texture.png", + "bed_texture": "creality_ender5_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5S.json b/resources/profiles/Creality/machine/Creality Ender-5S.json index e5ae6d5b4d..ff1f2633fa 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5S.json +++ b/resources/profiles/Creality/machine/Creality Ender-5S.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender5s_buildplate_model.stl", - "bed_texture": "creality_ender5s_buildplate_texture.png", + "bed_texture": "creality_ender5s_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Ender-6.json b/resources/profiles/Creality/machine/Creality Ender-6.json index 7e91e96ea3..f327bd97b0 100644 --- a/resources/profiles/Creality/machine/Creality Ender-6.json +++ b/resources/profiles/Creality/machine/Creality Ender-6.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_ender6_buildplate_model.stl", - "bed_texture": "creality_ender6_buildplate_texture.png", + "bed_texture": "creality_ender6_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS" } diff --git a/resources/profiles/Creality/machine/Creality Hi.json b/resources/profiles/Creality/machine/Creality Hi.json index 3e4e686af8..7415bf942c 100644 --- a/resources/profiles/Creality/machine/Creality Hi.json +++ b/resources/profiles/Creality/machine/Creality Hi.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_hi_buildplate_model.stl", - "bed_texture": "creality_hi_buildplate_texture.png", + "bed_texture": "creality_hi_buildplate_texture.svg", "default_bed_type": "Textured PEI Plate", "hotend_model": "", "default_materials": "Creality Generic ABS @Hi-all;Creality Generic ASA @Hi-all;Creality Generic ASA-CF @Hi-all;Creality Generic PETG @Hi-all;Creality Generic PETG-CF @Hi-all;Creality Generic PLA @Hi-all;Creality Generic PLA High Speed @Hi-all;Creality Generic PLA Matte @Hi-all;Creality Generic PLA Silk @Hi-all;Creality Generic PLA-CF @Hi-all;Creality Generic PLA Wood @Hi-all;Creality Generic TPU @Hi-all" diff --git a/resources/profiles/Creality/machine/Creality K1 Max.json b/resources/profiles/Creality/machine/Creality K1 Max.json index 6ff71eff65..fe56e243d0 100644 --- a/resources/profiles/Creality/machine/Creality K1 Max.json +++ b/resources/profiles/Creality/machine/Creality K1 Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_k1max_buildplate_model.stl", - "bed_texture": "creality_k1max_buildplate_texture.png", + "bed_texture": "creality_k1max_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG;Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU" } diff --git a/resources/profiles/Creality/machine/Creality K1 SE.json b/resources/profiles/Creality/machine/Creality K1 SE.json index 2f27076251..f26d41c78c 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE.json +++ b/resources/profiles/Creality/machine/Creality K1 SE.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_k1se_buildplate_model.stl", - "bed_texture": "creality_k1se_buildplate_texture.png", + "bed_texture": "creality_k1se_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @K1-all;Creality Generic ASA @K1-all;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG @K1-all;Creality Generic PLA @K1-all;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU @K1-all" } diff --git a/resources/profiles/Creality/machine/Creality K1.json b/resources/profiles/Creality/machine/Creality K1.json index 0ef5fd533d..f1090131c5 100644 --- a/resources/profiles/Creality/machine/Creality K1.json +++ b/resources/profiles/Creality/machine/Creality K1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_k1_buildplate_model.stl", - "bed_texture": "creality_k1_buildplate_texture.png", + "bed_texture": "creality_k1_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PC @K1-all;Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PETG;Creality Generic TPU" } diff --git a/resources/profiles/Creality/machine/Creality K1C.json b/resources/profiles/Creality/machine/Creality K1C.json index 2a5f16a86b..55c1af0a6d 100644 --- a/resources/profiles/Creality/machine/Creality K1C.json +++ b/resources/profiles/Creality/machine/Creality K1C.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_k1c_buildplate_model.stl", - "bed_texture": "creality_k1c_buildplate_texture.png", + "bed_texture": "creality_k1c_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @K1-all;Creality Generic ASA @K1-all;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG @K1-all;Creality Generic PLA @K1-all;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU @K1-all" } diff --git a/resources/profiles/Creality/machine/Creality K2 Plus.json b/resources/profiles/Creality/machine/Creality K2 Plus.json index f4bcbe76fc..707e150841 100644 --- a/resources/profiles/Creality/machine/Creality K2 Plus.json +++ b/resources/profiles/Creality/machine/Creality K2 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_k2plus_buildplate_model.stl", - "bed_texture": "creality_k2plus_buildplate_texture.png", + "bed_texture": "creality_k2plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @K2-all;Creality Generic ASA @K2-all;Creality Generic PETG @K2-all;Creality Generic PLA @K2-all;Creality Generic PLA High Speed @K2-all;Creality Generic PLA Matte @K2-all;Creality Generic PLA Silk @K2-all" } diff --git a/resources/profiles/Creality/machine/Creality K2 Pro.json b/resources/profiles/Creality/machine/Creality K2 Pro.json index 5bef59ae09..d50ec5384a 100644 --- a/resources/profiles/Creality/machine/Creality K2 Pro.json +++ b/resources/profiles/Creality/machine/Creality K2 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Creality", "bed_model": "creality_k2pro_buildplate_model.stl", - "bed_texture": "creality_k2pro_buildplate_texture.png", + "bed_texture": "creality_k2pro_buildplate_texture.svg", "default_bed_type": "Textured PEI Plate", "hotend_model": "", "default_materials": "Creality Generic ABS @K2-all;Creality Generic ASA @K2-all;Creality Generic PETG @K2-all;Creality Generic PLA @K2-all;Creality Generic PLA High Speed @K2-all;Creality Generic PLA Matte @K2-all;Creality Generic PLA Silk @K2-all" diff --git a/resources/profiles/Creality/machine/Creality K2.json b/resources/profiles/Creality/machine/Creality K2.json index 687a803b11..3baf9e4126 100644 --- a/resources/profiles/Creality/machine/Creality K2.json +++ b/resources/profiles/Creality/machine/Creality K2.json @@ -7,7 +7,7 @@ "family": "Creality", "bed_model": "creality_k2_buildplate_model.stl", "default_bed_type": "Textured PEI Plate", - "bed_texture": "creality_k2_buildplate_texture.png", + "bed_texture": "creality_k2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Creality Generic ABS @K2-all;Creality Generic ASA @K2-all;Creality Generic PETG @K2-all;Creality Generic PLA @K2-all;Creality Generic PLA High Speed @K2-all;Creality Generic PLA Matte @K2-all;Creality Generic PLA Silk @K2-all" } diff --git a/resources/profiles/Creality/machine/Creality Sermoon V1.json b/resources/profiles/Creality/machine/Creality Sermoon V1.json index 3a280d0e75..1f7f26c390 100644 --- a/resources/profiles/Creality/machine/Creality Sermoon V1.json +++ b/resources/profiles/Creality/machine/Creality Sermoon V1.json @@ -5,8 +5,8 @@ "nozzle_diameter": "0.4", "machine_tech": "FFF", "family": "Creality", - "bed_model": "", - "bed_texture": "", + "bed_model": "creality_sermoonv1_buildplate_model.stl", + "bed_texture": "creality_sermoonv1_buildplate_texture.svg", "z_hop_types": [ "Spiral Lift" ], diff --git a/resources/profiles/Cubicon/Cubicon xCeler-I_bed_texture.svg b/resources/profiles/Cubicon/Cubicon xCeler-I_bed_texture.svg index 3ea086ae45..fe7fb91ba4 100644 --- a/resources/profiles/Cubicon/Cubicon xCeler-I_bed_texture.svg +++ b/resources/profiles/Cubicon/Cubicon xCeler-I_bed_texture.svg @@ -1,258 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/Cubicon/Cubicon xCeler-I_cover.png b/resources/profiles/Cubicon/Cubicon xCeler-I_cover.png index 869c09f040..eafac7e4f9 100644 Binary files a/resources/profiles/Cubicon/Cubicon xCeler-I_cover.png and b/resources/profiles/Cubicon/Cubicon xCeler-I_cover.png differ diff --git a/resources/profiles/Cubicon/Cubicon xCeler-Plus_cover.png b/resources/profiles/Cubicon/Cubicon xCeler-Plus_cover.png index 039818b219..5c627a8fe8 100644 Binary files a/resources/profiles/Cubicon/Cubicon xCeler-Plus_cover.png and b/resources/profiles/Cubicon/Cubicon xCeler-Plus_cover.png differ diff --git a/resources/profiles/Elegoo.json b/resources/profiles/Elegoo.json index 64bcf07250..f285aa7738 100644 --- a/resources/profiles/Elegoo.json +++ b/resources/profiles/Elegoo.json @@ -1,6 +1,6 @@ { "name": "Elegoo", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Elegoo configurations", "machine_model_list": [ diff --git a/resources/profiles/Elegoo/Elegoo Centauri Carbon 2_cover.png b/resources/profiles/Elegoo/Elegoo Centauri Carbon 2_cover.png index 14b59b4dd7..9bc6c49c2c 100644 Binary files a/resources/profiles/Elegoo/Elegoo Centauri Carbon 2_cover.png and b/resources/profiles/Elegoo/Elegoo Centauri Carbon 2_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Centauri Carbon_cover.png b/resources/profiles/Elegoo/Elegoo Centauri Carbon_cover.png index 1d8e6c4116..b5a208ff17 100644 Binary files a/resources/profiles/Elegoo/Elegoo Centauri Carbon_cover.png and b/resources/profiles/Elegoo/Elegoo Centauri Carbon_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Centauri_cover.png b/resources/profiles/Elegoo/Elegoo Centauri_cover.png index 718c8d23d3..16a461c473 100644 Binary files a/resources/profiles/Elegoo/Elegoo Centauri_cover.png and b/resources/profiles/Elegoo/Elegoo Centauri_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 2D_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 2D_cover.png index 3bcb8c7abb..6dc60ac23a 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 2D_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 2D_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 2S_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 2S_cover.png index 882ae11bce..c0be1b3d60 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 2S_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 2S_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 2_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 2_cover.png index 72738e33bf..01ac629713 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 2_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 2_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 3 Max_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 3 Max_cover.png index 5e797028f8..4787fdfd13 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 3 Max_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 3 Max_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 3 Plus_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 3 Plus_cover.png index 8e49cb4b84..743c5dfadb 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 3 Plus_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 3 Plus_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 3 Pro_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 3 Pro_cover.png index 6f7d960120..c469c2c2d2 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 3 Pro_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 3 Pro_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 3_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 3_cover.png index 92ec09a41c..34f48a4adc 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 3_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 3_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 4 Max_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 4 Max_cover.png index 5e797028f8..302d5d75f9 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 4 Max_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 4 Max_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 4 Plus_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 4 Plus_cover.png index 8e49cb4b84..80d669d8da 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 4 Plus_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 4 Plus_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 4 Pro_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 4 Pro_cover.png index b1eb69a9dc..867066a5a2 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 4 Pro_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 4 Pro_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune 4_cover.png b/resources/profiles/Elegoo/Elegoo Neptune 4_cover.png index 8041e1bc00..a646650248 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune 4_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune 4_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune X_cover.png b/resources/profiles/Elegoo/Elegoo Neptune X_cover.png index 26c07260a9..070f93a824 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune X_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune X_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo Neptune_cover.png b/resources/profiles/Elegoo/Elegoo Neptune_cover.png index a1aae0005f..8814fd3ef6 100644 Binary files a/resources/profiles/Elegoo/Elegoo Neptune_cover.png and b/resources/profiles/Elegoo/Elegoo Neptune_cover.png differ diff --git a/resources/profiles/Elegoo/Elegoo OrangeStorm Giga_cover.png b/resources/profiles/Elegoo/Elegoo OrangeStorm Giga_cover.png index 1e6e09d3b9..e342673728 100644 Binary files a/resources/profiles/Elegoo/Elegoo OrangeStorm Giga_cover.png and b/resources/profiles/Elegoo/Elegoo OrangeStorm Giga_cover.png differ diff --git a/resources/profiles/Elegoo/elegoo_centuri_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_centuri_buildplate_model.stl index 5a71e1bec6..6141c456cf 100644 Binary files a/resources/profiles/Elegoo/elegoo_centuri_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_centuri_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_centuri_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_centuri_buildplate_texture.png deleted file mode 100644 index 7d506a7baf..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_centuri_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_centuri_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_centuri_buildplate_texture.svg new file mode 100644 index 0000000000..b6ac675029 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_centuri_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_model.stl index 5a71e1bec6..6141c456cf 100644 Binary files a/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_texture.png deleted file mode 100644 index 859d98cf14..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_texture.svg new file mode 100644 index 0000000000..b6ac675029 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_centuri_carbon_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune2_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune2_buildplate_model.stl index a3837d2b59..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune2_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune2_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune2_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune2_buildplate_texture.png deleted file mode 100644 index 5bddd900ae..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune2_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune2_buildplate_texture.svg new file mode 100644 index 0000000000..89d404b56d --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_model.stl index a3837d2b59..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_texture.png deleted file mode 100644 index 5bddd900ae..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_texture.svg new file mode 100644 index 0000000000..89d404b56d --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune2d_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_model.stl index a3837d2b59..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_texture.png deleted file mode 100644 index 5bddd900ae..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_texture.svg new file mode 100644 index 0000000000..105ac97a40 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune2s_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune3_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune3_buildplate_model.stl index f311c4a87e..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune3_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune3_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune3_buildplate_texture.png deleted file mode 100644 index 9d6fe9195c..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune3_buildplate_texture.svg new file mode 100644 index 0000000000..105ac97a40 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_model.stl index db0d557270..2bdadc0ab1 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_texture.svg new file mode 100644 index 0000000000..a02ffe6fb3 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune3max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_model.stl index 7465a18db9..bafdf865b9 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_texture.png deleted file mode 100644 index 3a79c552a1..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_texture.svg new file mode 100644 index 0000000000..ce3768598c --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune3plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_model.stl index 0823105657..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_texture.png deleted file mode 100644 index 8f7a0c5949..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_texture.svg new file mode 100644 index 0000000000..25a27a6f84 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune3pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune4_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune4_buildplate_model.stl index 350d948fbf..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune4_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune4_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune4_buildplate_texture.png deleted file mode 100644 index 09e63a30dc..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune4_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune4_buildplate_texture.svg new file mode 100644 index 0000000000..25a27a6f84 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune4_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_model.stl index db0d557270..2bdadc0ab1 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_texture.svg new file mode 100644 index 0000000000..a02ffe6fb3 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune4max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_model.stl index 7465a18db9..bafdf865b9 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_texture.png deleted file mode 100644 index a21560505a..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_texture.svg new file mode 100644 index 0000000000..ce3768598c --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune4plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_model.stl index 350d948fbf..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_texture.png deleted file mode 100644 index 53f013cbd7..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_texture.svg new file mode 100644 index 0000000000..b5ed7b0658 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune4pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptune_buildplate_model.stl index 246bd382b7..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptune_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptune_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptune_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune_buildplate_texture.png deleted file mode 100644 index 28f21f119d..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptune_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptune_buildplate_texture.svg new file mode 100644 index 0000000000..78a323a57a --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptune_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_neptune_max_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptune_max_buildplate_texture.png deleted file mode 100644 index bae1e0d742..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptune_max_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptunex_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_neptunex_buildplate_model.stl index a3837d2b59..5fbed3a624 100644 Binary files a/resources/profiles/Elegoo/elegoo_neptunex_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_neptunex_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_neptunex_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_neptunex_buildplate_texture.png deleted file mode 100644 index 5bddd900ae..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_neptunex_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_neptunex_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_neptunex_buildplate_texture.svg new file mode 100644 index 0000000000..105ac97a40 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_neptunex_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_model.stl b/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_model.stl index be34fd4a88..57bd944775 100644 Binary files a/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_model.stl and b/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_model.stl differ diff --git a/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_texture.png b/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_texture.png deleted file mode 100644 index a8d46b4615..0000000000 Binary files a/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_texture.svg b/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_texture.svg new file mode 100644 index 0000000000..1f14ff0908 --- /dev/null +++ b/resources/profiles/Elegoo/elegoo_orangestorm_giga_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json index 7a5738169c..9f4ca8a27a 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_centuri_buildplate_model.stl", - "bed_texture": "elegoo_centuri_buildplate_texture.png", + "bed_texture": "elegoo_centuri_buildplate_texture.svg", "hotend_model": "", "default_materials": "Elegoo ASA @0.2 nozzle;Elegoo ASA @EC;Elegoo PETG PRO @0.2 nozzle;Elegoo PETG PRO @EC;Elegoo PLA @0.2 nozzle;Elegoo PLA Matte @0.2 nozzle;Elegoo PLA Matte @EC;Elegoo PLA PRO @0.2 nozzle;Elegoo PLA PRO @EC;Elegoo PLA Silk @0.2 nozzle;Elegoo PLA Silk @EC;Elegoo PLA @EC;Elegoo PLA+ @0.2 nozzle;Elegoo PLA+ @EC;Elegoo Rapid PETG @0.2 nozzle;Elegoo Rapid PETG @EC;Elegoo Rapid PETG+;;Elegoo Rapid PLA+ @EC;Elegoo Rapid PLA+ @0.2 nozzle;Elegoo Rapid PLA+ @EC;Elegoo TPU 95A @EC" } diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json index 36ca0518d1..3a0ba38a7d 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_centuri_carbon_buildplate_model.stl", - "bed_texture": "elegoo_centuri_carbon_buildplate_texture.png", + "bed_texture": "elegoo_centuri_carbon_buildplate_texture.svg", "hotend_model": "", "default_materials": "Elegoo ASA @0.2 nozzle;Elegoo ASA @ECC;Elegoo PETG PRO @0.2 nozzle;Elegoo PETG PRO @ECC;Elegoo PLA @0.2 nozzle;Elegoo PLA Matte @0.2 nozzle;Elegoo PLA Matte @ECC;Elegoo PLA PRO @0.2 nozzle;Elegoo PLA PRO @ECC;Elegoo PLA Silk @0.2 nozzle;Elegoo PLA Silk @ECC;Elegoo PLA-CF @ECC;Elegoo PLA @ECC;Elegoo PLA+ @0.2 nozzle;Elegoo PLA+ @ECC;Elegoo Rapid PETG @0.2 nozzle;Elegoo Rapid PETG @ECC;Elegoo Rapid PETG+;Elegoo Rapid PLA+ @0.2 nozzle;Elegoo Rapid PLA+ @ECC;Elegoo TPU 95A @ECC" } diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json index 93e49ed66d..d242425799 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_centuri_carbon_buildplate_model.stl", - "bed_texture": "elegoo_centuri_carbon_buildplate_texture.png", + "bed_texture": "elegoo_centuri_carbon_buildplate_texture.svg", "hotend_model": "", "default_materials": "Elegoo ASA @0.2 nozzle;Elegoo ASA @ECC2;Elegoo PETG @0.2 nozzle;Elegoo PETG @ECC2;Elegoo PETG PRO @0.2 nozzle;Elegoo PETG PRO @ECC2;Elegoo PLA @0.2 nozzle;Elegoo PLA Matte @0.2 nozzle;Elegoo PLA Matte @ECC2;Elegoo PLA PRO @0.2 nozzle;Elegoo PLA PRO @ECC2;Elegoo PLA Silk @0.2 nozzle;Elegoo PLA Silk @ECC2;Elegoo PLA-CF @ECC2;Elegoo PLA @ECC2;Elegoo PLA+ @0.2 nozzle;Elegoo PLA+ @ECC2;Elegoo Rapid PETG @0.2 nozzle;Elegoo Rapid PETG @ECC2;Elegoo Rapid PLA+ @0.2 nozzle;Elegoo Rapid PLA+ @ECC2;Elegoo TPU 95A @ECC2;Elegoo PLA Basic @0.2 nozzle;Elegoo PLA Basic @ECC2;Elegoo PLA Galaxy @ECC2;Elegoo PLA Marble @ECC2; Elegoo PLA Sparkle @ECC2;Elegoo PLA Wood @ECC2;Elegoo Rapid TPU 95A @ECC2;Elegoo ABS @0.2 nozzle;Elegoo ABS @ECC2;Elegoo PAHT-CF @ECC2;Elegoo PC @0.2 nozzle;Elegoo PC @ECC2;Elegoo PC-FR @0.2 nozzle;Elegoo PC-FR @ECC2;Elegoo PETG-CF @ECC2;Elegoo PETG-GF @ECC2;Elegoo PETG Translucent @0.2 nozzle;Elegoo PETG Translucent @ECC2" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2.json index 27d4218d18..85a1ec7827 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune2_buildplate_model.stl", - "bed_texture": "elegoo_neptune2_buildplate_texture.png", + "bed_texture": "elegoo_neptune2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D.json index 0f59ee3430..7ff670044e 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune2d_buildplate_model.stl", - "bed_texture": "elegoo_neptune2d_buildplate_texture.png", + "bed_texture": "elegoo_neptune2d_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S.json index 995bb607d8..7e4307bbca 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune2s_buildplate_model.stl", - "bed_texture": "elegoo_neptune2s_buildplate_texture.png", + "bed_texture": "elegoo_neptune2s_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3.json index 6567739ac3..acc5234661 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune3_buildplate_model.stl", - "bed_texture": "elegoo_neptune3_buildplate_texture.png", + "bed_texture": "elegoo_neptune3_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X.json index fe677bf91e..c801b38001 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptunex_buildplate_model.stl", - "bed_texture": "elegoo_neptunex_buildplate_texture.png", + "bed_texture": "elegoo_neptunex_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune.json index 1f5a2a6fcc..376e1520c6 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune_buildplate_model.stl", - "bed_texture": "elegoo_neptune_buildplate_texture.png", + "bed_texture": "elegoo_neptune_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max.json index c04b40f2a9..1fe18647a6 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune3max_buildplate_model.stl", - "bed_texture": "elegoo_neptune_max_buildplate_texture.png", + "bed_texture": "elegoo_neptune3max_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus.json index 8a3fd7d1b1..0830277e96 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune3plus_buildplate_model.stl", - "bed_texture": "elegoo_neptune3plus_buildplate_texture.png", + "bed_texture": "elegoo_neptune3plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro.json index d62d7986b1..ef0b165199 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune3pro_buildplate_model.stl", - "bed_texture": "elegoo_neptune3pro_buildplate_texture.png", + "bed_texture": "elegoo_neptune3pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @Elegoo;Generic PETG @Elegoo;Generic PLA @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max.json index 47d34ceed0..a44e040874 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune4max_buildplate_model.stl", - "bed_texture": "elegoo_neptune_max_buildplate_texture.png", + "bed_texture": "elegoo_neptune4max_buildplate_texture.svg", "bed_exclude_area": [ "0x0" ], diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus.json index db972d20be..31cf8f02e2 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune4plus_buildplate_model.stl", - "bed_texture": "elegoo_neptune4plus_buildplate_texture.png", + "bed_texture": "elegoo_neptune4plus_buildplate_texture.svg", "bed_exclude_area": [ "0x0" ], diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro.json index 21a05d1f6a..8e432eecb7 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune4pro_buildplate_model.stl", - "bed_texture": "elegoo_neptune4pro_buildplate_texture.png", + "bed_texture": "elegoo_neptune4pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Elegoo;Generic PETG @Elegoo;Generic ABS @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4.json index 956b895dc5..2f08221ed7 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Elegoo", "bed_model": "elegoo_neptune4_buildplate_model.stl", - "bed_texture": "elegoo_neptune4_buildplate_texture.png", + "bed_texture": "elegoo_neptune4_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Elegoo;Generic PETG @Elegoo;Generic ABS @Elegoo" } diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga.json index c124278301..f43ce6ffd3 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga.json @@ -4,7 +4,7 @@ "model_id": "Elegoo-OrangeStorm-Giga", "nozzle_diameter": "0.4;0.6;0.8;1.0", "bed_model": "elegoo_orangestorm_giga_buildplate_model.stl", - "bed_texture": "elegoo_orangestorm_giga_buildplate_texture.png", + "bed_texture": "elegoo_orangestorm_giga_buildplate_texture.svg", "machine_tech": "FFF", "family": "Elegoo", "hotend_model": "", diff --git a/resources/profiles/Eryone.json b/resources/profiles/Eryone.json index 0d71cca6a4..c8645f54c4 100644 --- a/resources/profiles/Eryone.json +++ b/resources/profiles/Eryone.json @@ -1,6 +1,6 @@ { "name": "Eryone", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Eryone configurations", "machine_model_list": [ diff --git a/resources/profiles/Eryone/Eryone ER20 Klipper_cover.png b/resources/profiles/Eryone/Eryone ER20 Klipper_cover.png index cb0825efd1..9755dfb3af 100644 Binary files a/resources/profiles/Eryone/Eryone ER20 Klipper_cover.png and b/resources/profiles/Eryone/Eryone ER20 Klipper_cover.png differ diff --git a/resources/profiles/Eryone/Eryone ER20_cover.png b/resources/profiles/Eryone/Eryone ER20_cover.png index da8d109580..340930827d 100644 Binary files a/resources/profiles/Eryone/Eryone ER20_cover.png and b/resources/profiles/Eryone/Eryone ER20_cover.png differ diff --git a/resources/profiles/Eryone/Eryone ER20_texture.png b/resources/profiles/Eryone/Eryone ER20_texture.png deleted file mode 100644 index 863fae6fb2..0000000000 Binary files a/resources/profiles/Eryone/Eryone ER20_texture.png and /dev/null differ diff --git a/resources/profiles/Eryone/Eryone ER20_texture.svg b/resources/profiles/Eryone/Eryone ER20_texture.svg new file mode 100644 index 0000000000..df949940e2 --- /dev/null +++ b/resources/profiles/Eryone/Eryone ER20_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Eryone/Thinker_texture.png b/resources/profiles/Eryone/Thinker_texture.png deleted file mode 100644 index 863fae6fb2..0000000000 Binary files a/resources/profiles/Eryone/Thinker_texture.png and /dev/null differ diff --git a/resources/profiles/Eryone/Thinker_texture.svg b/resources/profiles/Eryone/Thinker_texture.svg new file mode 100644 index 0000000000..34ab3eae99 --- /dev/null +++ b/resources/profiles/Eryone/Thinker_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Eryone/X400_bed.stl b/resources/profiles/Eryone/X400_bed.stl index d689a88033..5e208ba6c9 100644 Binary files a/resources/profiles/Eryone/X400_bed.stl and b/resources/profiles/Eryone/X400_bed.stl differ diff --git a/resources/profiles/Eryone/eryone_er20_buildplate_model.stl b/resources/profiles/Eryone/eryone_er20_buildplate_model.stl index 5cfa70484f..76b07872e7 100644 Binary files a/resources/profiles/Eryone/eryone_er20_buildplate_model.stl and b/resources/profiles/Eryone/eryone_er20_buildplate_model.stl differ diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20.json index 4a4b82c2c7..26d223d2f1 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20.json @@ -1,6 +1,6 @@ { "bed_model": "eryone_er20_buildplate_model.stl", - "bed_texture": "Eryone ER20_texture.png", + "bed_texture": "Eryone ER20_texture.svg", "family": "Eryone", "hotend_model": "", "machine_tech": "FFF", diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper.json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper.json index 3b80869882..2dcf3d7882 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper.json @@ -1,6 +1,6 @@ { "bed_model": "eryone_er20_buildplate_model.stl", - "bed_texture": "Eryone ER20_texture.png", + "bed_texture": "Eryone ER20_texture.svg", "default_bed_type": "Textured PEI Plate", "family": "Eryone", "hotend_model": "", diff --git a/resources/profiles/Eryone/machine/Thinker X400.json b/resources/profiles/Eryone/machine/Thinker X400.json index 0106df2278..8293d5693e 100644 --- a/resources/profiles/Eryone/machine/Thinker X400.json +++ b/resources/profiles/Eryone/machine/Thinker X400.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Eryone", "bed_model": "X400_bed.stl", - "bed_texture": "Thinker_texture.png", + "bed_texture": "Thinker_texture.svg", "hotend_model": "", "default_materials": "Eryone PLA;Eryone ABS;Eryone ASA;Eryone PETG;Eryone Silk PLA;Eryone TPU;Eryone ABS-CF;Eryone ASA-CF;Eryone PA;Eryone PA-CF;Eryone PA-GF;Eryone PETG-CF;Eryone PLA-CF;Eryone PP;Eryone PP-CF" } diff --git a/resources/profiles/FLSun.json b/resources/profiles/FLSun.json index 21fc53ac6d..17439d0851 100644 --- a/resources/profiles/FLSun.json +++ b/resources/profiles/FLSun.json @@ -1,6 +1,6 @@ { "name": "FLSun", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "FLSun configurations", "machine_model_list": [ diff --git a/resources/profiles/FLSun/FLSun_S1_buildplate_texture.svg b/resources/profiles/FLSun/FLSun_S1_buildplate_texture.svg index fcd7630b35..ca4675ec60 100644 --- a/resources/profiles/FLSun/FLSun_S1_buildplate_texture.svg +++ b/resources/profiles/FLSun/FLSun_S1_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/FLSun/FLSun_T1_buildplate_texture.svg b/resources/profiles/FLSun/FLSun_T1_buildplate_texture.svg index f21e08a474..dd56685402 100644 --- a/resources/profiles/FLSun/FLSun_T1_buildplate_texture.svg +++ b/resources/profiles/FLSun/FLSun_T1_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg b/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg index 70be17936b..a682c60d0b 100644 --- a/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg +++ b/resources/profiles/FLSun/flsun_SR_buildplate_texture.svg @@ -1,54 +1 @@ - - - - - - - image/svg+xml - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/FLSun/flsun_T1_buildplate_model.stl b/resources/profiles/FLSun/flsun_T1_buildplate_model.stl index bddb4c6e87..70ba84806c 100644 Binary files a/resources/profiles/FLSun/flsun_T1_buildplate_model.stl and b/resources/profiles/FLSun/flsun_T1_buildplate_model.stl differ diff --git a/resources/profiles/FLSun/flsun_q5_buildplate_texture.png b/resources/profiles/FLSun/flsun_q5_buildplate_texture.png deleted file mode 100644 index c31ce5736f..0000000000 Binary files a/resources/profiles/FLSun/flsun_q5_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/FLSun/flsun_q5_buildplate_texture.svg b/resources/profiles/FLSun/flsun_q5_buildplate_texture.svg new file mode 100644 index 0000000000..1c28909a4f --- /dev/null +++ b/resources/profiles/FLSun/flsun_q5_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/FLSun/flsun_qqspro_buildplate_texture.png b/resources/profiles/FLSun/flsun_qqspro_buildplate_texture.png deleted file mode 100644 index ba5ffad8b9..0000000000 Binary files a/resources/profiles/FLSun/flsun_qqspro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/FLSun/flsun_qqspro_buildplate_texture.svg b/resources/profiles/FLSun/flsun_qqspro_buildplate_texture.svg new file mode 100644 index 0000000000..4449713734 --- /dev/null +++ b/resources/profiles/FLSun/flsun_qqspro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/FLSun/flsun_s1_buildplate_model.stl b/resources/profiles/FLSun/flsun_s1_buildplate_model.stl index 7d8fefeb3d..736212ea17 100644 Binary files a/resources/profiles/FLSun/flsun_s1_buildplate_model.stl and b/resources/profiles/FLSun/flsun_s1_buildplate_model.stl differ diff --git a/resources/profiles/FLSun/flsun_v400_buildplate_texture.svg b/resources/profiles/FLSun/flsun_v400_buildplate_texture.svg index e9f47564c1..54beeb1c85 100644 --- a/resources/profiles/FLSun/flsun_v400_buildplate_texture.svg +++ b/resources/profiles/FLSun/flsun_v400_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/FLSun/machine/FLSun Q5.json b/resources/profiles/FLSun/machine/FLSun Q5.json index 13a34b6f85..f7825cb4fa 100644 --- a/resources/profiles/FLSun/machine/FLSun Q5.json +++ b/resources/profiles/FLSun/machine/FLSun Q5.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "FLSun", "bed_model": "flsun_q5_buildplate_model.stl", - "bed_texture": "flsun_q5_buildplate_texture.png", + "bed_texture": "flsun_q5_buildplate_texture.svg", "hotend_model": "", "default_materials": "FLSun Generic ABS;FLSun Generic PLA;FLSun Generic PLA-CF;FLSun Generic PETG;FLSun Generic TPU;FLSun Generic ASA;FLSun Generic PC;FLSun Generic PVA;FLSun Generic PA;FLSun Generic PA-CF" } diff --git a/resources/profiles/FLSun/machine/FLSun QQ-S Pro.json b/resources/profiles/FLSun/machine/FLSun QQ-S Pro.json index 4c3769cec7..3b3cf86676 100644 --- a/resources/profiles/FLSun/machine/FLSun QQ-S Pro.json +++ b/resources/profiles/FLSun/machine/FLSun QQ-S Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "FLSun", "bed_model": "flsun_qqspro_buildplate_model.stl", - "bed_texture": "flsun_qqspro_buildplate_texture.png", + "bed_texture": "flsun_qqspro_buildplate_texture.svg", "hotend_model": "", "default_materials": "FLSun Generic ABS;FLSun Generic PLA;FLSun Generic PLA-CF;FLSun Generic PETG;FLSun Generic TPU;FLSun Generic ASA;FLSun Generic PC;FLSun Generic PVA;FLSun Generic PA;FLSun Generic PA-CF" } diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index 0905255f7a..b53a32b74f 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -1,7 +1,7 @@ { "name": "Flashforge", "url": "", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Flashforge configurations", "machine_model_list": [ diff --git a/resources/profiles/Flashforge/Flashforge AD5X_cover.png b/resources/profiles/Flashforge/Flashforge AD5X_cover.png index dbe2aba9d0..70831c60f5 100644 Binary files a/resources/profiles/Flashforge/Flashforge AD5X_cover.png and b/resources/profiles/Flashforge/Flashforge AD5X_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Adventurer 3 Series_cover.png b/resources/profiles/Flashforge/Flashforge Adventurer 3 Series_cover.png index d82ba4325a..677c453da5 100644 Binary files a/resources/profiles/Flashforge/Flashforge Adventurer 3 Series_cover.png and b/resources/profiles/Flashforge/Flashforge Adventurer 3 Series_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Adventurer 4 Series_cover.png b/resources/profiles/Flashforge/Flashforge Adventurer 4 Series_cover.png index 2c233ad822..3f8a095d1c 100644 Binary files a/resources/profiles/Flashforge/Flashforge Adventurer 4 Series_cover.png and b/resources/profiles/Flashforge/Flashforge Adventurer 4 Series_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Adventurer 5M Pro_cover.png b/resources/profiles/Flashforge/Flashforge Adventurer 5M Pro_cover.png index 051ab70c55..eb3ff3da1e 100644 Binary files a/resources/profiles/Flashforge/Flashforge Adventurer 5M Pro_cover.png and b/resources/profiles/Flashforge/Flashforge Adventurer 5M Pro_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Adventurer 5M_cover.png b/resources/profiles/Flashforge/Flashforge Adventurer 5M_cover.png index 2e776b9688..2a1d2deb84 100644 Binary files a/resources/profiles/Flashforge/Flashforge Adventurer 5M_cover.png and b/resources/profiles/Flashforge/Flashforge Adventurer 5M_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Artemis_cover.png b/resources/profiles/Flashforge/Flashforge Artemis_cover.png index fea4762aa9..8c0e603506 100644 Binary files a/resources/profiles/Flashforge/Flashforge Artemis_cover.png and b/resources/profiles/Flashforge/Flashforge Artemis_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Guider 2s_cover.png b/resources/profiles/Flashforge/Flashforge Guider 2s_cover.png index 64c590fa90..c16ce454f0 100644 Binary files a/resources/profiles/Flashforge/Flashforge Guider 2s_cover.png and b/resources/profiles/Flashforge/Flashforge Guider 2s_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Guider 3 Ultra_cover.png b/resources/profiles/Flashforge/Flashforge Guider 3 Ultra_cover.png index f7b3df8498..5ab73c8f45 100644 Binary files a/resources/profiles/Flashforge/Flashforge Guider 3 Ultra_cover.png and b/resources/profiles/Flashforge/Flashforge Guider 3 Ultra_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png b/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png index a23b67506c..c9d264922f 100644 Binary files a/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png and b/resources/profiles/Flashforge/Flashforge Guider4 Pro_cover.png differ diff --git a/resources/profiles/Flashforge/Flashforge Guider4_cover.png b/resources/profiles/Flashforge/Flashforge Guider4_cover.png index 61de2728eb..88ba622984 100644 Binary files a/resources/profiles/Flashforge/Flashforge Guider4_cover.png and b/resources/profiles/Flashforge/Flashforge Guider4_cover.png differ diff --git a/resources/profiles/Flashforge/flashforge_ad5x_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_ad5x_buildplate_texture.png deleted file mode 100644 index 35d0eeaa14..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_ad5x_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_ad5x_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_ad5x_buildplate_texture.svg new file mode 100644 index 0000000000..b22690a068 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_ad5x_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_adventurer3_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_adventurer3_buildplate_texture.png deleted file mode 100644 index f3eeaa67ca..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_adventurer3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_adventurer3_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_adventurer3_buildplate_texture.svg new file mode 100644 index 0000000000..1c1a78e580 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_adventurer3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_adventurer5m_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_adventurer5m_buildplate_texture.png deleted file mode 100644 index 2657da085b..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_adventurer5m_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_adventurer5m_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_adventurer5m_buildplate_texture.svg new file mode 100644 index 0000000000..1e1781faa1 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_adventurer5m_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_adventurer5mpro_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_adventurer5mpro_buildplate_texture.png deleted file mode 100644 index 2657da085b..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_adventurer5mpro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_adventurer5mpro_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_adventurer5mpro_buildplate_texture.svg new file mode 100644 index 0000000000..aec851df67 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_adventurer5mpro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_artemis_buildplate_model.stl b/resources/profiles/Flashforge/flashforge_artemis_buildplate_model.stl new file mode 100644 index 0000000000..ceae87a86f Binary files /dev/null and b/resources/profiles/Flashforge/flashforge_artemis_buildplate_model.stl differ diff --git a/resources/profiles/Flashforge/flashforge_artemis_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_artemis_buildplate_texture.svg new file mode 100644 index 0000000000..7ac1b53e51 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_artemis_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl b/resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl index a9632ef29d..78a0ecdc38 100644 Binary files a/resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl and b/resources/profiles/Flashforge/flashforge_g2s_buildplate_model.stl differ diff --git a/resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.png deleted file mode 100644 index 2ced3df87c..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.svg new file mode 100644 index 0000000000..b7ed62c247 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_g2s_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_g3u_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_g3u_buildplate_texture.png deleted file mode 100644 index 2ced3df87c..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_g3u_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_g3u_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_g3u_buildplate_texture.svg new file mode 100644 index 0000000000..37116ab1b5 --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_g3u_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/flashforge_g4_buildplate_model.stl b/resources/profiles/Flashforge/flashforge_g4_buildplate_model.stl deleted file mode 100644 index a7ae3970f7..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_g4_buildplate_model.stl and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.png b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.png deleted file mode 100644 index ced7703f45..0000000000 Binary files a/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.svg b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.svg new file mode 100644 index 0000000000..ba470b1b1c --- /dev/null +++ b/resources/profiles/Flashforge/flashforge_g4pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X.json b/resources/profiles/Flashforge/machine/Flashforge AD5X.json index 967854c10f..3ed31ba385 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_adventurer5m_series_buildplate_model.STL", - "bed_texture": "flashforge_ad5x_buildplate_texture.png", + "bed_texture": "flashforge_ad5x_buildplate_texture.svg", "hotend_model": "flashforge_adventurer_5m_series_hotend.STL", "url": "", "default_materials": "Flashforge Generic ABS;Flashforge Generic PETG;Flashforge Generic PLA" diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series.json index eb19cd29a7..055382574c 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_adventurer3_series_buildplate_model.stl", - "bed_texture": "flashforge_adventurer3_buildplate_texture.png", + "bed_texture": "flashforge_adventurer3_buildplate_texture.svg", "default_bed_type": "Textured PEI Plate", "hotend_model": "", "default_materials": "Flashforge ABS;Flashforge PETG;Flashforge PLA" diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json index a9628e3abb..29fc1e2a4b 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json @@ -7,7 +7,7 @@ "family": "Flashforge", "host_type": "Flashforge", "bed_model": "flashforge_adventurer5m_series_buildplate_model.STL", - "bed_texture": "flashforge_adventurer5mpro_buildplate_texture.png", + "bed_texture": "flashforge_adventurer5mpro_buildplate_texture.svg", "hotend_model": "flashforge_adventurer_5m_series_hotend.STL", "default_filament_profile": "Generic ABS @Flashforge AD4;Generic PETG @Flashforge AD4;Generic PLA @Flashforge AD4;Generic PLA High Speed @Flashforge AD4;Generic TPU @Flashforge AD4" } diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro.json index 3d6ba6d9ba..fbc164e0e0 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_adventurer5m_series_buildplate_model.STL", - "bed_texture": "flashforge_adventurer5m_buildplate_texture.png", + "bed_texture": "flashforge_adventurer5m_buildplate_texture.svg", "default_bed_type": "Textured PEI Plate", "hotend_model": "flashforge_adventurer_5m_series_hotend.STL", "default_materials": "Flashforge Generic ABS;Flashforge Generic PETG;Flashforge Generic PLA" diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M.json index 7914068bbd..c0822d3d73 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_adventurer5m_series_buildplate_model.STL", - "bed_texture": "flashforge_adventurer5m_buildplate_texture.png", + "bed_texture": "flashforge_adventurer5m_buildplate_texture.svg", "default_bed_type": "Textured PEI Plate", "hotend_model": "flashforge_adventurer_5m_series_hotend.STL", "default_materials": "Flashforge Generic ABS;Flashforge Generic PETG;Flashforge Generic PLA" diff --git a/resources/profiles/Flashforge/machine/Flashforge Artemis.json b/resources/profiles/Flashforge/machine/Flashforge Artemis.json index 2a6f71cde6..7bab45b82a 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Artemis.json +++ b/resources/profiles/Flashforge/machine/Flashforge Artemis.json @@ -6,8 +6,8 @@ "machine_tech": "FFF", "family": "Flashforge", "host_type": "Flashforge", - "bed_model": "", - "bed_texture": "", + "bed_model": "flashforge_artemis_buildplate_model.stl", + "bed_texture": "flashforge_artemis_buildplate_texture.svg", "hotend_model": "", "default_filament_profile": "Flashforge Generic PETG; Flashforge Generic PLA" } diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 2s.json b/resources/profiles/Flashforge/machine/Flashforge Guider 2s.json index b71f3051d1..38c0f3c667 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 2s.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 2s.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_g2s_buildplate_model.stl", - "bed_texture": "flashforge_g2s_buildplate_texture.png", + "bed_texture": "flashforge_g2s_buildplate_texture.svg", "hotend_model": "", "default_materials": "Flashforge Generic PVA;Flashforge Generic HIPS;Flashforge Generic PETG-CF @G3U;Flashforge Generic PETG @G3U;Flashforge Generic PLA-CF @G3U;Flashforge Generic PLA @G3U;Flashforge Generic ASA @G3U;Flashforge Generic ABS @G3U;FusRock Generic PET-CF;FusRock Generic PAHT-CF;FusRock Generic NexPA-CF25;FusRock Generic S-Multi;FusRock Generic S-PAHT;Polymaker Generic CoPA;Polymaker Generic S1" } diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra.json index 6797efd30d..a3bc7d0b68 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_g3u_buildplate_model.stl", - "bed_texture": "flashforge_g3u_buildplate_texture.png", + "bed_texture": "flashforge_g3u_buildplate_texture.svg", "hotend_model": "", "default_materials": "Flashforge Generic PVA;Flashforge Generic HIPS;Flashforge Generic PETG-CF @G3U;Flashforge Generic PETG @G3U;Flashforge Generic PLA-CF @G3U;Flashforge Generic PLA @G3U;Flashforge Generic ASA @G3U;Flashforge Generic ABS @G3U;FusRock Generic PET-CF;FusRock Generic PAHT-CF;FusRock Generic NexPA-CF25;FusRock Generic S-Multi;FusRock Generic S-PAHT;Polymaker Generic CoPA;Polymaker Generic S1" } diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json index d3363cc1da..14ce7cead3 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_g4pro_buildplate_model.stl", - "bed_texture": "flashforge_g4pro_buildplate_texture.png", + "bed_texture": "flashforge_g4pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Flashforge Generic PVA;Flashforge Generic HIPS;Flashforge Generic PETG-CF @G3U;Flashforge Generic PETG @G3U;Flashforge Generic PLA-CF @G3U;Flashforge Generic PLA @G3U;Flashforge Generic ASA @G3U;Flashforge Generic ABS @G3U;FusRock Generic PET-CF;FusRock Generic PAHT-CF;FusRock Generic NexPA-CF25;FusRock Generic S-Multi;FusRock Generic S-PAHT;Polymaker Generic CoPA;Polymaker Generic S1" } diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4.json b/resources/profiles/Flashforge/machine/Flashforge Guider4.json index b757f7fa8a..7b5248e14b 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Flashforge", "bed_model": "flashforge_g4pro_buildplate_model.stl", - "bed_texture": "flashforge_g4pro_buildplate_texture.png", + "bed_texture": "flashforge_g4pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Flashforge Generic PVA;Flashforge Generic HIPS;Flashforge Generic PETG-CF @G3U;Flashforge Generic PETG @G3U;Flashforge Generic PLA-CF @G3U;Flashforge Generic PLA @G3U;Flashforge Generic ASA @G3U;Flashforge Generic ABS @G3U;FusRock Generic PET-CF;FusRock Generic PAHT-CF;FusRock Generic NexPA-CF25;FusRock Generic S-Multi;FusRock Generic S-PAHT;Polymaker Generic CoPA;Polymaker Generic S1" } diff --git a/resources/profiles/FlyingBear/FlyingBear Ghost7-bed.stl b/resources/profiles/FlyingBear/FlyingBear Ghost7-bed.stl index 95b640f42d..cbad4596c3 100644 Binary files a/resources/profiles/FlyingBear/FlyingBear Ghost7-bed.stl and b/resources/profiles/FlyingBear/FlyingBear Ghost7-bed.stl differ diff --git a/resources/profiles/Geeetech/Geeetech_buildplate_texture.svg b/resources/profiles/Geeetech/Geeetech_buildplate_texture.svg index feb67485a8..396bb5535d 100644 --- a/resources/profiles/Geeetech/Geeetech_buildplate_texture.svg +++ b/resources/profiles/Geeetech/Geeetech_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json index f1fe6fc7c2..a54bdc3b1f 100644 --- a/resources/profiles/Ginger Additive.json +++ b/resources/profiles/Ginger Additive.json @@ -1,6 +1,6 @@ { "name": "Ginger Additive", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "1", "description": "Ginger configuration", "machine_model_list": [ diff --git a/resources/profiles/Ginger Additive/Ginger_One_texture.png b/resources/profiles/Ginger Additive/Ginger_One_texture.png deleted file mode 100644 index 74230459cb..0000000000 Binary files a/resources/profiles/Ginger Additive/Ginger_One_texture.png and /dev/null differ diff --git a/resources/profiles/Ginger Additive/Ginger_One_texture.svg b/resources/profiles/Ginger Additive/Ginger_One_texture.svg new file mode 100644 index 0000000000..b77ec7262d --- /dev/null +++ b/resources/profiles/Ginger Additive/Ginger_One_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1.json b/resources/profiles/Ginger Additive/machine/Ginger G1.json index 1eb9333957..54756fd549 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1.json @@ -7,6 +7,6 @@ "machine_tech": "FGF", "family": "Ginger", "bed_model": "Ginger_G1.stl", - "bed_texture": "Ginger_One_texture.png", + "bed_texture": "Ginger_One_texture.svg", "default_materials": "Ginger Generic PETG;Ginger Generic PLA" } diff --git a/resources/profiles/InfiMech.json b/resources/profiles/InfiMech.json index c02e959aaa..7131aa62be 100644 --- a/resources/profiles/InfiMech.json +++ b/resources/profiles/InfiMech.json @@ -1,6 +1,6 @@ { "name": "InfiMech", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "1", "description": "InfiMech configurations", "machine_model_list": [ diff --git a/resources/profiles/InfiMech/InfiMech EX+APS-bed.stl b/resources/profiles/InfiMech/InfiMech EX+APS-bed.stl deleted file mode 100644 index 95b640f42d..0000000000 Binary files a/resources/profiles/InfiMech/InfiMech EX+APS-bed.stl and /dev/null differ diff --git a/resources/profiles/InfiMech/InfiMech EX+APS-texture.png b/resources/profiles/InfiMech/InfiMech EX+APS-texture.png deleted file mode 100644 index 0b23f2de5a..0000000000 Binary files a/resources/profiles/InfiMech/InfiMech EX+APS-texture.png and /dev/null differ diff --git a/resources/profiles/InfiMech/InfiMech EX-bed.stl b/resources/profiles/InfiMech/InfiMech EX-bed.stl index 95b640f42d..c61b64a913 100644 Binary files a/resources/profiles/InfiMech/InfiMech EX-bed.stl and b/resources/profiles/InfiMech/InfiMech EX-bed.stl differ diff --git a/resources/profiles/InfiMech/InfiMech EX-texture.png b/resources/profiles/InfiMech/InfiMech EX-texture.png deleted file mode 100644 index 0b23f2de5a..0000000000 Binary files a/resources/profiles/InfiMech/InfiMech EX-texture.png and /dev/null differ diff --git a/resources/profiles/InfiMech/InfiMech EX-texture.svg b/resources/profiles/InfiMech/InfiMech EX-texture.svg new file mode 100644 index 0000000000..a29e1b1ff2 --- /dev/null +++ b/resources/profiles/InfiMech/InfiMech EX-texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/InfiMech/InfiMech TX-bed_HSN.stl b/resources/profiles/InfiMech/InfiMech TX-bed_HSN.stl deleted file mode 100644 index 05ea70db46..0000000000 Binary files a/resources/profiles/InfiMech/InfiMech TX-bed_HSN.stl and /dev/null differ diff --git a/resources/profiles/InfiMech/InfiMech TX-texture.png b/resources/profiles/InfiMech/InfiMech TX-texture.png deleted file mode 100644 index 0942aba2cf..0000000000 Binary files a/resources/profiles/InfiMech/InfiMech TX-texture.png and /dev/null differ diff --git a/resources/profiles/InfiMech/InfiMech TX-texture.svg b/resources/profiles/InfiMech/InfiMech TX-texture.svg new file mode 100644 index 0000000000..dcbba8be67 --- /dev/null +++ b/resources/profiles/InfiMech/InfiMech TX-texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/InfiMech/InfiMech TX-texture_HSN.png b/resources/profiles/InfiMech/InfiMech TX-texture_HSN.png deleted file mode 100644 index 0942aba2cf..0000000000 Binary files a/resources/profiles/InfiMech/InfiMech TX-texture_HSN.png and /dev/null differ diff --git a/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS.json b/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS.json index 1810035a8e..c8a0e82521 100644 --- a/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS.json @@ -5,8 +5,8 @@ "nozzle_diameter": "0.4", "machine_tech": "FFF", "family": "InfiMechDesign", - "bed_model": "InfiMech EX+APS-bed.stl", - "bed_texture": "InfiMech EX+APS-texture.png", + "bed_model": "InfiMech EX-bed.stl", + "bed_texture": "InfiMech EX-texture.svg", "hotend_model": "", "default_materials": "InfiMech ABS @EX+APS;InfiMech PA-CF @EX+APS;InfiMech PC @EX+APS;InfiMech PETG @EX+APS;InfiMech PLA Basic @EX+APS;InfiMech PLA Hyper @EX+APS;InfiMech TPU Basic @EX+APS" } diff --git a/resources/profiles/InfiMech/machine/EX/InfiMech EX.json b/resources/profiles/InfiMech/machine/EX/InfiMech EX.json index f5c398534b..a4e2841b8d 100644 --- a/resources/profiles/InfiMech/machine/EX/InfiMech EX.json +++ b/resources/profiles/InfiMech/machine/EX/InfiMech EX.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "InfiMechDesign", "bed_model": "InfiMech EX-bed.stl", - "bed_texture": "InfiMech EX-texture.png", + "bed_texture": "InfiMech EX-texture.svg", "hotend_model": "", "default_materials": "InfiMech ABS @EX;InfiMech PA-CF @EX;InfiMech PC @EX;InfiMech PETG @EX;InfiMech PLA Basic @EX;InfiMech PLA Hyper @EX;InfiMech TPU Basic @EX" } diff --git a/resources/profiles/InfiMech/machine/HSN/InfiMech TX Hardened Steel Nozzle.json b/resources/profiles/InfiMech/machine/HSN/InfiMech TX Hardened Steel Nozzle.json index e5daa5f940..fff3371aba 100644 --- a/resources/profiles/InfiMech/machine/HSN/InfiMech TX Hardened Steel Nozzle.json +++ b/resources/profiles/InfiMech/machine/HSN/InfiMech TX Hardened Steel Nozzle.json @@ -5,8 +5,8 @@ "nozzle_diameter": "0.4", "machine_tech": "FFF", "family": "InfiMechDesign", - "bed_model": "InfiMech TX-bed_HSN.stl", - "bed_texture": "InfiMech TX-texture_HSN.png", + "bed_model": "InfiMech TX-bed.stl", + "bed_texture": "InfiMech TX-texture.svg", "hotend_model": "", "default_materials": "InfiMech Generic ABS;InfiMech Generic PA-CF;InfiMech Generic PC;InfiMech Generic PETG;InfiMech Generic PLA;InfiMech Generic TPU" } diff --git a/resources/profiles/InfiMech/machine/InfiMech TX.json b/resources/profiles/InfiMech/machine/InfiMech TX.json index 04d78f9813..abb93dfe09 100644 --- a/resources/profiles/InfiMech/machine/InfiMech TX.json +++ b/resources/profiles/InfiMech/machine/InfiMech TX.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "InfiMechDesign", "bed_model": "InfiMech TX-bed.stl", - "bed_texture": "InfiMech TX-texture.png", + "bed_texture": "InfiMech TX-texture.svg", "hotend_model": "", "default_materials": "InfiMech Generic ABS;InfiMech Generic PA-CF;InfiMech Generic PC;InfiMech Generic PETG;InfiMech Generic PLA;InfiMech Generic TPU" } diff --git a/resources/profiles/LH.json b/resources/profiles/LH.json new file mode 100644 index 0000000000..32df35a0cf --- /dev/null +++ b/resources/profiles/LH.json @@ -0,0 +1,159 @@ +{ + "name": "LH", + "url": "https://github.com/lhndo/LH-Stinger", + "version": "01.00.00.00", + "force_update": "0", + "description": "LH 3D Printer Configuration", + "machine_model_list": [ + { + "name": "LH Stinger", + "sub_path": "machine/LH Stinger.json" + }, + { + "name": "LH Stinger MMU", + "sub_path": "machine/LH Stinger MMU.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + }, + { + "name": "fdm_process_lh_common", + "sub_path": "process/fdm_process_lh_common.json" + }, + { + "name": "0.20mm Daily @LH Stinger", + "sub_path": "process/0.20mm Daily @LH Stinger.json" + }, + { + "name": "0.25mm Vase Mode @LH Stinger", + "sub_path": "process/0.25mm Vase Mode @LH Stinger.json" + }, + { + "name": "0.20mm TPU @LH Stinger", + "sub_path": "process/0.20mm TPU @LH Stinger.json" + }, + { + "name": "0.20mm Strength @LH Stinger", + "sub_path": "process/0.20mm Strength @LH Stinger.json" + }, + { + "name": "0.20mm Speed @LH Stinger", + "sub_path": "process/0.20mm Speed @LH Stinger.json" + }, + { + "name": "0.20mm Solid @LH Stinger", + "sub_path": "process/0.20mm Solid @LH Stinger.json" + }, + { + "name": "0.20mm Quiet @LH Stinger", + "sub_path": "process/0.20mm Quiet @LH Stinger.json" + }, + { + "name": "0.20mm PETG @LH Stinger", + "sub_path": "process/0.20mm PETG @LH Stinger.json" + }, + { + "name": "0.20mm MMU @LH Stinger", + "sub_path": "process/0.20mm MMU @LH Stinger.json" + }, + { + "name": "0.10mm HueForge @LH Stinger", + "sub_path": "process/0.10mm HueForge @LH Stinger.json" + }, + { + "name": "0.14mm Detail Strength @LH Stinger", + "sub_path": "process/0.14mm Detail Strength @LH Stinger.json" + }, + { + "name": "0.14mm Detail @LH Stinger", + "sub_path": "process/0.14mm Detail @LH Stinger.json" + } + ], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + }, + { + "name": "fdm_filament_abs", + "sub_path": "filament/fdm_filament_abs.json" + }, + { + "name": "fdm_filament_asa", + "sub_path": "filament/fdm_filament_asa.json" + }, + { + "name": "fdm_filament_pc", + "sub_path": "filament/fdm_filament_pc.json" + }, + { + "name": "fdm_filament_pet", + "sub_path": "filament/fdm_filament_pet.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "fdm_filament_tpu", + "sub_path": "filament/fdm_filament_tpu.json" + }, + { + "name": "LHS ASA", + "sub_path": "filament/LHS ASA.json" + }, + { + "name": "LHS ABS", + "sub_path": "filament/LHS ABS.json" + }, + { + "name": "LHS TPU", + "sub_path": "filament/LHS TPU.json" + }, + { + "name": "LHS PLA", + "sub_path": "filament/LHS PLA.json" + }, + { + "name": "LHS TPU Foamy 78A", + "sub_path": "filament/LHS TPU Foamy 78A.json" + }, + { + "name": "LHS PETG", + "sub_path": "filament/LHS PETG.json" + }, + { + "name": "LHS PCTG", + "sub_path": "filament/LHS PCTG.json" + }, + { + "name": "LHS PC CF", + "sub_path": "filament/LHS PC CF.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "fdm_lh_common", + "sub_path": "machine/fdm_lh_common.json" + }, + { + "name": "fdm_lh_mmu_common", + "sub_path": "machine/fdm_lh_mmu_common.json" + }, + { + "name": "LH Stinger 0.4 nozzle", + "sub_path": "machine/LH Stinger 0.4 nozzle.json" + }, + { + "name": "LH Stinger MMU 0.4 nozzle", + "sub_path": "machine/LH Stinger MMU 0.4 nozzle.json" + } + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/LH Stinger MMU_cover.png b/resources/profiles/LH/LH Stinger MMU_cover.png new file mode 100644 index 0000000000..ef0ed9c9e4 Binary files /dev/null and b/resources/profiles/LH/LH Stinger MMU_cover.png differ diff --git a/resources/profiles/LH/LH Stinger_cover.png b/resources/profiles/LH/LH Stinger_cover.png new file mode 100644 index 0000000000..09070257b9 Binary files /dev/null and b/resources/profiles/LH/LH Stinger_cover.png differ diff --git a/resources/profiles/LH/LH_Stinger_MMU_buildplate_texture.png b/resources/profiles/LH/LH_Stinger_MMU_buildplate_texture.png new file mode 100644 index 0000000000..d21afe069e Binary files /dev/null and b/resources/profiles/LH/LH_Stinger_MMU_buildplate_texture.png differ diff --git a/resources/profiles/LH/LH_Stinger_buildplate_model.stl b/resources/profiles/LH/LH_Stinger_buildplate_model.stl new file mode 100644 index 0000000000..37fd514014 Binary files /dev/null and b/resources/profiles/LH/LH_Stinger_buildplate_model.stl differ diff --git a/resources/profiles/LH/LH_Stinger_buildplate_texture.png b/resources/profiles/LH/LH_Stinger_buildplate_texture.png new file mode 100644 index 0000000000..e03843bd23 Binary files /dev/null and b/resources/profiles/LH/LH_Stinger_buildplate_texture.png differ diff --git a/resources/profiles/LH/filament/LHS ABS.json b/resources/profiles/LH/filament/LHS ABS.json new file mode 100644 index 0000000000..95cd7ccd73 --- /dev/null +++ b/resources/profiles/LH/filament/LHS ABS.json @@ -0,0 +1,355 @@ +{ + "name": "LHS ABS", + "type": "filament", + "filament_id": "LHF_abs", + "setting_id": "LHF_S_abs", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "25" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "25" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.926" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "45" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "LHS - ASA" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.07 FILAMENT_HEAT_CAPACITY=2.1\nMAX_FAN LINK_AUX=0" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "ASA" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "4" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "-1" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.019" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "15" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "110" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS ASA.json b/resources/profiles/LH/filament/LHS ASA.json new file mode 100644 index 0000000000..9c8ed46093 --- /dev/null +++ b/resources/profiles/LH/filament/LHS ASA.json @@ -0,0 +1,352 @@ +{ + "name": "LHS ASA", + "filament_id": "LHF_asa", + "setting_id": "LHF_S_asa", + "type": "filament", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_asa", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "25" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "25" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.926" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "45" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.07 FILAMENT_HEAT_CAPACITY=2.1\nMAX_FAN LINK_AUX=0" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "ASA" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "4" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "-1" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.019" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "15" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "support_material_interface_fan_speed": [ + "-1" + ], + "temperature_vitrification": [ + "110" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS PC CF.json b/resources/profiles/LH/filament/LHS PC CF.json new file mode 100644 index 0000000000..ec749abf64 --- /dev/null +++ b/resources/profiles/LH/filament/LHS PC CF.json @@ -0,0 +1,122 @@ +{ + "name": "LHS PC CF", + "type": "filament", + "filament_id": "LHF_pccf", + "setting_id": "LHF_S_pccf", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "4" + ], + "enable_pressure_advance": [ + "1" + ], + "fan_cooling_layer_time": [ + "11" + ], + "fan_max_speed": [ + "5" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_density": [ + "1.18" + ], + "filament_flow_ratio": [ + "0.945" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_max_volumetric_speed": [ + "35" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "Extrusion Override set to a higher value\nAux disabled\nZ-Offset increased to 0.025 due to nozzle expansion at 300C" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_shrink": [ + "99.8%" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.36 FILAMENT_HEAT_CAPACITY=2.6\nMAX_FAN LINK_AUX=0" + ], + "filament_type": [ + "PC" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "is_custom_defined": "0", + "nozzle_temperature": [ + "300" + ], + "nozzle_temperature_initial_layer": [ + "300" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "270" + ], + "overhang_fan_speed": [ + "35" + ], + "pressure_advance": [ + "0.025" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "12" + ], + "filament_vendor": [ + "LH Stinger" + ], + "temperature_vitrification": [ + "140" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS PCTG.json b/resources/profiles/LH/filament/LHS PCTG.json new file mode 100644 index 0000000000..7508a1fbd3 --- /dev/null +++ b/resources/profiles/LH/filament/LHS PCTG.json @@ -0,0 +1,352 @@ +{ + "name": "LHS PCTG", + "type": "filament", + "filament_id": "LHF_pctg", + "setting_id": "LHF_S_pctg", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "13" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "25" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.953" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "10" + ], + "filament_multitool_ramming_volume": [ + "10" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "30" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.25 FILAMENT_HEAT_CAPACITY=5.5\nMAX_FAN LINK_AUX=0" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "PCTG" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "0" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "85" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "30" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.038" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "15" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "support_material_interface_fan_speed": [ + "50" + ], + "temperature_vitrification": [ + "80" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS PETG.json b/resources/profiles/LH/filament/LHS PETG.json new file mode 100644 index 0000000000..4c50c13b4c --- /dev/null +++ b/resources/profiles/LH/filament/LHS PETG.json @@ -0,0 +1,352 @@ +{ + "name": "LHS PETG", + "type": "filament", + "filament_id": "LHF_petg", + "setting_id": "LHF_S_petg", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "65" + ], + "fan_min_speed": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.923" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "27" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.27 FILAMENT_HEAT_CAPACITY=5.5\nMAX_FAN LINK_AUX=0" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "PETG" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "3" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "50" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "50%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.047" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "14" + ], + "slow_down_min_speed": [ + "15" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "support_material_interface_fan_speed": [ + "80" + ], + "temperature_vitrification": [ + "80" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS PLA.json b/resources/profiles/LH/filament/LHS PLA.json new file mode 100644 index 0000000000..6e927484a8 --- /dev/null +++ b/resources/profiles/LH/filament/LHS PLA.json @@ -0,0 +1,352 @@ +{ + "name": "LHS PLA", + "type": "filament", + "filament_id": "LHF_pla", + "setting_id": "LHF_S_pla", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_pla", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "65" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "45" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.24 FILAMENT_HEAT_CAPACITY=3.2\n; MAX_FAN LINK_AUX=0" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "PLA" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "-1" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "15" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "45" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS TPU Foamy 78A.json b/resources/profiles/LH/filament/LHS TPU Foamy 78A.json new file mode 100644 index 0000000000..cb706c46de --- /dev/null +++ b/resources/profiles/LH/filament/LHS TPU Foamy 78A.json @@ -0,0 +1,352 @@ +{ + "name": "LHS TPU Foamy 78A", + "type": "filament", + "filament_id": "LHF_ftpuf", + "setting_id": "LHF_S_ftpuf", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_tpu", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "55" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "60" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.02" + ], + "filament_deretraction_speed": [ + "20" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.85" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "1.2" + ], + "filament_retraction_minimum_travel": [ + "1" + ], + "filament_retraction_speed": [ + "30" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.02 FILAMENT_HEAT_CAPACITY=2\n; MAX_FAN LINK_AUX=0 \nSET_PRESSURE_ADVANCE EXTRUDER=extruder SMOOTH_TIME=0.04" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "TPU" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "0" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "0" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "25" + ], + "hot_plate_temp_initial_layer": [ + "25" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "-1" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.06" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "30" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/LHS TPU.json b/resources/profiles/LH/filament/LHS TPU.json new file mode 100644 index 0000000000..463cd29b2b --- /dev/null +++ b/resources/profiles/LH/filament/LHS TPU.json @@ -0,0 +1,352 @@ +{ + "name": "LHS TPU", + "type": "filament", + "filament_id": "LHF_ptpu_pl", + "setting_id": "LHF_S_ptpu_pl", + "from": "system", + "instantiation": "true", + "inherits": "fdm_filament_tpu", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "activate_air_filtration": [ + "0" + ], + "activate_chamber_temp_control": [ + "0" + ], + "adaptive_pressure_advance": [ + "0" + ], + "adaptive_pressure_advance_bridges": [ + "0" + ], + "adaptive_pressure_advance_model": [ + "0,0,0\n0,0,0" + ], + "adaptive_pressure_advance_overhangs": [ + "0" + ], + "additional_cooling_fan_speed": [ + "55" + ], + "chamber_temperature": [ + "0" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "default_filament_colour": [ + "" + ], + "dont_slow_down_outer_wall": [ + "0" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "1" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "60" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "0" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_final_speed": [ + "0" + ], + "filament_cooling_initial_speed": [ + "0" + ], + "filament_cooling_moves": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "20" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.965" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_ironing_flow": [ + "nil" + ], + "filament_ironing_inset": [ + "nil" + ], + "filament_ironing_spacing": [ + "nil" + ], + "filament_ironing_speed": [ + "nil" + ], + "filament_is_support": [ + "0" + ], + "filament_loading_speed": [ + "0" + ], + "filament_loading_speed_start": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "0" + ], + "filament_multitool_ramming": [ + "0" + ], + "filament_multitool_ramming_flow": [ + "0" + ], + "filament_multitool_ramming_volume": [ + "0" + ], + "filament_notes": [ + "" + ], + "filament_printable": [ + "3" + ], + "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" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_lift_above": [ + "nil" + ], + "filament_retract_lift_below": [ + "nil" + ], + "filament_retract_lift_enforce": [ + "Bottom Only" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil" + ], + "filament_retraction_length": [ + "0.9" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "35" + ], + "filament_shrink": [ + "100%" + ], + "filament_shrinkage_compensation_z": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_stamping_distance": [ + "0" + ], + "filament_stamping_loading_speed": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n; MPC_SET HEATER=extruder FILAMENT_DENSITY=1.22 FILAMENT_HEAT_CAPACITY=2\n; MAX_FAN LINK_AUX=0\nSET_PRESSURE_ADVANCE EXTRUDER=extruder SMOOTH_TIME=0.04" + ], + "filament_toolchange_delay": [ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_type": [ + "TPU" + ], + "filament_unloading_speed": [ + "0" + ], + "filament_unloading_speed_start": [ + "0" + ], + "filament_wipe": [ + "0" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "idle_temperature": [ + "0" + ], + "internal_bridge_fan_speed": [ + "-1" + ], + "ironing_fan_speed": [ + "-1" + ], + "long_retractions_when_ec": [ + "0" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pellet_flow_coefficient": [ + "0.4157" + ], + "pressure_advance": [ + "0.08" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "12" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "support_material_interface_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "30" + ], + "textured_cool_plate_temp": [ + "40" + ], + "textured_cool_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "filament_vendor": [ + "LH Stinger" + ], + "volumetric_speed_coefficients": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_abs.json b/resources/profiles/LH/filament/fdm_filament_abs.json new file mode 100644 index 0000000000..8be5c8c2f2 --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_abs.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "fdm_filament_abs", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "105" + ], + "eng_plate_temp": [ + "105" + ], + "hot_plate_temp": [ + "105" + ], + "textured_plate_temp": [ + "105" + ], + "cool_plate_temp_initial_layer": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ABS" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "80" + ], + "nozzle_temperature": [ + "260" + ], + "temperature_vitrification": [ + "110" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_asa.json b/resources/profiles/LH/filament/fdm_filament_asa.json new file mode 100644 index 0000000000..19cfa6b520 --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_asa.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "fdm_filament_asa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "105" + ], + "eng_plate_temp": [ + "105" + ], + "hot_plate_temp": [ + "105" + ], + "textured_plate_temp": [ + "105" + ], + "cool_plate_temp_initial_layer": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "35" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ASA" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "80" + ], + "nozzle_temperature": [ + "260" + ], + "temperature_vitrification": [ + "110" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "3" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_common.json b/resources/profiles/LH/filament/fdm_filament_common.json new file mode 100644 index 0000000000..788382bc9e --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_common.json @@ -0,0 +1,141 @@ +{ + "type": "filament", + "name": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "overhang_fan_threshold": [ + "95%" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_flow_ratio": [ + "1" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "fan_cooling_layer_time": [ + "60" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "0" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_max_volumetric_speed": [ + "0" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retract_before_wipe": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_settings_id": [ + "" + ], + "filament_soluble": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "bed_type": [ + "Cool Plate" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "full_fan_speed_layer": [ + "0" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "35" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; Filament gcode\n" + ], + "nozzle_temperature": [ + "200" + ], + "temperature_vitrification": [ + "100" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_pc.json b/resources/profiles/LH/filament/fdm_filament_pc.json new file mode 100644 index 0000000000..25d83913f7 --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_pc.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "fdm_filament_pc", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "eng_plate_temp": [ + "110" + ], + "hot_plate_temp": [ + "110" + ], + "textured_plate_temp": [ + "110" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "30" + ], + "filament_max_volumetric_speed": [ + "23.2" + ], + "filament_type": [ + "PC" + ], + "filament_density": [ + "1.04" + ], + "filament_cost": [ + "20" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_fan_speed": [ + "60" + ], + "nozzle_temperature": [ + "280" + ], + "temperature_vitrification": [ + "140" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_pet.json b/resources/profiles/LH/filament/fdm_filament_pet.json new file mode 100644 index 0000000000..75210fc454 --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_pet.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "fdm_filament_pet", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "0" + ], + "hot_plate_temp": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "20" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_type": [ + "PETG" + ], + "filament_density": [ + "1.27" + ], + "filament_cost": [ + "30" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "20" + ], + "overhang_fan_speed": [ + "100" + ], + "nozzle_temperature": [ + "255" + ], + "temperature_vitrification": [ + "80" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_pla.json b/resources/profiles/LH/filament/fdm_filament_pla.json new file mode 100644 index 0000000000..562adb381a --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_pla.json @@ -0,0 +1,94 @@ +{ + "type": "filament", + "name": "fdm_filament_pla", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PLA" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "cool_plate_temp": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "220" + ], + "temperature_vitrification": [ + "60" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "slow_down_min_speed": [ + "10" + ], + "slow_down_layer_time": [ + "4" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/filament/fdm_filament_tpu.json b/resources/profiles/LH/filament/fdm_filament_tpu.json new file mode 100644 index 0000000000..fdd29ca2a0 --- /dev/null +++ b/resources/profiles/LH/filament/fdm_filament_tpu.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "fdm_filament_tpu", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "30" + ], + "eng_plate_temp": [ + "30" + ], + "hot_plate_temp": [ + "35" + ], + "textured_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "100" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_type": [ + "TPU" + ], + "filament_density": [ + "1.24" + ], + "filament_cost": [ + "20" + ], + "filament_retraction_length": [ + "0.4" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "overhang_fan_speed": [ + "100" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "nozzle_temperature": [ + "240" + ], + "temperature_vitrification": [ + "60" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json b/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json new file mode 100644 index 0000000000..974b81d5fe --- /dev/null +++ b/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "machine", + "name": "LH Stinger 0.4 nozzle", + "inherits": "fdm_lh_common", + "from": "system", + "setting_id": "LHS_m01_04", + "instantiation": "true", + "printer_model": "LH Stinger", + "nozzle_diameter": [ + "0.4" + ], + "default_filament_profile": [ + "LHS PLA" + ], + "printer_variant": "0.4" +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json b/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json new file mode 100644 index 0000000000..3c8b400b87 --- /dev/null +++ b/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json @@ -0,0 +1,16 @@ +{ + "type": "machine", + "name": "LH Stinger MMU 0.4 nozzle", + "inherits": "fdm_lh_mmu_common", + "from": "system", + "setting_id": "LHS_m01_mmu_04", + "instantiation": "true", + "printer_model": "LH Stinger MMU", + "nozzle_diameter": [ + "0.4" + ], + "default_filament_profile": [ + "LHS PLA" + ], + "printer_variant": "0.4" +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/LH Stinger MMU.json b/resources/profiles/LH/machine/LH Stinger MMU.json new file mode 100644 index 0000000000..dd0a1201c6 --- /dev/null +++ b/resources/profiles/LH/machine/LH Stinger MMU.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "LH Stinger MMU", + "model_id": "LHS_M_mmu", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "LH", + "bed_model": "LH_Stinger_buildplate_model.STL", + "bed_texture": "LH_Stinger_MMU_buildplate_texture.png", + "hotend_model": "", + "default_materials": "LHS PLA;LHS PETG;LHS PCTG;LHS ASA;LHS ABS;LHS PC CF;LHS TPU Foamy 78A;LHS TPU;" +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/LH Stinger.json b/resources/profiles/LH/machine/LH Stinger.json new file mode 100644 index 0000000000..1e29493210 --- /dev/null +++ b/resources/profiles/LH/machine/LH Stinger.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "LH Stinger", + "model_id": "LHS_M_base", + "nozzle_diameter": "0.4", + "machine_tech": "FFF", + "family": "LH", + "bed_model": "LH_Stinger_buildplate_model.STL", + "bed_texture": "LH_Stinger_buildplate_texture.png", + "hotend_model": "", + "default_materials": "LHS PLA;LHS PETG;LHS PCTG;LHS ASA;LHS ABS;LHS PC CF;LHS TPU Foamy 78A;LHS TPU;" +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/fdm_lh_common.json b/resources/profiles/LH/machine/fdm_lh_common.json new file mode 100644 index 0000000000..277e0762eb --- /dev/null +++ b/resources/profiles/LH/machine/fdm_lh_common.json @@ -0,0 +1,157 @@ +{ + "type": "machine", + "name": "fdm_lh_common", + "inherits": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "gcode_flavor": "klipper", + "machine_max_acceleration_e": [ + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "200000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "200000", + "5000" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "200000", + "20000" + ], + "machine_max_acceleration_y": [ + "200000", + "20000" + ], + "machine_max_acceleration_z": [ + "2000", + "200" + ], + "machine_max_speed_e": [ + "200", + "25" + ], + "machine_max_speed_x": [ + "1000", + "200" + ], + "machine_max_speed_y": [ + "1000", + "200" + ], + "machine_max_speed_z": [ + "100", + "12" + ], + "machine_max_jerk_e": [ + "15", + "2.5" + ], + "machine_max_jerk_x": [ + "15", + "9" + ], + "machine_max_jerk_y": [ + "15", + "9" + ], + "machine_max_jerk_z": [ + "15", + "0.4" + ], + "machine_min_extruding_rate": [ + "0", + "0" + ], + "machine_min_travel_rate": [ + "0", + "0" + ], + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "printable_area": [ + "18x38", + "218x38", + "218x238", + "18x238" + ], + "printable_height": "180", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "printer_settings_id": "", + "printer_technology": "FFF", + "printer_variant": "0.4", + "retraction_minimum_travel": [ + "1" + ], + "retract_before_wipe": [ + "70%" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "0.3" + ], + "retract_length_toolchange": [ + "0" + ], + "z_hop": [ + "0.2" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retraction_speed": [ + "40" + ], + "deretraction_speed": [ + "30" + ], + "retract_lift_enforce": [ + "Top and Bottom" + ], + "z_hop_types": [ + "Auto Lift" + ], + "silent_mode": "0", + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "manual_filament_change": "1", + "wipe": [ + "1" + ], + "default_filament_profile": [ + "LH Generic PLA" + ], + "enable_filament_ramming": "0", + "default_print_profile": "0.20mm Daily @LH Stinger", + "bed_exclude_area": [ + "0x0" + ], + "machine_start_gcode": "PRINT_START_LHS BED=[bed_temperature_initial_layer_single] HOTEND=[nozzle_temperature_initial_layer] AUTOMESH=1 AUTOPURGE=1 QUIETMODE={if print_preset =~ /.*Quiet.*/ }1{else}0{endif}\n", + "machine_end_gcode": "PRINT_END", + "layer_change_gcode": ";AFTER_LAYER_CHANGES\n;[layer_z]", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_pause_gcode": "PAUSE", + "scan_first_layer": "0", + "nozzle_type": [ + "brass" + ], + "bed_temperature_formula": "by_first_filament", + "auxiliary_fan": "1" +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/fdm_lh_mmu_common.json b/resources/profiles/LH/machine/fdm_lh_mmu_common.json new file mode 100644 index 0000000000..4390b0d3fd --- /dev/null +++ b/resources/profiles/LH/machine/fdm_lh_mmu_common.json @@ -0,0 +1,21 @@ +{ + "type": "machine", + "name": "fdm_lh_mmu_common", + "inherits": "fdm_lh_common", + "from": "system", + "instantiation": "false", + "cooling_tube_length": "0", + "cooling_tube_retraction": "0", + "enable_filament_ramming": "0", + "extra_loading_move": "0", + "machine_start_gcode": " _SP_PRINT_START LANE=[initial_tool] TEMP=[nozzle_temperature_initial_layer]\n\nPRINT_START_LHS BED=[bed_temperature_initial_layer_single] HOTEND=[nozzle_temperature_initial_layer] AUTOMESH=1 AUTOPURGE=1 QUIETMODE={if print_preset =~ /.*Quiet.*/ }1{else}0{endif}\n\n", + "change_filament_gcode": " _SP_SET_PURGE PURGE=[first_flush_volume] ", + "layer_change_gcode": ";AFTER_LAYER_CHANGES\n;[layer_z]", + "machine_end_gcode": "PRINT_END\n\n_SP_PRINT_END", + "machine_tool_change_time": "20", + "parking_pos_retraction": "0", + "manual_filament_change": "0", + "retract_length_toolchange": [ + "0" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/machine/fdm_machine_common.json b/resources/profiles/LH/machine/fdm_machine_common.json new file mode 100644 index 0000000000..a46315dc8c --- /dev/null +++ b/resources/profiles/LH/machine/fdm_machine_common.json @@ -0,0 +1,119 @@ +{ + "type": "machine", + "name": "fdm_machine_common", + "from": "system", + "instantiation": "false", + "printer_technology": "FFF", + "deretraction_speed": [ + "40" + ], + "extruder_colour": [ + "#FCE94F" + ], + "extruder_offset": [ + "0x0" + ], + "gcode_flavor": "marlin", + "silent_mode": "0", + "machine_max_acceleration_e": [ + "5000" + ], + "machine_max_acceleration_extruding": [ + "10000" + ], + "machine_max_acceleration_retracting": [ + "1000" + ], + "machine_max_acceleration_x": [ + "10000" + ], + "machine_max_acceleration_y": [ + "10000" + ], + "machine_max_acceleration_z": [ + "500" + ], + "machine_max_speed_e": [ + "60" + ], + "machine_max_speed_x": [ + "500" + ], + "machine_max_speed_y": [ + "500" + ], + "machine_max_speed_z": [ + "10" + ], + "machine_max_jerk_e": [ + "5" + ], + "machine_max_jerk_x": [ + "8" + ], + "machine_max_jerk_y": [ + "8" + ], + "machine_max_jerk_z": [ + "0.4" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "printable_height": "250", + "extruder_clearance_radius": "65", + "extruder_clearance_height_to_rod": "36", + "extruder_clearance_height_to_lid": "140", + "nozzle_diameter": [ + "0.4" + ], + "printer_settings_id": "", + "printer_variant": "0.4", + "retraction_minimum_travel": [ + "2" + ], + "retract_before_wipe": [ + "70%" + ], + "retract_when_changing_layer": [ + "1" + ], + "retraction_length": [ + "1" + ], + "retract_length_toolchange": [ + "1" + ], + "z_hop": [ + "0" + ], + "retract_restart_extra": [ + "0" + ], + "retract_restart_extra_toolchange": [ + "0" + ], + "retraction_speed": [ + "60" + ], + "single_extruder_multi_material": "1", + "change_filament_gcode": "", + "wipe": [ + "1" + ], + "default_print_profile": "", + "machine_start_gcode": "G0 Z20 F9000\nG92 E0; G1 E-10 F1200\nG28\nM970 Q1 A10 B10 C130 K0\nM970 Q1 A10 B131 C250 K1\nM974 Q1 S1 P0\nM970 Q0 A10 B10 C130 H20 K0\nM970 Q0 A10 B131 C250 K1\nM974 Q0 S1 P0\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nG29 ;Home\nG90;\nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S205;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder \nG1 X110 Y110 Z2.0 F3000 ;Move Z Axis up", + "machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end", + "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]", + "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n", + "machine_pause_gcode": "M601" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json b/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json new file mode 100644 index 0000000000..c3a7924bff --- /dev/null +++ b/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json @@ -0,0 +1,42 @@ +{ + "type": "process", + "name": "0.10mm HueForge @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_hueforge", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "bottom_shell_layers": "999", + "bottom_solid_infill_flow_ratio": "0.98", + "detect_narrow_internal_solid_infill": "0", + "ensure_vertical_shell_thickness": "none", + "initial_layer_acceleration": "1000", + "initial_layer_infill_speed": "150", + "initial_layer_print_height": "0.16", + "initial_layer_speed": "80", + "layer_height": "0.1", + "max_travel_detour_distance": "60", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "reduce_crossing_wall": "1", + "skirt_loops": "1", + "slice_closing_radius": "0.042", + "sparse_infill_density": "0%", + "top_bottom_infill_wall_overlap": "15%", + "top_shell_layers": "0", + "top_solid_infill_flow_ratio": "0.98", + "brim_type": "no_brim", + "wall_generator": "arachne", + "wall_sequence": "inner wall/outer wall", + "reduce_infill_retraction": "1", + "gap_fill_target": "nowhere", + "filter_out_gap_fill": "0.5", + "wall_loops": "1" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json b/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json new file mode 100644 index 0000000000..cad9a16e51 --- /dev/null +++ b/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json @@ -0,0 +1,54 @@ +{ + "type": "process", + "name": "0.14mm Detail @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_detail", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "bottom_shell_layers": "5", + "bridge_flow": "1.2", + "default_jerk": "10", + "enable_support": "1", + "ensure_vertical_shell_thickness": "ensure_moderate", + "filter_out_gap_fill": "10", + "infill_jerk": "10", + "infill_wall_overlap": "10%", + "initial_layer_infill_speed": "90", + "initial_layer_jerk": "10", + "initial_layer_travel_speed": "250", + "inner_wall_jerk": "10", + "internal_bridge_flow": "1.2", + "layer_height": "0.14", + "max_travel_detour_distance": "50", + "outer_wall_jerk": "10", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "reduce_crossing_wall": "1", + "skirt_loops": "2", + "slow_down_layers": "2", + "small_perimeter_speed": "75%", + "small_perimeter_threshold": "3", + "sparse_infill_pattern": "rectilinear", + "sparse_infill_density": "15%", + "support_angle": "45", + "support_base_pattern": "rectilinear", + "support_base_pattern_spacing": "1.5", + "support_bottom_z_distance": "0.15", + "support_style": "organic", + "support_type": "tree(auto)", + "top_shell_layers": "6", + "top_surface_jerk": "10", + "wall_generator": "arachne", + "min_length_factor": "0.5", + "gap_fill_target": "nowhere", + "wall_loops": "3", + "travel_jerk": "10" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json b/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json new file mode 100644 index 0000000000..e473db7707 --- /dev/null +++ b/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json @@ -0,0 +1,67 @@ +{ + "type": "process", + "name": "0.14mm Detail Strength @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_detail_strength", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "bottom_shell_layers": "6", + "bottom_shell_thickness": "0.8", + "bridge_acceleration": "7500", + "bridge_flow": "1.2", + "brim_width": "3", + "default_acceleration": "15000", + "default_jerk": "10", + "gap_infill_speed": "200", + "infill_anchor": "1000", + "infill_anchor_max": "1000", + "infill_jerk": "10", + "initial_layer_infill_speed": "90", + "initial_layer_jerk": "10", + "initial_layer_travel_speed": "250", + "inner_wall_acceleration": "10000", + "inner_wall_speed": "200", + "inner_wall_jerk": "10", + "internal_solid_infill_acceleration": "15000", + "internal_solid_infill_speed": "200", + "layer_height": "0.14", + "max_travel_detour_distance": "50", + "outer_wall_acceleration": "7500", + "outer_wall_jerk": "10", + "outer_wall_speed": "200", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "reduce_crossing_wall": "1", + "skirt_loops": "2", + "slow_down_layers": "2", + "small_perimeter_speed": "75%", + "small_perimeter_threshold": "3", + "sparse_infill_acceleration": "15000", + "sparse_infill_speed": "200", + "sparse_infill_density": "40%", + "sparse_infill_pattern": "gyroid", + "support_base_pattern_spacing": "1.5", + "support_bottom_interface_spacing": "0.3", + "support_bottom_z_distance": "0.15", + "support_interface_speed": "300", + "support_speed": "200", + "support_type": "normal(manual)", + "top_shell_layers": "7", + "top_shell_thickness": "1", + "top_surface_acceleration": "7500", + "top_surface_jerk": "10", + "top_surface_speed": "200", + "travel_jerk": "10", + "wall_generator": "arachne", + "wall_sequence": "inner wall/outer wall", + "top_bottom_infill_wall_overlap": "25%", + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json b/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json new file mode 100644 index 0000000000..78f152a487 --- /dev/null +++ b/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json @@ -0,0 +1,12 @@ +{ + "type": "process", + "name": "0.20mm Daily @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_daily", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json b/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json new file mode 100644 index 0000000000..e4a2616d10 --- /dev/null +++ b/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json @@ -0,0 +1,48 @@ +{ + "type": "process", + "name": "0.20mm MMU @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_mmu", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger MMU 0.4 nozzle" + ], + "bottom_surface_pattern": "monotonicline", + "bridge_acceleration": "7000", + "default_jerk": "10", + "detect_narrow_internal_solid_infill": "0", + "filter_out_gap_fill": "1", + "gap_infill_speed": "220", + "infill_jerk": "10", + "infill_wall_overlap": "8%", + "initial_layer_infill_speed": "120", + "initial_layer_jerk": "10", + "initial_layer_line_width": "0.4", + "inner_wall_acceleration": "15000", + "inner_wall_jerk": "10", + "inner_wall_speed": "220", + "internal_solid_infill_acceleration": "15000", + "internal_solid_infill_speed": "220", + "only_one_wall_first_layer": "1", + "outer_wall_jerk": "10", + "outer_wall_speed": "220", + "prime_tower_width": "80", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "raft_first_layer_density": "50%", + "small_perimeter_threshold": "2", + "sparse_infill_acceleration": "15000", + "sparse_infill_pattern": "rectilinear", + "sparse_infill_speed": "220", + "top_bottom_infill_wall_overlap": "8%", + "top_surface_jerk": "10", + "top_surface_speed": "150", + "wall_generator": "arachne", + "sparse_infill_density": "15%", + "travel_jerk": "10" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json b/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json new file mode 100644 index 0000000000..8582a7f0ac --- /dev/null +++ b/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json @@ -0,0 +1,74 @@ +{ + "type": "process", + "name": "0.20mm PETG @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_petg", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "accel_to_decel_factor": "90%", + "bottom_shell_layers": "5", + "bridge_acceleration": "3000", + "bridge_density": "95%", + "bridge_flow": "1.1", + "bridge_speed": "30", + "brim_ears_max_angle": "180", + "brim_object_gap": "0.04", + "default_acceleration": "15000", + "default_jerk": "10", + "filter_out_gap_fill": "1", + "gap_infill_speed": "200", + "infill_jerk": "10", + "infill_wall_overlap": "10%", + "initial_layer_infill_speed": "100", + "initial_layer_jerk": "10", + "initial_layer_print_height": "0.25", + "initial_layer_travel_speed": "250", + "inner_wall_acceleration": "15000", + "inner_wall_speed": "200", + "inner_wall_jerk": "10", + "inner_wall_line_width": "0.44", + "internal_bridge_speed": "50", + "internal_solid_infill_acceleration": "15000", + "internal_solid_infill_speed": "200", + "internal_solid_infill_line_width": "0.44", + "line_width": "0.44", + "max_travel_detour_distance": "50", + "outer_wall_jerk": "10", + "outer_wall_line_width": "0.44", + "outer_wall_speed": "200", + "overhang_1_4_speed": "60%", + "overhang_2_4_speed": "40", + "overhang_3_4_speed": "20", + "overhang_reverse_internal_only": "1", + "overhang_reverse_threshold": "0%", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "raft_first_layer_density": "60%", + "reduce_crossing_wall": "1", + "skirt_loops": "2", + "slow_down_layers": "2", + "small_perimeter_threshold": "10", + "sparse_infill_acceleration": "15000", + "sparse_infill_speed": "200", + "sparse_infill_line_width": "0.44", + "support_interface_speed": "200", + "support_line_width": "0.42", + "support_speed": "200", + "top_bottom_infill_wall_overlap": "18%", + "top_shell_layers": "6", + "top_surface_acceleration": "5000", + "top_surface_jerk": "10", + "top_surface_speed": "130", + "travel_jerk": "10", + "wall_loops": "3", + "gap_fill_target": "nowhere", + "wipe_tower_max_purge_speed": "150" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json b/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json new file mode 100644 index 0000000000..d26b9efef8 --- /dev/null +++ b/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json @@ -0,0 +1,53 @@ +{ + "type": "process", + "name": "0.20mm Quiet @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_quiet", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "accel_to_decel_factor": "75%", + "bridge_acceleration": "5000", + "bridge_speed": "40", + "default_acceleration": "10000", + "default_jerk": "5", + "filter_out_gap_fill": "10", + "gap_infill_speed": "200", + "infill_jerk": "5", + "infill_wall_overlap": "10%", + "initial_layer_infill_speed": "100", + "initial_layer_jerk": "5", + "initial_layer_travel_speed": "180", + "inner_wall_acceleration": "10000", + "inner_wall_jerk": "5", + "internal_bridge_speed": "60", + "internal_solid_infill_acceleration": "10000", + "outer_wall_acceleration": "5000", + "outer_wall_jerk": "5", + "outer_wall_speed": "200", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "raft_first_layer_density": "60%", + "sparse_infill_acceleration": "10000", + "sparse_infill_pattern": "rectilinear", + "support_interface_speed": "170", + "support_speed": "170", + "top_surface_jerk": "5", + "top_surface_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "travel_acceleration": "10000", + "travel_jerk": "5", + "sparse_infill_density": "15%", + "accel_to_decel_enable": "1", + "gap_fill_target": "nowhere", + "travel_speed": "200" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json b/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json new file mode 100644 index 0000000000..4d1218db8b --- /dev/null +++ b/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json @@ -0,0 +1,64 @@ +{ + "type": "process", + "name": "0.20mm Solid @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_solid", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "accel_to_decel_factor": "90%", + "bottom_shell_layers": "2", + "bridge_acceleration": "5000", + "bridge_density": "97%", + "brim_object_gap": "0.04", + "default_acceleration": "15000", + "default_jerk": "10", + "detect_narrow_internal_solid_infill": "0", + "enable_support": "1", + "ensure_vertical_shell_thickness": "none", + "filter_out_gap_fill": "2", + "gap_infill_speed": "200", + "infill_jerk": "10", + "infill_wall_overlap": "18%", + "initial_layer_jerk": "10", + "initial_layer_line_width": "0.45", + "initial_layer_print_height": "0.25", + "inner_wall_acceleration": "15000", + "inner_wall_jerk": "10", + "internal_solid_infill_acceleration": "15000", + "outer_wall_jerk": "10", + "outer_wall_speed": "200", + "overhang_1_4_speed": "60%", + "overhang_2_4_speed": "40", + "overhang_3_4_speed": "20", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "raft_first_layer_density": "60%", + "small_perimeter_threshold": "7", + "sparse_infill_acceleration": "15000", + "sparse_infill_density": "98%", + "sparse_infill_pattern": "rectilinear", + "support_interface_speed": "200", + "support_speed": "200", + "top_shell_layers": "2", + "top_shell_thickness": "0.6", + "top_solid_infill_flow_ratio": "0.96", + "top_surface_acceleration": "5000", + "top_surface_jerk": "10", + "top_surface_speed": "150", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "internal_bridge_density": "95%", + "internal_bridge_speed": "150", + "gap_fill_target": "nowhere", + "wall_loops": "3", + "travel_jerk": "10" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json b/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json new file mode 100644 index 0000000000..a56bf33a87 --- /dev/null +++ b/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json @@ -0,0 +1,43 @@ +{ + "type": "process", + "name": "0.20mm Speed @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_speed", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "bridge_acceleration": "15000", + "default_acceleration": "30000", + "filter_out_gap_fill": "10", + "infill_wall_overlap": "10%", + "initial_layer_speed": "90", + "inner_wall_acceleration": "30000", + "inner_wall_speed": "600", + "internal_solid_infill_acceleration": "30000", + "internal_solid_infill_speed": "600", + "outer_wall_acceleration": "15000", + "outer_wall_speed": "600", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "raft_first_layer_density": "80%", + "sparse_infill_acceleration": "30000", + "sparse_infill_pattern": "rectilinear", + "sparse_infill_speed": "600", + "support_bottom_z_distance": "0.15", + "support_expansion": "2", + "support_interface_top_layers": "3", + "support_object_xy_distance": "0.25", + "top_surface_acceleration": "15000", + "top_surface_speed": "300", + "travel_acceleration": "30000", + "sparse_infill_density": "15%", + "gap_fill_target": "nowhere", + "travel_speed": "600" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json b/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json new file mode 100644 index 0000000000..8d1929bb60 --- /dev/null +++ b/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json @@ -0,0 +1,66 @@ +{ + "type": "process", + "name": "0.20mm Strength @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_strength", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "accel_to_decel_factor": "90%", + "bottom_shell_layers": "5", + "bridge_acceleration": "5000", + "bridge_flow": "1.4", + "brim_object_gap": "0.04", + "default_acceleration": "15000", + "default_jerk": "10", + "filter_out_gap_fill": "1", + "gap_infill_speed": "200", + "infill_anchor": "1000", + "infill_anchor_max": "1000", + "infill_jerk": "10", + "initial_layer_infill_speed": "120", + "initial_layer_jerk": "10", + "initial_layer_speed": "90", + "initial_layer_travel_speed": "250", + "inner_wall_acceleration": "15000", + "inner_wall_jerk": "10", + "inner_wall_line_width": "0.46", + "internal_solid_infill_acceleration": "15000", + "internal_solid_infill_line_width": "0.46", + "line_width": "0.46", + "outer_wall_jerk": "10", + "outer_wall_line_width": "0.46", + "outer_wall_speed": "200", + "overhang_1_4_speed": "60%", + "overhang_2_4_speed": "40", + "overhang_3_4_speed": "20", + "precise_outer_wall": "0", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "sparse_infill_acceleration": "15000", + "sparse_infill_density": "40%", + "sparse_infill_line_width": "0.46", + "sparse_infill_pattern": "gyroid", + "support_bottom_z_distance": "0.15", + "support_interface_speed": "200", + "support_line_width": "0.42", + "support_speed": "200", + "top_shell_layers": "6", + "top_shell_thickness": "1", + "top_surface_acceleration": "5000", + "top_surface_jerk": "10", + "top_surface_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "travel_jerk": "10", + "wall_sequence": "inner wall/outer wall", + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json b/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json new file mode 100644 index 0000000000..6893ec1e05 --- /dev/null +++ b/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json @@ -0,0 +1,82 @@ +{ + "type": "process", + "name": "0.20mm TPU @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_tpu", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "accel_to_decel_factor": "90%", + "bridge_acceleration": "5000", + "bridge_density": "95%", + "bridge_flow": "1.4", + "bridge_speed": "40", + "brim_ears_max_angle": "180", + "brim_object_gap": "0.02", + "default_acceleration": "15000", + "default_jerk": "5", + "elefant_foot_compensation": "0.15", + "filter_out_gap_fill": "40", + "gap_infill_speed": "200", + "infill_jerk": "5", + "initial_layer_infill_speed": "70", + "initial_layer_jerk": "5", + "initial_layer_print_height": "0.25", + "initial_layer_speed": "40", + "initial_layer_travel_speed": "200", + "inner_wall_acceleration": "15000", + "inner_wall_jerk": "5", + "inner_wall_line_width": "0.46", + "internal_bridge_flow": "1.2", + "internal_bridge_speed": "50", + "internal_solid_infill_acceleration": "15000", + "internal_solid_infill_line_width": "0.46", + "internal_solid_infill_speed": "180", + "line_width": "0.46", + "max_travel_detour_distance": "50", + "outer_wall_jerk": "5", + "outer_wall_line_width": "0.46", + "outer_wall_speed": "150", + "overhang_1_4_speed": "60%", + "overhang_2_4_speed": "40", + "overhang_3_4_speed": "20", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "raft_first_layer_density": "80%", + "reduce_crossing_wall": "1", + "skirt_loops": "2", + "slow_down_layers": "2", + "small_perimeter_speed": "60%", + "small_perimeter_threshold": "10", + "sparse_infill_acceleration": "15000", + "sparse_infill_line_width": "0.46", + "sparse_infill_speed": "150", + "sparse_infill_density": "15%", + "staggered_inner_seams": "1", + "support_expansion": "2", + "support_interface_speed": "200", + "support_line_width": "0.42", + "support_speed": "200", + "top_bottom_infill_wall_overlap": "18%", + "top_surface_acceleration": "5000", + "top_surface_jerk": "5", + "top_surface_line_width": "0.42", + "top_surface_speed": "150", + "travel_jerk": "10", + "wipe_speed": "80", + "inner_wall_speed": "200", + "ensure_vertical_shell_thickness": "ensure_moderate", + "wall_sequence": "inner wall/outer wall", + "wall_loops": "3", + "gap_fill_target": "nowhere", + "reduce_infill_retraction": "1", + "infill_wall_overlap": "22%", + "wipe_tower_max_purge_speed": "80" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json b/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json new file mode 100644 index 0000000000..bc612fc5e9 --- /dev/null +++ b/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json @@ -0,0 +1,70 @@ +{ + "type": "process", + "name": "0.25mm Vase Mode @LH Stinger", + "inherits": "fdm_process_lh_common", + "from": "system", + "setting_id": "LHS_P_vase_mode", + "instantiation": "true", + "compatible_printers": [ + "LH Stinger 0.4 nozzle", + "LH Stinger MMU 0.4 nozzle" + ], + "accel_to_decel_factor": "90%", + "bottom_shell_layers": "5", + "bridge_acceleration": "5000", + "bridge_flow": "1.4", + "brim_object_gap": "0.04", + "default_acceleration": "15000", + "default_jerk": "10", + "filter_out_gap_fill": "1", + "gap_infill_speed": "200", + "infill_jerk": "10", + "infill_wall_overlap": "10%", + "initial_layer_jerk": "10", + "initial_layer_line_width": "0.65", + "initial_layer_print_height": "0.25", + "initial_layer_speed": "80", + "initial_layer_travel_speed": "250", + "inner_wall_acceleration": "15000", + "inner_wall_jerk": "10", + "inner_wall_line_width": "0.46", + "internal_solid_infill_acceleration": "15000", + "internal_solid_infill_line_width": "0.46", + "layer_height": "0.25", + "line_width": "0.46", + "notes": "Decrease your Filament - Minimum layer time to ~2 seconds and set your fan speeds to be constant", + "outer_wall_jerk": "10", + "outer_wall_line_width": "0.65", + "outer_wall_speed": "200", + "overhang_1_4_speed": "60%", + "overhang_2_4_speed": "40", + "overhang_3_4_speed": "20", + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "sparse_infill_acceleration": "15000", + "sparse_infill_density": "0%", + "sparse_infill_line_width": "0.46", + "sparse_infill_pattern": "3dhoneycomb", + "spiral_mode": "1", + "spiral_mode_smooth": "1", + "support_interface_speed": "200", + "support_line_width": "0.42", + "support_speed": "200", + "top_bottom_infill_wall_overlap": "10%", + "top_shell_layers": "0", + "top_shell_thickness": "1", + "top_surface_acceleration": "5000", + "top_surface_jerk": "10", + "top_surface_speed": "200", + "inner_wall_speed": "200", + "sparse_infill_speed": "200", + "internal_solid_infill_speed": "200", + "wall_sequence": "inner wall/outer wall", + "travel_jerk": "10", + "skirt_loops": "1", + "wall_loops": "1" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/fdm_process_common.json b/resources/profiles/LH/process/fdm_process_common.json new file mode 100644 index 0000000000..df8283904a --- /dev/null +++ b/resources/profiles/LH/process/fdm_process_common.json @@ -0,0 +1,108 @@ +{ + "type": "process", + "name": "fdm_process_common", + "from": "system", + "instantiation": "false", + "adaptive_layer_height": "0", + "reduce_crossing_wall": "0", + "max_travel_detour_distance": "0", + "bottom_surface_pattern": "monotonic", + "bottom_shell_thickness": "0", + "bridge_speed": "50", + "brim_width": "5", + "brim_object_gap": "0.1", + "compatible_printers": [], + "compatible_printers_condition": "", + "print_sequence": "by layer", + "default_acceleration": "1000", + "initial_layer_acceleration": "500", + "top_surface_acceleration": "1000", + "travel_acceleration": "1000", + "inner_wall_acceleration": "1000", + "outer_wall_acceleration": "700", + "bridge_no_support": "0", + "draft_shield": "disabled", + "elefant_foot_compensation": "0", + "enable_arc_fitting": "0", + "wall_infill_order": "inner wall/outer wall/infill", + "infill_direction": "45", + "sparse_infill_density": "15%", + "sparse_infill_pattern": "crosshatch", + "initial_layer_print_height": "0.2", + "infill_combination": "0", + "infill_wall_overlap": "25%", + "interface_shells": "0", + "ironing_flow": "10%", + "ironing_spacing": "0.15", + "ironing_speed": "30", + "ironing_type": "no ironing", + "reduce_infill_retraction": "1", + "filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode", + "detect_overhang_wall": "1", + "slowdown_for_curled_perimeters": "1", + "overhang_1_4_speed": "0", + "overhang_2_4_speed": "50", + "overhang_3_4_speed": "30", + "overhang_4_4_speed": "10", + "line_width": "110%", + "inner_wall_line_width": "110%", + "outer_wall_line_width": "100%", + "top_surface_line_width": "93.75%", + "sparse_infill_line_width": "110%", + "initial_layer_line_width": "120%", + "internal_solid_infill_line_width": "120%", + "support_line_width": "96%", + "wall_loops": "3", + "print_settings_id": "", + "raft_layers": "0", + "seam_position": "aligned", + "skirt_distance": "2", + "skirt_height": "3", + "min_skirt_length": "4", + "skirt_loops": "0", + "minimum_sparse_infill_area": "15", + "spiral_mode": "0", + "standby_temperature_delta": "-5", + "enable_support": "0", + "resolution": "0.012", + "support_type": "normal(auto)", + "support_on_build_plate_only": "0", + "support_top_z_distance": "0.2", + "support_bottom_z_distance": "0.2", + "support_filament": "0", + "support_interface_loop_pattern": "0", + "support_interface_filament": "0", + "support_interface_top_layers": "2", + "support_interface_bottom_layers": "2", + "support_interface_spacing": "0.5", + "support_interface_speed": "80", + "support_base_pattern": "default", + "support_base_pattern_spacing": "2.5", + "support_speed": "150", + "support_threshold_angle": "30", + "support_object_xy_distance": "0.35", + "tree_support_branch_angle": "30", + "tree_support_wall_count": "0", + "tree_support_with_infill": "0", + "detect_thin_wall": "0", + "top_surface_pattern": "monotonicline", + "top_shell_thickness": "0.8", + "enable_prime_tower": "0", + "wipe_tower_no_sparse_layers": "0", + "prime_tower_width": "60", + "xy_hole_compensation": "0", + "xy_contour_compensation": "0", + "layer_height": "0.2", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "bridge_flow": "1", + "initial_layer_speed": "45", + "initial_layer_infill_speed": "45", + "outer_wall_speed": "45", + "inner_wall_speed": "80", + "sparse_infill_speed": "150", + "internal_solid_infill_speed": "150", + "top_surface_speed": "50", + "gap_infill_speed": "30", + "travel_speed": "200" +} \ No newline at end of file diff --git a/resources/profiles/LH/process/fdm_process_lh_common.json b/resources/profiles/LH/process/fdm_process_lh_common.json new file mode 100644 index 0000000000..49ea02fee8 --- /dev/null +++ b/resources/profiles/LH/process/fdm_process_lh_common.json @@ -0,0 +1,109 @@ +{ + "type": "process", + "name": "fdm_process_lh_common", + "inherits": "fdm_process_common", + "from": "system", + "instantiation": "false", + "exclude_object": "1", + "accel_to_decel_enable": "0", + "bottom_shell_layers": "4", + "bridge_acceleration": "10000", + "bridge_density": "100%", + "brim_object_gap": "0.05", + "brim_width": "4", + "default_acceleration": "20000", + "dont_filter_internal_bridges": "limited", + "elefant_foot_compensation": "0.05", + "ensure_vertical_shell_thickness": "ensure_critical_only", + "filter_out_gap_fill": "1", + "gap_fill_target": "everywhere", + "gap_infill_speed": "400", + "independent_support_layer_height": "0", + "infill_jerk": "15", + "infill_wall_overlap": "15%", + "top_bottom_infill_wall_overlap": "22%", + "initial_layer_acceleration": "600", + "initial_layer_infill_speed": "140", + "initial_layer_jerk": "15", + "initial_layer_line_width": "0.5", + "initial_layer_speed": "60", + "initial_layer_travel_speed": "300", + "inner_wall_acceleration": "20000", + "inner_wall_jerk": "15", + "inner_wall_line_width": "0.4", + "inner_wall_speed": "400", + "internal_bridge_speed": "70", + "internal_solid_infill_acceleration": "20000", + "internal_solid_infill_line_width": "0.4", + "internal_solid_infill_speed": "400", + "ironing_flow": "19%", + "ironing_inset": "0.3", + "ironing_speed": "50", + "line_width": "0.4", + "min_bead_width": "75%", + "min_feature_size": "20%", + "min_length_factor": "1.5", + "min_width_top_surface": "200%", + "only_one_wall_top": "1", + "outer_wall_acceleration": "10000", + "outer_wall_jerk": "15", + "outer_wall_line_width": "0.4", + "outer_wall_speed": "400", + "overhang_1_4_speed": "70%", + "overhang_4_4_speed": "15", + "prime_tower_brim_width": "2", + "prime_tower_width": "80", + "prime_volume": "75", + "raft_first_layer_density": "70%", + "reduce_infill_retraction": "0", + "resolution": "0.01", + "role_based_wipe_speed": "0", + "seam_gap": "0", + "skirt_distance": "8", + "skirt_height": "1", + "skirt_speed": "100", + "skirt_start_angle": "-25", + "slice_closing_radius": "0.04", + "slowdown_for_curled_perimeters": "0", + "sparse_infill_acceleration": "20000", + "sparse_infill_density": "20%", + "sparse_infill_line_width": "0.4", + "sparse_infill_pattern": "3dhoneycomb", + "sparse_infill_speed": "400", + "support_angle": "135", + "support_base_pattern_spacing": "2", + "support_expansion": "1", + "support_interface_spacing": "0.3", + "support_interface_speed": "400", + "support_line_width": "0.4", + "support_object_xy_distance": "0.2", + "support_on_build_plate_only": "1", + "support_speed": "400", + "support_style": "snug", + "support_top_z_distance": "0.15", + "thick_internal_bridges": "0", + "top_shell_layers": "5", + "top_surface_acceleration": "10000", + "top_surface_jerk": "15", + "top_surface_line_width": "0.4", + "top_surface_speed": "250", + "travel_acceleration": "20000", + "travel_jerk": "15", + "travel_speed": "400", + "wall_generator": "classic", + "wall_loops": "2", + "wall_sequence": "outer wall/inner wall", + "wipe_speed": "150", + "wipe_tower_bridging": "15", + "wipe_tower_extra_flow": "120%", + "wipe_tower_max_purge_speed": "200", + "enable_prime_tower": "1", + "precise_outer_wall": "0", + "print_extruder_id": [ + "1" + ], + "brim_type": "auto_brim", + "print_extruder_variant": [ + "Direct Drive Standard" + ] +} \ No newline at end of file diff --git a/resources/profiles/LONGER.json b/resources/profiles/LONGER.json index 87a527b3dd..86572785da 100644 --- a/resources/profiles/LONGER.json +++ b/resources/profiles/LONGER.json @@ -1,6 +1,6 @@ { "name": "LONGER", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "LONGER configurations", "machine_model_list": [ diff --git a/resources/profiles/LONGER/LONGER LK10 Plus_cover.png b/resources/profiles/LONGER/LONGER LK10 Plus_cover.png index 937bbeb430..cb8d570caf 100644 Binary files a/resources/profiles/LONGER/LONGER LK10 Plus_cover.png and b/resources/profiles/LONGER/LONGER LK10 Plus_cover.png differ diff --git a/resources/profiles/LONGER/LONGER LK10_cover.png b/resources/profiles/LONGER/LONGER LK10_cover.png index 1d986c6ee7..1793541560 100644 Binary files a/resources/profiles/LONGER/LONGER LK10_cover.png and b/resources/profiles/LONGER/LONGER LK10_cover.png differ diff --git a/resources/profiles/LONGER/longer_lk10_buildplate_model.stl b/resources/profiles/LONGER/longer_lk10_buildplate_model.stl index 3c5fa0537a..9e48670c7e 100644 Binary files a/resources/profiles/LONGER/longer_lk10_buildplate_model.stl and b/resources/profiles/LONGER/longer_lk10_buildplate_model.stl differ diff --git a/resources/profiles/LONGER/longer_lk10_buildplate_texture.png b/resources/profiles/LONGER/longer_lk10_buildplate_texture.png deleted file mode 100644 index 98ea489689..0000000000 Binary files a/resources/profiles/LONGER/longer_lk10_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/LONGER/longer_lk10_buildplate_texture.svg b/resources/profiles/LONGER/longer_lk10_buildplate_texture.svg new file mode 100644 index 0000000000..81d96267dc --- /dev/null +++ b/resources/profiles/LONGER/longer_lk10_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/LONGER/longer_lk10plus_buildplate_model.stl b/resources/profiles/LONGER/longer_lk10plus_buildplate_model.stl index 7c77420b83..a39a346157 100644 Binary files a/resources/profiles/LONGER/longer_lk10plus_buildplate_model.stl and b/resources/profiles/LONGER/longer_lk10plus_buildplate_model.stl differ diff --git a/resources/profiles/LONGER/longer_lk10plus_buildplate_texture.png b/resources/profiles/LONGER/longer_lk10plus_buildplate_texture.png deleted file mode 100644 index cb7665ebd0..0000000000 Binary files a/resources/profiles/LONGER/longer_lk10plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/LONGER/longer_lk10plus_buildplate_texture.svg b/resources/profiles/LONGER/longer_lk10plus_buildplate_texture.svg new file mode 100644 index 0000000000..4a59ea38ed --- /dev/null +++ b/resources/profiles/LONGER/longer_lk10plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus.json b/resources/profiles/LONGER/machine/LONGER LK10 Plus.json index 6da9806a52..609ed74444 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus.json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus.json @@ -7,7 +7,7 @@ "family": "LONGER", "printer_settings_id": "LONGER", "bed_model": "longer_lk10plus_buildplate_model.stl", - "bed_texture": "longer_lk10plus_buildplate_texture.png", + "bed_texture": "longer_lk10plus_buildplate_texture.svg", "bed_exclude_area": [ "0x0" ], diff --git a/resources/profiles/LONGER/machine/LONGER LK10.json b/resources/profiles/LONGER/machine/LONGER LK10.json index 9a080d03ab..7bc3ab48d4 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10.json +++ b/resources/profiles/LONGER/machine/LONGER LK10.json @@ -7,7 +7,7 @@ "family": "LONGER", "printer_settings_id": "LONGER", "bed_model": "longer_lk10_buildplate_model.stl", - "bed_texture": "longer_lk10_buildplate_texture.png", + "bed_texture": "longer_lk10_buildplate_texture.svg", "bed_exclude_area": [ "0x0" ], diff --git a/resources/profiles/Lulzbot.json b/resources/profiles/Lulzbot.json index ba4885f952..0f2d77c79e 100644 --- a/resources/profiles/Lulzbot.json +++ b/resources/profiles/Lulzbot.json @@ -1,7 +1,7 @@ { "name": "Lulzbot", "url": "https://ohai.lulzbot.com/group/taz-6/", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Lulzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/Lulzbot/Taz_Pro_Dual_printbed.png b/resources/profiles/Lulzbot/Taz_Pro_Dual_printbed.png deleted file mode 100644 index 2344c234e6..0000000000 Binary files a/resources/profiles/Lulzbot/Taz_Pro_Dual_printbed.png and /dev/null differ diff --git a/resources/profiles/Lulzbot/Taz_Pro_Dual_printbed.svg b/resources/profiles/Lulzbot/Taz_Pro_Dual_printbed.svg new file mode 100644 index 0000000000..e3293d78fe --- /dev/null +++ b/resources/profiles/Lulzbot/Taz_Pro_Dual_printbed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Lulzbot/lulzbot_logo.png b/resources/profiles/Lulzbot/lulzbot_logo.png deleted file mode 100644 index f7fd0f88df..0000000000 Binary files a/resources/profiles/Lulzbot/lulzbot_logo.png and /dev/null differ diff --git a/resources/profiles/Lulzbot/lulzbot_logo.svg b/resources/profiles/Lulzbot/lulzbot_logo.svg new file mode 100644 index 0000000000..94f70493cd --- /dev/null +++ b/resources/profiles/Lulzbot/lulzbot_logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5.json index 4e777fc490..c00c1cc2e3 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Lulzbot", "bed_model": "taz_4_or_5_build_plate.stl", - "bed_texture": "lulzbot_logo.png", + "bed_texture": "lulzbot_logo.svg", "hotend_model": "", "default_materials": "Lulzbot 2.85mm ABS;Lulzbot 2.85mm PETG;Lulzbot 2.85mm PLA" } diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz 6.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz 6.json index 8d40250825..fdf3c0b056 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz 6.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz 6.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Lulzbot", "bed_model": "taz_6_build_plate.stl", - "bed_texture": "lulzbot_logo.png", + "bed_texture": "lulzbot_logo.svg", "hotend_model": "", "default_materials": "Lulzbot 2.85mm ABS;Lulzbot 2.85mm PETG;Lulzbot 2.85mm PLA" } diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual.json index 0f8103bcf7..b5157e0925 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Lulzbot", "bed_model": "taz_pro_dual_build_plate.stl", - "bed_texture": "Taz_Pro_Dual_printbed.png", + "bed_texture": "Taz_Pro_Dual_printbed.svg", "hotend_model": "", "default_materials": "Lulzbot 2.85mm ABS;Lulzbot 2.85mm PETG;Lulzbot 2.85mm PLA" } diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S.json index a32ed1ed43..ebb151d2b0 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Lulzbot", "bed_model": "taz_pro_dual_build_plate.stl", - "bed_texture": "lulzbot_logo.png", + "bed_texture": "lulzbot_logo.svg", "hotend_model": "", "extruder_clearance_radius": "62", "extruder_clearance_height_to_rod": "36", diff --git a/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl b/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl index 2364a9e934..5207e78d2b 100644 Binary files a/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl and b/resources/profiles/Lulzbot/taz_4_or_5_build_plate.stl differ diff --git a/resources/profiles/M3D.json b/resources/profiles/M3D.json index 067da31b01..d8bbdd1e56 100644 --- a/resources/profiles/M3D.json +++ b/resources/profiles/M3D.json @@ -1,6 +1,6 @@ { "name": "M3D", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Configuration for M3D printers", "machine_model_list": [ diff --git a/resources/profiles/M3D/M3D Enabler D8500 MM Model_bed_model.stl b/resources/profiles/M3D/M3D Enabler D8500 MM Model_bed_model.stl new file mode 100644 index 0000000000..61bc03695b Binary files /dev/null and b/resources/profiles/M3D/M3D Enabler D8500 MM Model_bed_model.stl differ diff --git a/resources/profiles/M3D/M3D Enabler D8500 MM Model_bed_texture.svg b/resources/profiles/M3D/M3D Enabler D8500 MM Model_bed_texture.svg new file mode 100644 index 0000000000..540f20952b --- /dev/null +++ b/resources/profiles/M3D/M3D Enabler D8500 MM Model_bed_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/M3D/M3D Enabler D8500 MM Model_cover.png b/resources/profiles/M3D/M3D Enabler D8500 MM Model_cover.png index 50020d51b7..0a57d39546 100644 Binary files a/resources/profiles/M3D/M3D Enabler D8500 MM Model_cover.png and b/resources/profiles/M3D/M3D Enabler D8500 MM Model_cover.png differ diff --git a/resources/profiles/M3D/machine/M3D Enabler D8500 MM Model.json b/resources/profiles/M3D/machine/M3D Enabler D8500 MM Model.json index 3402acc0a2..941348c128 100644 --- a/resources/profiles/M3D/machine/M3D Enabler D8500 MM Model.json +++ b/resources/profiles/M3D/machine/M3D Enabler D8500 MM Model.json @@ -5,8 +5,8 @@ "family": "M3D", "machine_tech": "FFF", "nozzle_diameter": "0.4", - "bed_model": "model/M3D_bed_model.stl", - "bed_texture": "model/M3D_bed_texture.png", + "bed_model": "M3D Enabler D8500 MM Model_bed_model.stl", + "bed_texture": "M3D Enabler D8500 MM Model_bed_texture.svg", "default_materials": "Generic PLA @system", "scan_folder": "1" } diff --git a/resources/profiles/M3D/model/M3D_bed_model.stl b/resources/profiles/M3D/model/M3D_bed_model.stl deleted file mode 100644 index 8ed24335dd..0000000000 Binary files a/resources/profiles/M3D/model/M3D_bed_model.stl and /dev/null differ diff --git a/resources/profiles/M3D/model/M3D_bed_texture.png b/resources/profiles/M3D/model/M3D_bed_texture.png deleted file mode 100644 index bd0e6b8b80..0000000000 Binary files a/resources/profiles/M3D/model/M3D_bed_texture.png and /dev/null differ diff --git a/resources/profiles/MagicMaker.json b/resources/profiles/MagicMaker.json index 53ebbeade5..c537d91a9c 100644 --- a/resources/profiles/MagicMaker.json +++ b/resources/profiles/MagicMaker.json @@ -1,6 +1,6 @@ { "name": "MagicMaker", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "MagicMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/MagicMaker/120_buildplate_model.stl b/resources/profiles/MagicMaker/120_buildplate_model.stl index 2c4ecb81ee..1863933e04 100644 Binary files a/resources/profiles/MagicMaker/120_buildplate_model.stl and b/resources/profiles/MagicMaker/120_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/125_buildplate_model.stl b/resources/profiles/MagicMaker/125_buildplate_model.stl index e3e9f08071..23ecda3c68 100644 Binary files a/resources/profiles/MagicMaker/125_buildplate_model.stl and b/resources/profiles/MagicMaker/125_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/150_buildplate_model.stl b/resources/profiles/MagicMaker/150_buildplate_model.stl index 6b8b197d4c..ab7e751fed 100644 Binary files a/resources/profiles/MagicMaker/150_buildplate_model.stl and b/resources/profiles/MagicMaker/150_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/160_buildplate_model.stl b/resources/profiles/MagicMaker/160_buildplate_model.stl index be6b21436c..aa4d8a174b 100644 Binary files a/resources/profiles/MagicMaker/160_buildplate_model.stl and b/resources/profiles/MagicMaker/160_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/220210_buildplate_model.stl b/resources/profiles/MagicMaker/220210_buildplate_model.stl index 5afb83c333..4d86d56f08 100644 Binary files a/resources/profiles/MagicMaker/220210_buildplate_model.stl and b/resources/profiles/MagicMaker/220210_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/220_buildplate_model.stl b/resources/profiles/MagicMaker/220_buildplate_model.stl index 01f43ca845..2210b93a5a 100644 Binary files a/resources/profiles/MagicMaker/220_buildplate_model.stl and b/resources/profiles/MagicMaker/220_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/250_buildplate_model.stl b/resources/profiles/MagicMaker/250_buildplate_model.stl index 0b6d7de9b3..c2ac2b8b98 100644 Binary files a/resources/profiles/MagicMaker/250_buildplate_model.stl and b/resources/profiles/MagicMaker/250_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/310_buildplate_model.stl b/resources/profiles/MagicMaker/310_buildplate_model.stl index 21c407a49f..eb78d090cc 100644 Binary files a/resources/profiles/MagicMaker/310_buildplate_model.stl and b/resources/profiles/MagicMaker/310_buildplate_model.stl differ diff --git a/resources/profiles/MagicMaker/MM hj_buildplate_model.stl b/resources/profiles/MagicMaker/MM hj_buildplate_model.stl deleted file mode 100644 index ab78d2fc4b..0000000000 Binary files a/resources/profiles/MagicMaker/MM hj_buildplate_model.stl and /dev/null differ diff --git a/resources/profiles/MagicMaker/MM_buildplate_texture.png b/resources/profiles/MagicMaker/MM_buildplate_texture.png deleted file mode 100644 index 56a2cc04e1..0000000000 Binary files a/resources/profiles/MagicMaker/MM_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/MagicMaker/MM_buildplate_texture.svg b/resources/profiles/MagicMaker/MM_buildplate_texture.svg new file mode 100644 index 0000000000..83042e4fe8 --- /dev/null +++ b/resources/profiles/MagicMaker/MM_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/MagicMaker/machine/MM BoneKing.json b/resources/profiles/MagicMaker/machine/MM BoneKing.json index be2ded1031..a7b80100be 100644 --- a/resources/profiles/MagicMaker/machine/MM BoneKing.json +++ b/resources/profiles/MagicMaker/machine/MM BoneKing.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "magicmaker", "bed_model": "310_buildplate_model.stl", - "bed_texture": "MM_buildplate_texture.png", + "bed_texture": "MM_buildplate_texture.svg", "hotend_model": "MM_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System;Generic TPU @System;Generic PC @System;Generic PA @System;MM Generic PEEK" } diff --git a/resources/profiles/MagicMaker/machine/MM hj SK.json b/resources/profiles/MagicMaker/machine/MM hj SK.json index f6b7f622f2..4ac3d3261c 100644 --- a/resources/profiles/MagicMaker/machine/MM hj SK.json +++ b/resources/profiles/MagicMaker/machine/MM hj SK.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "magicmaker", "bed_model": "220210_buildplate_model.stl", - "bed_texture": "MM_buildplate_texture.png", + "bed_texture": "MM_buildplate_texture.svg", "hotend_model": "MM_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System;Generic TPU @System" } diff --git a/resources/profiles/MagicMaker/machine/MM hqs SF.json b/resources/profiles/MagicMaker/machine/MM hqs SF.json index 5e7e1ed6f2..8adc3b1abb 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs SF.json +++ b/resources/profiles/MagicMaker/machine/MM hqs SF.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "magicmaker", "bed_model": "220210_buildplate_model.stl", - "bed_texture": "MM_buildplate_texture.png", + "bed_texture": "MM_buildplate_texture.svg", "hotend_model": "MM_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System;Generic TPU @System" } diff --git a/resources/profiles/MagicMaker/machine/MM hqs hj.json b/resources/profiles/MagicMaker/machine/MM hqs hj.json index 170cefa287..328bd27869 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs hj.json +++ b/resources/profiles/MagicMaker/machine/MM hqs hj.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "magicmaker", "bed_model": "220210_buildplate_model.stl", - "bed_texture": "MM_buildplate_texture.png", + "bed_texture": "MM_buildplate_texture.svg", "hotend_model": "MM_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System;Generic TPU @System" } diff --git a/resources/profiles/MagicMaker/machine/MM slb.json b/resources/profiles/MagicMaker/machine/MM slb.json index 26fef789ba..381574dba3 100644 --- a/resources/profiles/MagicMaker/machine/MM slb.json +++ b/resources/profiles/MagicMaker/machine/MM slb.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "magicmaker", "bed_model": "125_buildplate_model.stl", - "bed_texture": "MM_buildplate_texture.png", + "bed_texture": "MM_buildplate_texture.svg", "hotend_model": "MM_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic ABS @System;Generic TPU @System" } diff --git a/resources/profiles/Mellow.json b/resources/profiles/Mellow.json index 4f8447cbb3..1db75c75aa 100644 --- a/resources/profiles/Mellow.json +++ b/resources/profiles/Mellow.json @@ -1,6 +1,6 @@ { "name": "Mellow", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Mellow Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/Mellow/machine/M1.json b/resources/profiles/Mellow/machine/M1.json index 0085f4d0a7..7116a2ad27 100644 --- a/resources/profiles/Mellow/machine/M1.json +++ b/resources/profiles/Mellow/machine/M1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Mellow", "bed_model": "M1_bed_model.stl", - "bed_texture": "mellow_bed_texture.png", + "bed_texture": "mellow_bed_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PLA @System;Generic PLA-CF @System;Generic PETG @System;Generic TPU @System;Generic ASA @System;Generic PC @System;Generic PVA @System;Generic PA @System;Generic PA-CF @System" } diff --git a/resources/profiles/Mellow/mellow_bed_texture.png b/resources/profiles/Mellow/mellow_bed_texture.png deleted file mode 100644 index a615566b12..0000000000 Binary files a/resources/profiles/Mellow/mellow_bed_texture.png and /dev/null differ diff --git a/resources/profiles/Mellow/mellow_bed_texture.svg b/resources/profiles/Mellow/mellow_bed_texture.svg new file mode 100644 index 0000000000..cbc4eafa87 --- /dev/null +++ b/resources/profiles/Mellow/mellow_bed_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/OpenEYE.json b/resources/profiles/OpenEYE.json index e5a917d2e5..62861b96ef 100644 --- a/resources/profiles/OpenEYE.json +++ b/resources/profiles/OpenEYE.json @@ -1,7 +1,7 @@ { "name": "OpenEYE", "url": "http://www.openeye.tech", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "OpenEYE Printers Configurations", "machine_model_list": [ diff --git a/resources/profiles/OpenEYE/OpenEYE Peacock V2_cover.png b/resources/profiles/OpenEYE/OpenEYE Peacock V2_cover.png index 394f42c693..1fe5f70466 100644 Binary files a/resources/profiles/OpenEYE/OpenEYE Peacock V2_cover.png and b/resources/profiles/OpenEYE/OpenEYE Peacock V2_cover.png differ diff --git a/resources/profiles/OpenEYE/Plate.stl b/resources/profiles/OpenEYE/Plate.stl index c57b67b0aa..f2bc5da7df 100644 Binary files a/resources/profiles/OpenEYE/Plate.stl and b/resources/profiles/OpenEYE/Plate.stl differ diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2.json index 513f19c101..b64ae1f072 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2.json @@ -4,7 +4,7 @@ "nozzle_diameter": "0.4;0.2;0.6;0.8", "url": "http://www.openeye.tech", "bed_model": "Plate.stl", - "bed_texture": "pei.png", + "bed_texture": "", "default_bed_type": "Textured PEI Plate", "family": "OpenEYE", "machine_tech": "FFF", diff --git a/resources/profiles/OpenEYE/pei.png b/resources/profiles/OpenEYE/pei.png deleted file mode 100644 index 30c64391b8..0000000000 Binary files a/resources/profiles/OpenEYE/pei.png and /dev/null differ diff --git a/resources/profiles/OpenEYE/peo.png b/resources/profiles/OpenEYE/peo.png deleted file mode 100644 index b3d70117d7..0000000000 Binary files a/resources/profiles/OpenEYE/peo.png and /dev/null differ diff --git a/resources/profiles/OpenEYE/pet.png b/resources/profiles/OpenEYE/pet.png deleted file mode 100644 index 0679d1bf93..0000000000 Binary files a/resources/profiles/OpenEYE/pet.png and /dev/null differ diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json index 2a6d58b495..2032ea3481 100644 --- a/resources/profiles/OrcaFilamentLibrary.json +++ b/resources/profiles/OrcaFilamentLibrary.json @@ -1451,6 +1451,14 @@ { "name": "COEX PLA+Silk @System", "sub_path": "filament/COEX/COEX PLA+Silk @System.json" + }, + { + "name": "GreenGate3D PETG @base", + "sub_path": "filament/GreenGate3D/GreenGate3D PETG @base.json" + }, + { + "name": "GreenGate3D PETG @System", + "sub_path": "filament/GreenGate3D/GreenGate3D PETG @System.json" } ], "process_list": [], diff --git a/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json new file mode 100644 index 0000000000..cb1c48538e --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json @@ -0,0 +1,9 @@ +{ + "type": "filament", + "name": "GreenGate3D PETG @System", + "inherits": "GreenGate3D PETG @base", + "from": "system", + "setting_id": "OGG3S00", + "instantiation": "true", + "compatible_printers": [] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @base.json b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @base.json new file mode 100644 index 0000000000..284c63ab9c --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @base.json @@ -0,0 +1,35 @@ +{ + "type": "filament", + "name": "GreenGate3D PETG @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OGFGG300", + "instantiation": "false", + "filament_cost": [ + "32" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_vendor": [ + "GreenGate3D" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ] +} diff --git a/resources/profiles/Peopoly.json b/resources/profiles/Peopoly.json index b9acf6ae37..6f5ecc7917 100644 --- a/resources/profiles/Peopoly.json +++ b/resources/profiles/Peopoly.json @@ -1,6 +1,6 @@ { "name": "Peopoly", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Peopoly configurations", "machine_model_list": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X.json index 5571be7312..031c3b2484 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Peopoly", "bed_model": "magnetox_model.stl", - "bed_texture": "magnetox_model_texture.png", + "bed_texture": "magnetox_model_texture.svg", "hotend_model": "", "default_materials": "Peopoly Generic PLA" } diff --git a/resources/profiles/Peopoly/magnetox_model-400x300.stl b/resources/profiles/Peopoly/magnetox_model-400x300.stl index 785d79cca6..cdd3d46f74 100644 Binary files a/resources/profiles/Peopoly/magnetox_model-400x300.stl and b/resources/profiles/Peopoly/magnetox_model-400x300.stl differ diff --git a/resources/profiles/Peopoly/magnetox_model-400x300_texture.svg b/resources/profiles/Peopoly/magnetox_model-400x300_texture.svg new file mode 100644 index 0000000000..8f8bb897c6 --- /dev/null +++ b/resources/profiles/Peopoly/magnetox_model-400x300_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Peopoly/magnetox_model-back.stl b/resources/profiles/Peopoly/magnetox_model-back.stl deleted file mode 100644 index 0a5bbec7d4..0000000000 Binary files a/resources/profiles/Peopoly/magnetox_model-back.stl and /dev/null differ diff --git a/resources/profiles/Peopoly/magnetox_model.stl b/resources/profiles/Peopoly/magnetox_model.stl index 66ba36cfba..1c5df7ceb2 100644 Binary files a/resources/profiles/Peopoly/magnetox_model.stl and b/resources/profiles/Peopoly/magnetox_model.stl differ diff --git a/resources/profiles/Peopoly/magnetox_model_texture-400x300.png b/resources/profiles/Peopoly/magnetox_model_texture-400x300.png deleted file mode 100644 index b33eebdd43..0000000000 Binary files a/resources/profiles/Peopoly/magnetox_model_texture-400x300.png and /dev/null differ diff --git a/resources/profiles/Peopoly/magnetox_model_texture.png b/resources/profiles/Peopoly/magnetox_model_texture.png deleted file mode 100644 index 41963628bc..0000000000 Binary files a/resources/profiles/Peopoly/magnetox_model_texture.png and /dev/null differ diff --git a/resources/profiles/Peopoly/magnetox_model_texture.svg b/resources/profiles/Peopoly/magnetox_model_texture.svg new file mode 100644 index 0000000000..37f3aca441 --- /dev/null +++ b/resources/profiles/Peopoly/magnetox_model_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg b/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg index 38279a2f20..486a7cd6c4 100644 --- a/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg +++ b/resources/profiles/Phrozen/Phrozen Arco_buildplate_texture.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Positron3D/ThePositron_bed_texture.svg b/resources/profiles/Positron3D/ThePositron_bed_texture.svg index d9ade25459..b978740820 100644 --- a/resources/profiles/Positron3D/ThePositron_bed_texture.svg +++ b/resources/profiles/Positron3D/ThePositron_bed_texture.svg @@ -1,86 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/Prusa/Prusa CORE One L HF_cover.png b/resources/profiles/Prusa/Prusa CORE One L HF_cover.png index a9cf960bd6..c97c60e4ac 100644 Binary files a/resources/profiles/Prusa/Prusa CORE One L HF_cover.png and b/resources/profiles/Prusa/Prusa CORE One L HF_cover.png differ diff --git a/resources/profiles/Prusa/Prusa CORE One L_cover.png b/resources/profiles/Prusa/Prusa CORE One L_cover.png index a9cf960bd6..d96da979fa 100644 Binary files a/resources/profiles/Prusa/Prusa CORE One L_cover.png and b/resources/profiles/Prusa/Prusa CORE One L_cover.png differ diff --git a/resources/profiles/Prusa/Prusa XL.svg b/resources/profiles/Prusa/Prusa XL.svg index eed839c6a9..02d4d21b77 100644 --- a/resources/profiles/Prusa/Prusa XL.svg +++ b/resources/profiles/Prusa/Prusa XL.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/coreone.svg b/resources/profiles/Prusa/coreone.svg index 0764d01894..c6b2aefa04 100644 --- a/resources/profiles/Prusa/coreone.svg +++ b/resources/profiles/Prusa/coreone.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/coreonel.svg b/resources/profiles/Prusa/coreonel.svg index ca653911d8..e0440447f1 100644 --- a/resources/profiles/Prusa/coreonel.svg +++ b/resources/profiles/Prusa/coreonel.svg @@ -1,89 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/Prusa/coreonel_bed.stl b/resources/profiles/Prusa/coreonel_bed.stl index bf4b1c8d9e..e19459e24e 100644 Binary files a/resources/profiles/Prusa/coreonel_bed.stl and b/resources/profiles/Prusa/coreonel_bed.stl differ diff --git a/resources/profiles/Prusa/mini.svg b/resources/profiles/Prusa/mini.svg index 959a4ded3a..22d4837f53 100644 --- a/resources/profiles/Prusa/mini.svg +++ b/resources/profiles/Prusa/mini.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/miniis.svg b/resources/profiles/Prusa/miniis.svg index 959a4ded3a..22d4837f53 100644 --- a/resources/profiles/Prusa/miniis.svg +++ b/resources/profiles/Prusa/miniis.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/mk3.5.svg b/resources/profiles/Prusa/mk3.5.svg index f1e4c37429..6f413a19b2 100644 --- a/resources/profiles/Prusa/mk3.5.svg +++ b/resources/profiles/Prusa/mk3.5.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/mk3.svg b/resources/profiles/Prusa/mk3.svg index f74843ffd8..66ac1699cf 100644 --- a/resources/profiles/Prusa/mk3.svg +++ b/resources/profiles/Prusa/mk3.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/mk4.svg b/resources/profiles/Prusa/mk4.svg index 40950a2a2a..6f57c53e63 100644 --- a/resources/profiles/Prusa/mk4.svg +++ b/resources/profiles/Prusa/mk4.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/mk4is.svg b/resources/profiles/Prusa/mk4is.svg index 29ba0f55f5..6f57c53e63 100644 --- a/resources/profiles/Prusa/mk4is.svg +++ b/resources/profiles/Prusa/mk4is.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Prusa/mk4s.svg b/resources/profiles/Prusa/mk4s.svg index f20ed33e0c..60f8ee69f4 100644 --- a/resources/profiles/Prusa/mk4s.svg +++ b/resources/profiles/Prusa/mk4s.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json index 05c7296750..63d5f9c371 100644 --- a/resources/profiles/Qidi.json +++ b/resources/profiles/Qidi.json @@ -1,6 +1,6 @@ { "name": "Qidi", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Qidi configurations", "machine_model_list": [ diff --git a/resources/profiles/Qidi/Qidi Q1 Pro_cover.png b/resources/profiles/Qidi/Qidi Q1 Pro_cover.png index 3c3240da88..a068f3c3dd 100644 Binary files a/resources/profiles/Qidi/Qidi Q1 Pro_cover.png and b/resources/profiles/Qidi/Qidi Q1 Pro_cover.png differ diff --git a/resources/profiles/Qidi/Qidi Q2C_cover.png b/resources/profiles/Qidi/Qidi Q2C_cover.png index e2ce1c2584..14d2c113dc 100644 Binary files a/resources/profiles/Qidi/Qidi Q2C_cover.png and b/resources/profiles/Qidi/Qidi Q2C_cover.png differ diff --git a/resources/profiles/Qidi/Qidi Q2_cover.png b/resources/profiles/Qidi/Qidi Q2_cover.png index 03143cf0f0..715b732c30 100644 Binary files a/resources/profiles/Qidi/Qidi Q2_cover.png and b/resources/profiles/Qidi/Qidi Q2_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-CF Pro_cover.png b/resources/profiles/Qidi/Qidi X-CF Pro_cover.png index df2d13260d..2d29d8d555 100644 Binary files a/resources/profiles/Qidi/Qidi X-CF Pro_cover.png and b/resources/profiles/Qidi/Qidi X-CF Pro_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Max 3_cover.png b/resources/profiles/Qidi/Qidi X-Max 3_cover.png index b3e96f1800..9c74554f49 100644 Binary files a/resources/profiles/Qidi/Qidi X-Max 3_cover.png and b/resources/profiles/Qidi/Qidi X-Max 3_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Max 4_cover.png b/resources/profiles/Qidi/Qidi X-Max 4_cover.png index 343b8c696b..10947cf7da 100644 Binary files a/resources/profiles/Qidi/Qidi X-Max 4_cover.png and b/resources/profiles/Qidi/Qidi X-Max 4_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Max_cover.png b/resources/profiles/Qidi/Qidi X-Max_cover.png index 5943304ec0..897ea08516 100644 Binary files a/resources/profiles/Qidi/Qidi X-Max_cover.png and b/resources/profiles/Qidi/Qidi X-Max_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Plus 3_cover.png b/resources/profiles/Qidi/Qidi X-Plus 3_cover.png index 76a3d4fd11..cf5192e943 100644 Binary files a/resources/profiles/Qidi/Qidi X-Plus 3_cover.png and b/resources/profiles/Qidi/Qidi X-Plus 3_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Plus 4_cover.png b/resources/profiles/Qidi/Qidi X-Plus 4_cover.png index a186796362..a655e9c9fe 100644 Binary files a/resources/profiles/Qidi/Qidi X-Plus 4_cover.png and b/resources/profiles/Qidi/Qidi X-Plus 4_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Plus_cover.png b/resources/profiles/Qidi/Qidi X-Plus_cover.png index 6b665890ce..db8ccf3021 100644 Binary files a/resources/profiles/Qidi/Qidi X-Plus_cover.png and b/resources/profiles/Qidi/Qidi X-Plus_cover.png differ diff --git a/resources/profiles/Qidi/Qidi X-Smart 3_cover.png b/resources/profiles/Qidi/Qidi X-Smart 3_cover.png index bba6624ee4..f6588cd8a0 100644 Binary files a/resources/profiles/Qidi/Qidi X-Smart 3_cover.png and b/resources/profiles/Qidi/Qidi X-Smart 3_cover.png differ diff --git a/resources/profiles/Qidi/X-Max 4_bed.stl b/resources/profiles/Qidi/X-Max 4_bed.stl deleted file mode 100644 index f066c18d88..0000000000 Binary files a/resources/profiles/Qidi/X-Max 4_bed.stl and /dev/null differ diff --git a/resources/profiles/Qidi/X-Max 4_bed.svg b/resources/profiles/Qidi/X-Max 4_bed.svg deleted file mode 100644 index be7328c467..0000000000 --- a/resources/profiles/Qidi/X-Max 4_bed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro.json index eb797ce6b9..d6102cf61f 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_Q1Pro_buildplate_model.stl", - "bed_texture": "qidi_Q1Pro_buildplate_texture.png", + "bed_texture": "qidi_Q1Pro_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle;QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle;QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle;QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle;QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle;QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle;QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle;QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle;QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle;QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle;QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle;QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle;QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle;QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle;QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle;QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle;QIDI ASA @Qidi Q1 Pro 0.4 nozzle;QIDI ASA @Qidi Q1 Pro 0.2 nozzle;QIDI ASA @Qidi Q1 Pro 0.6 nozzle;QIDI ASA @Qidi Q1 Pro 0.8 nozzle;Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle;Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle;Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle;Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle;Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle;Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle;Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle;Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle;Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle" } diff --git a/resources/profiles/Qidi/machine/Qidi Q2.json b/resources/profiles/Qidi/machine/Qidi Q2.json index aaae0f922b..d7f9e8bf62 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2.json +++ b/resources/profiles/Qidi/machine/Qidi Q2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_q2_buildplate_model.stl", - "bed_texture": "qidi_q2_buildplate_texture.png", + "bed_texture": "qidi_q2_buildplate_texture.svg", "hotend_model": "X-Series_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PETG Tough;QIDI PLA Rapido Matte;QIDI ASA;QIDI PET-CF" } diff --git a/resources/profiles/Qidi/machine/Qidi Q2C.json b/resources/profiles/Qidi/machine/Qidi Q2C.json index f649a6a84e..cdc45e8f5e 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_q2c_buildplate_model.stl", - "bed_texture": "qidi_q2c_buildplate_texture.png", + "bed_texture": "qidi_q2c_buildplate_texture.svg", "hotend_model": "X-Series_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PETG Tough;QIDI PLA Rapido Matte;QIDI ASA;QIDI PET-CF" } diff --git a/resources/profiles/Qidi/machine/Qidi X-CF Pro.json b/resources/profiles/Qidi/machine/Qidi X-CF Pro.json index fcfe056c9d..b70c4bc480 100644 --- a/resources/profiles/Qidi/machine/Qidi X-CF Pro.json +++ b/resources/profiles/Qidi/machine/Qidi X-CF Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xcfpro_buildplate_model.stl", - "bed_texture": "qidi_xcfpro_buildplate_texture.png", + "bed_texture": "qidi_xcfpro_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen2_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PETG Tough;QIDI PET-CF;QIDI PA12-CF;QIDI PAHT-CF;QIDI ABS-GF25;QIDI PA-Ultra;Qidi Generic ASA;Qidi Generic ABS;Qidi Generic PA-CF;Qidi Generic PA;Qidi Generic PC;Qidi Generic PETG-CF;Qidi Generic PETG;Qidi Generic PLA Silk;Qidi Generic PLA;Qidi Generic PLA-CF;Qidi Generic PVA;Qidi Generic TPU 95A" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3.json b/resources/profiles/Qidi/machine/Qidi X-Max 3.json index 490098c50f..56fc955601 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xmax3_buildplate_model.stl", - "bed_texture": "qidi_xmax3_buildplate_texture.png", + "bed_texture": "qidi_xmax3_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PLA Rapido Matte;QIDI PETG Tough;QIDI ASA;Qidi Generic ASA;Qidi Generic ABS;Qidi Generic PETG;Qidi Generic PLA Silk;Qidi Generic PLA" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json index d5c672cee3..70740a10dd 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json @@ -57,7 +57,7 @@ "machine_max_speed_y": [ "800" ], - "machine_start_gcode": "INIT_MAPPING_VALUE\n;===== PRINT_PHASE_INIT =====\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\nSET_PRINT_MAIN_STATUS MAIN_STATUS=print_start\nM220 S100\nM221 S100\nSET_INPUT_SHAPER SHAPER_TYPE_X=mzv\nSET_INPUT_SHAPER SHAPER_TYPE_Y=mzv\nDISABLE_ALL_SENSOR\nM1002 R1\nM107\nCLEAR_PAUSE\nM140 S[bed_temperature_initial_layer_single]\nM141 S[chamber_temperature]\nG29.0\nG28\n\n;===== BOX_PREPAR =====\nBOX_PRINT_START EXTRUDER=[initial_no_support_extruder] HOTENDTEMP={nozzle_temperature_range_high[initial_tool]}\nM400\nEXTRUSION_AND_FLUSH HOTEND=[nozzle_temperature_initial_layer]\n\n;===== CLEAR_NOZZLE =====\nG1 Z20 F480\nMOVE_TO_TRASH\nG1 Y403.5 F2000\n{if chamber_temperature[0] == 0}\nM106 P3 S[during_print_exhaust_fan_speed]\n{else}\nM106 P3 S0\n{endif}\nM1004\nM106 S0\nM109 S[nozzle_temperature_initial_layer]\nG92 E0\nM83\nG1 E5 F80\nG1 E250 F300\nM400\nM106 S255\nG1 E-3 F1000\nM104 S140\nM109.1 S{nozzle_temperature_initial_layer[0]-30}\nM204 S10000\nG1 Y403 F2000\nG1 X163 F8000\nG1 X145 F5000\nG1 X163 F8000\nG1 X145 F5000\nG1 X175 F6000\nG1 X163\nG1 X175\nG1 X163\nG1 X175\nG1 X163\nG1 X180 F10000\nG1 Y395 F6000\nG1 X188\nG1 Z-0.2 F480\nM106 S255\nM109.1 S150\nG91\nG1 X15 F200\nG1 Y2\nG1 X-15\nG1 Y-2\nG1 X15\nG90\nG2 I0.5 J0.5 F480\nG2 I0.5 J0.5\nG2 I0.5 J0.5\nG1 Z10\nG1 Y383 F12000\nG1 X116\nG1 Y403\nG1 X163 F8000\nG1 X145 F5000\nG1 X163 F8000\nG1 X145 F5000\nG1 X175 F6000\nG1 X163\nG1 X175\nG1 X163\nG1 X175\nG1 X163\nG1 X180 F10000\nG1 X195 Y195\nM106 S0\nM190 S[bed_temperature_initial_layer_single]\nM191 S[chamber_temperature]\nM400\nSET_OPERATING_CURRENT STEPPER=x VALUE=1500\nG4 P400\nSET_OPERATING_CURRENT STEPPER=y VALUE=1500\nG4 P400\nG1 Y0 F15000\nG1 X15\nG1 X3 F5000\nG4 P1000\nG1 X4 F1000\nG1 X3 F5000\nG4 P1000\nG1 E-4 F1800\nG1 X15 F3000\n\nM400\nSET_OPERATING_CURRENT STEPPER=x VALUE=1200\nG4 P400\nSET_OPERATING_CURRENT STEPPER=y VALUE=1200\nG4 P2000\nG1 X20 Y20 F15000\nZ_TILT_ADJUST\nG29\nM1002 A1\nG1 X195 Y195 Z10 F20000\nG92_ Z{10 - ((nozzle_temperature_initial_layer[initial_tool] - 130) / 14 - 5.0) / 100}\nG0 Y1\nM109 S[nozzle_temperature_initial_layer]\nENABLE_ALL_SENSOR\n\n;===== PRINT_START =====\n; LAYER_HEIGHT: 0.2\nT[initial_tool]\nM140 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nM141 S[chamber_temperature]\nG4 P3000\nprobe samples=1\nG91\nG0 Z0.6 F480\nG90\nG1 X175 Y1 F20000\nG1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\nG1 X215 E20 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\nG1 Z1 F480\nSET_PRINT_MAIN_STATUS MAIN_STATUS=printing", + "machine_start_gcode": ";===== PRINT_PHASE_INIT =====\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\nSET_PRINT_MAIN_STATUS MAIN_STATUS=print_start\nM220 S100\nM221 S100\nSET_INPUT_SHAPER SHAPER_TYPE_X=mzv\nSET_INPUT_SHAPER SHAPER_TYPE_Y=mzv\nDISABLE_ALL_SENSOR\nM1002 R1\nM107\nCLEAR_PAUSE\nM140 S[bed_temperature_initial_layer_single]\nM141 S[chamber_temperature]\nG29.0\nSET_PRINT_SUB_STATUS SUB_STATUS=tool_head_reset\nG28\n\n;===== BOX_PREPAR =====\nSET_PRINT_SUB_STATUS SUB_STATUS=change_filament\nBOX_PRINT_START EXTRUDER=[initial_no_support_extruder] HOTENDTEMP={nozzle_temperature_range_high[initial_tool]}\nM400\nEXTRUSION_AND_FLUSH HOTEND=[nozzle_temperature_initial_layer]\n\n;===== CLEAR_NOZZLE =====\nSET_PRINT_SUB_STATUS SUB_STATUS=flush_filament\nG1 Z20 F480\nMOVE_TO_TRASH\nG1 Y403.5 F2000\n{if chamber_temperature[0] == 0}\nM106 P3 S[during_print_exhaust_fan_speed]\n{else}\nM106 P3 S0\n{endif}\nM1004\nM106 S0\nM109 S[nozzle_temperature_initial_layer]\nG92 E0\nM83\nG1 E5 F80\nG1 E250 F300\nM400\nM106 S255\nG1 E-3 F1000\nM104 S140\nSET_PRINT_SUB_STATUS SUB_STATUS=clear_nozzle\nM109.1 S{nozzle_temperature_initial_layer[0]-30}\nM204 S10000\nG1 Y403 F2000\nG1 X163 F8000\nG1 X145 F5000\nG1 X163 F8000\nG1 X145 F5000\nG1 X175 F6000\nG1 X163\nG1 X175\nG1 X163\nG1 X175\nG1 X163\nG1 X180 F10000\nG1 Y395 F6000\nG1 X188\nG1 Z-0.2 F480\nM106 S255\nM109.1 S150\nG91\nG1 X15 F200\nG1 Y2\nG1 X-15\nG1 Y-2\nG1 X15\nG90\nG2 I0.5 J0.5 F480\nG2 I0.5 J0.5\nG2 I0.5 J0.5\nG1 Z10\nG1 Y383 F12000\nG1 X116\nG1 Y403\nG1 X163 F8000\nG1 X145 F5000\nG1 X163 F8000\nG1 X145 F5000\nG1 X175 F6000\nG1 X163\nG1 X175\nG1 X163\nG1 X175\nG1 X163\nG1 X180 F10000\nG1 X195 Y195\nM106 S0\nSET_PRINT_SUB_STATUS SUB_STATUS=wait_bed_temp\nM190 S[bed_temperature_initial_layer_single]\nSET_PRINT_SUB_STATUS SUB_STATUS=wait_chamber_temp\nM191 S[chamber_temperature]\nG1 Y0 F15000\nG1 X15\nG1 X3 F5000\nG4 P1000\nG1 X4 F1000\nG1 X3 F5000\nG4 P1000\nG1 E-4 F1800\nG1 X15 F3000\nG1 X20 Y20 F15000\nSET_PRINT_SUB_STATUS SUB_STATUS=z_tilt_adjust\nZ_TILT_ADJUST\nSET_PRINT_SUB_STATUS SUB_STATUS=auto_bed_adjust\nG29\nM1002 A1\nG1 X195 Y195 Z10 F20000\nG92_ Z{10 - ((nozzle_temperature_initial_layer[initial_tool] - 130) / 14 - 5.0) / 100}\nG0 Y1\nM109 S[nozzle_temperature_initial_layer]\nENABLE_ALL_SENSOR\n\n;===== PRINT_START =====\n; LAYER_HEIGHT: 0.2\nT[initial_tool]\nM140 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nM141 S[chamber_temperature]\nG4 P3000\nprobe samples=1\nG91\nG0 Z0.6 F480\nG90\nG1 X175 Y1 F20000\nG1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\nG1 X215 E20 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\nG1 Z1 F480\nSET_PRINT_MAIN_STATUS MAIN_STATUS=printing", "nozzle_diameter": [ "0.4" ], diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4.json b/resources/profiles/Qidi/machine/Qidi X-Max 4.json index 31187dab7a..4d67f77537 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4.json @@ -5,8 +5,8 @@ "nozzle_diameter": "0.4;0.2;0.6;0.8", "machine_tech": "FFF", "family": "Qidi", - "bed_model": "X-Max 4_bed.stl", - "bed_texture": "X-Max 4_bed.svg", + "bed_model": "qidi_xmax4_buildplate_model.stl", + "bed_texture": "qidi_xmax4_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen3_hotend.stl", "default_materials": "Generic ABS @Qidi X-Max 4 0.4 nozzle;Generic PLA @Qidi X-Max 4 0.4 nozzle;QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle;QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle;QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle;QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle;QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle;Generic PLA Silk @Qidi X-Max 4 0.4 nozzle;QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle;QIDI ASA @Qidi X-Max 4 0.4 nozzle;QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle;QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle;QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle;QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle;QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle;QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle;Generic PETG @Qidi X-Max 4 0.4 nozzle" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Max.json b/resources/profiles/Qidi/machine/Qidi X-Max.json index 740055f1e2..ac917aa5b7 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xmax_buildplate_model.stl", - "bed_texture": "qidi_xmax_buildplate_texture.png", + "bed_texture": "qidi_xmax_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen2_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PETG Tough;QIDI PET-CF;QIDI PA12-CF;QIDI PAHT-CF;QIDI ABS-GF25;QIDI PA-Ultra;Qidi Generic ASA;Qidi Generic ABS;Qidi Generic PA-CF;Qidi Generic PA;Qidi Generic PC;Qidi Generic PETG-CF;Qidi Generic PETG;Qidi Generic PLA Silk;Qidi Generic PLA;Qidi Generic PLA-CF;Qidi Generic PVA;Qidi Generic TPU 95A" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3.json index 21ade58ef2..535fc25aef 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xplus3_buildplate_model.stl", - "bed_texture": "qidi_xplus3_buildplate_texture.png", + "bed_texture": "qidi_xplus3_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PLA Rapido Matte;QIDI PETG Tough;QIDI ASA;Qidi Generic ASA;Qidi Generic ABS;Qidi Generic PETG;Qidi Generic PLA Silk;Qidi Generic PLA" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4.json index 34612a0636..82702cb7dc 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xplus4_buildplate_model.stl", - "bed_texture": "qidi_xplus4_buildplate_texture.png", + "bed_texture": "qidi_xplus4_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PETG Tough;QIDI PLA Rapido Matte;QIDI ASA;Qidi Generic PETG" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus.json b/resources/profiles/Qidi/machine/Qidi X-Plus.json index 22074389f1..5aa0917d5e 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xplus_buildplate_model.stl", - "bed_texture": "qidi_xplus_buildplate_texture.png", + "bed_texture": "qidi_xplus_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen2_hotend.stl", "default_materials": "Qidi Generic ASA;Qidi Generic ABS;Qidi Generic PA-CF;Qidi Generic PA;Qidi Generic PC;Qidi Generic PETG-CF;Qidi Generic PETG;Qidi Generic PLA Silk;Qidi Generic PLA;Qidi Generic PLA-CF;Qidi Generic PVA;Qidi Generic TPU" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3.json index 3efa7d8f92..78cd91d3e4 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Qidi", "bed_model": "qidi_xsmart3_buildplate_model.stl", - "bed_texture": "qidi_xsmart3_buildplate_texture.png", + "bed_texture": "qidi_xsmart3_buildplate_texture.svg", "hotend_model": "qidi_xseries_gen3_hotend.stl", "default_materials": "QIDI PLA Rapido;QIDI ABS Rapido;QIDI PLA Rapido Matte;QIDI PETG Tough;QIDI ASA;Qidi Generic ASA;Qidi Generic ABS;Qidi Generic PETG;Qidi Generic PLA Silk;Qidi Generic PLA" } diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json index 04e89f160a..856c04af32 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json index 978fef59cb..aab6b90d00 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json index d761beae95..30f8b1e2d7 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json index 370f398d6c..2438a54632 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json index 629aa553f8..1de2e53487 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json @@ -32,7 +32,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json index 3d08653107..f48d5ed26f 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json index f5ba3f97d0..61070ce4e1 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json index e39ea686f1..ee81050de7 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json index a9a0d0a5c8..cae0bca0c0 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json index 677d8d85aa..73d92a8aad 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json index 6e301151d4..25d0f427ad 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json index de045aea8f..c4319985ce 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json @@ -30,7 +30,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json index d4cf9c71c0..752802d615 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json index bb60a6d69f..1cf2127af9 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json @@ -36,7 +36,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json index a3da500452..0c12c542e1 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json @@ -36,7 +36,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json index a561b8cabe..2a4a1939d7 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json index 6668c5db58..779e51ce5c 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json index f1efd7e0ce..16f0898e67 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json index 77f07c77da..35163be785 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json index 07228915c7..22314df1d6 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json index 5663b4d87a..eea82f1af6 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json @@ -36,7 +36,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json index 946b22b2c8..e1cd57fe1e 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json index bf46754a16..e455467d5d 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json @@ -30,7 +30,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json index bc77a45787..abebe5a095 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json index 7989b011c2..f9371fd9bc 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json @@ -36,7 +36,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json index 554459814d..b8dd180907 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json @@ -36,7 +36,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json index 9a7a3b452f..1e9e0b2206 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json index a02ce0928e..186f136f67 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json index f5eb1a43fc..70acdbf026 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json index 4dea613c5b..c7ce549965 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json @@ -43,7 +43,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json index e56ea3e702..fa9c82940b 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json index c53d5ce575..ef03cf5818 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json @@ -36,7 +36,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json index 3f660d8315..cc645f7de0 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json @@ -35,7 +35,7 @@ "ironing_flow": "15%", "ironing_spacing": "0.1", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Qidi/process/fdm_process_n_common.json b/resources/profiles/Qidi/process/fdm_process_n_common.json index 45c1fdbabd..28fcbe32a9 100644 --- a/resources/profiles/Qidi/process/fdm_process_n_common.json +++ b/resources/profiles/Qidi/process/fdm_process_n_common.json @@ -116,7 +116,7 @@ "print_settings_id": "", "raft_layers": "0", "reduce_crossing_wall": "0", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "resolution": "0.012", "seam_position": "aligned", "seam_placement_away_from_overhangs": "0", diff --git a/resources/profiles/Qidi/process/fdm_process_qidi_common.json b/resources/profiles/Qidi/process/fdm_process_qidi_common.json index 8172f9f3e0..3a7676e3fe 100644 --- a/resources/profiles/Qidi/process/fdm_process_qidi_common.json +++ b/resources/profiles/Qidi/process/fdm_process_qidi_common.json @@ -41,7 +41,7 @@ "ironing_spacing": "0.1", "ironing_speed": "15", "ironing_type": "no ironing", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/process/fdm_process_qidi_x3_common.json b/resources/profiles/Qidi/process/fdm_process_qidi_x3_common.json index 7be30d7acf..176add07f7 100644 --- a/resources/profiles/Qidi/process/fdm_process_qidi_x3_common.json +++ b/resources/profiles/Qidi/process/fdm_process_qidi_x3_common.json @@ -62,7 +62,7 @@ "ironing_speed": "30", "ironing_type": "no ironing", "layer_height": "0.2", - "reduce_infill_retraction": "1", + "reduce_infill_retraction": "0", "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode", "detect_overhang_wall": "1", "overhang_1_4_speed": "0", diff --git a/resources/profiles/Qidi/qidi_Q1Pro_buildplate_texture.png b/resources/profiles/Qidi/qidi_Q1Pro_buildplate_texture.png deleted file mode 100644 index 759c134e94..0000000000 Binary files a/resources/profiles/Qidi/qidi_Q1Pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_Q1Pro_buildplate_texture.svg b/resources/profiles/Qidi/qidi_Q1Pro_buildplate_texture.svg new file mode 100644 index 0000000000..7c2aa9a2ad --- /dev/null +++ b/resources/profiles/Qidi/qidi_Q1Pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_q2_buildplate_model.stl b/resources/profiles/Qidi/qidi_q2_buildplate_model.stl index 27b48ed50c..e02028d51b 100644 Binary files a/resources/profiles/Qidi/qidi_q2_buildplate_model.stl and b/resources/profiles/Qidi/qidi_q2_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_q2_buildplate_texture.png b/resources/profiles/Qidi/qidi_q2_buildplate_texture.png deleted file mode 100644 index 39fc69670b..0000000000 Binary files a/resources/profiles/Qidi/qidi_q2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_q2_buildplate_texture.svg b/resources/profiles/Qidi/qidi_q2_buildplate_texture.svg new file mode 100644 index 0000000000..c777950ae1 --- /dev/null +++ b/resources/profiles/Qidi/qidi_q2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_q2c_buildplate_model.stl b/resources/profiles/Qidi/qidi_q2c_buildplate_model.stl index ca300b0cec..37d597f228 100644 Binary files a/resources/profiles/Qidi/qidi_q2c_buildplate_model.stl and b/resources/profiles/Qidi/qidi_q2c_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_q2c_buildplate_texture.png b/resources/profiles/Qidi/qidi_q2c_buildplate_texture.png deleted file mode 100644 index 7778895c9c..0000000000 Binary files a/resources/profiles/Qidi/qidi_q2c_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_q2c_buildplate_texture.svg b/resources/profiles/Qidi/qidi_q2c_buildplate_texture.svg new file mode 100644 index 0000000000..e479f84234 --- /dev/null +++ b/resources/profiles/Qidi/qidi_q2c_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xcfpro_buildplate_model.stl b/resources/profiles/Qidi/qidi_xcfpro_buildplate_model.stl index c6120a6536..a0568771f9 100644 Binary files a/resources/profiles/Qidi/qidi_xcfpro_buildplate_model.stl and b/resources/profiles/Qidi/qidi_xcfpro_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xcfpro_buildplate_texture.png b/resources/profiles/Qidi/qidi_xcfpro_buildplate_texture.png deleted file mode 100644 index 549ccab670..0000000000 Binary files a/resources/profiles/Qidi/qidi_xcfpro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xcfpro_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xcfpro_buildplate_texture.svg new file mode 100644 index 0000000000..b21f71471c --- /dev/null +++ b/resources/profiles/Qidi/qidi_xcfpro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xmax3_buildplate_model.stl b/resources/profiles/Qidi/qidi_xmax3_buildplate_model.stl index ee8fc101a4..97e59d2ddc 100644 Binary files a/resources/profiles/Qidi/qidi_xmax3_buildplate_model.stl and b/resources/profiles/Qidi/qidi_xmax3_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xmax3_buildplate_texture.png b/resources/profiles/Qidi/qidi_xmax3_buildplate_texture.png deleted file mode 100644 index 8269d86142..0000000000 Binary files a/resources/profiles/Qidi/qidi_xmax3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xmax3_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xmax3_buildplate_texture.svg new file mode 100644 index 0000000000..8e78ffba6d --- /dev/null +++ b/resources/profiles/Qidi/qidi_xmax3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xmax4_buildplate_model.stl b/resources/profiles/Qidi/qidi_xmax4_buildplate_model.stl new file mode 100644 index 0000000000..65cae7f796 Binary files /dev/null and b/resources/profiles/Qidi/qidi_xmax4_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xmax4_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xmax4_buildplate_texture.svg new file mode 100644 index 0000000000..9aa53dc7a2 --- /dev/null +++ b/resources/profiles/Qidi/qidi_xmax4_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xmax_buildplate_model.stl b/resources/profiles/Qidi/qidi_xmax_buildplate_model.stl index c6120a6536..a0568771f9 100644 Binary files a/resources/profiles/Qidi/qidi_xmax_buildplate_model.stl and b/resources/profiles/Qidi/qidi_xmax_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xmax_buildplate_texture.png b/resources/profiles/Qidi/qidi_xmax_buildplate_texture.png deleted file mode 100644 index 549ccab670..0000000000 Binary files a/resources/profiles/Qidi/qidi_xmax_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xmax_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xmax_buildplate_texture.svg new file mode 100644 index 0000000000..b21f71471c --- /dev/null +++ b/resources/profiles/Qidi/qidi_xmax_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xplus3_buildplate_model.stl b/resources/profiles/Qidi/qidi_xplus3_buildplate_model.stl index 6371cee8d5..6aeb7794e8 100644 Binary files a/resources/profiles/Qidi/qidi_xplus3_buildplate_model.stl and b/resources/profiles/Qidi/qidi_xplus3_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xplus3_buildplate_texture.png b/resources/profiles/Qidi/qidi_xplus3_buildplate_texture.png deleted file mode 100644 index 9a74ba68e8..0000000000 Binary files a/resources/profiles/Qidi/qidi_xplus3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xplus3_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xplus3_buildplate_texture.svg new file mode 100644 index 0000000000..5c21b43e14 --- /dev/null +++ b/resources/profiles/Qidi/qidi_xplus3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xplus4_buildplate_texture.png b/resources/profiles/Qidi/qidi_xplus4_buildplate_texture.png deleted file mode 100644 index c953c14270..0000000000 Binary files a/resources/profiles/Qidi/qidi_xplus4_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xplus4_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xplus4_buildplate_texture.svg new file mode 100644 index 0000000000..ce565cbc0b --- /dev/null +++ b/resources/profiles/Qidi/qidi_xplus4_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xplus_buildplate_model.stl b/resources/profiles/Qidi/qidi_xplus_buildplate_model.stl index 0f58d752d7..8071a23913 100644 Binary files a/resources/profiles/Qidi/qidi_xplus_buildplate_model.stl and b/resources/profiles/Qidi/qidi_xplus_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xplus_buildplate_texture.png b/resources/profiles/Qidi/qidi_xplus_buildplate_texture.png deleted file mode 100644 index 17d70472b5..0000000000 Binary files a/resources/profiles/Qidi/qidi_xplus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xplus_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xplus_buildplate_texture.svg new file mode 100644 index 0000000000..cb8805b5d1 --- /dev/null +++ b/resources/profiles/Qidi/qidi_xplus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Qidi/qidi_xsmart3_buildplate_model.stl b/resources/profiles/Qidi/qidi_xsmart3_buildplate_model.stl index 6215174913..6da0ec7f99 100644 Binary files a/resources/profiles/Qidi/qidi_xsmart3_buildplate_model.stl and b/resources/profiles/Qidi/qidi_xsmart3_buildplate_model.stl differ diff --git a/resources/profiles/Qidi/qidi_xsmart3_buildplate_texture.png b/resources/profiles/Qidi/qidi_xsmart3_buildplate_texture.png deleted file mode 100644 index fdfa680171..0000000000 Binary files a/resources/profiles/Qidi/qidi_xsmart3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Qidi/qidi_xsmart3_buildplate_texture.svg b/resources/profiles/Qidi/qidi_xsmart3_buildplate_texture.svg new file mode 100644 index 0000000000..3fb1ad6d7f --- /dev/null +++ b/resources/profiles/Qidi/qidi_xsmart3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/RH3D/E3NG v1.2S_cover.png b/resources/profiles/RH3D/E3NG v1.2S_cover.png index f9295a206c..03bb5a9e42 100644 Binary files a/resources/profiles/RH3D/E3NG v1.2S_cover.png and b/resources/profiles/RH3D/E3NG v1.2S_cover.png differ diff --git a/resources/profiles/RH3D/E3NG-bed-texture.svg b/resources/profiles/RH3D/E3NG-bed-texture.svg index 0848bd0098..2cc13e29ad 100644 --- a/resources/profiles/RH3D/E3NG-bed-texture.svg +++ b/resources/profiles/RH3D/E3NG-bed-texture.svg @@ -1,221 +1 @@ - - - - + \ No newline at end of file diff --git a/resources/profiles/RH3D/E3NG-bed.stl b/resources/profiles/RH3D/E3NG-bed.stl index 788c86ec60..4607169e33 100644 Binary files a/resources/profiles/RH3D/E3NG-bed.stl and b/resources/profiles/RH3D/E3NG-bed.stl differ diff --git a/resources/profiles/Raise3D.json b/resources/profiles/Raise3D.json index 010c0de8ee..086b030a27 100644 --- a/resources/profiles/Raise3D.json +++ b/resources/profiles/Raise3D.json @@ -1,7 +1,7 @@ { "name": "Raise3D", "url": "", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Raise3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus.json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus.json index b01f15ce51..07fc7c6491 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus.json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Raise3D", "bed_model": "raise3d_pro3plus_buildplate_model.stl", - "bed_texture": "raise3d_pro3plus_buildplate_texture.png", + "bed_texture": "raise3d_pro3plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ASA @System;Generic PETG @System;Generic PLA @System;Generic PVA @System;Generic TPU @System" } diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3.json b/resources/profiles/Raise3D/machine/Raise3D Pro3.json index e08181d619..e8fa83c832 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3.json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Raise3D", "bed_model": "raise3d_pro3_buildplate_model.stl", - "bed_texture": "raise3d_pro3_buildplate_texture.png", + "bed_texture": "raise3d_pro3_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ASA @System;Generic PETG @System;Generic PLA @System;Generic PVA @System;Generic TPU @System" } diff --git a/resources/profiles/Raise3D/raise3d_pro3_buildplate_texture.png b/resources/profiles/Raise3D/raise3d_pro3_buildplate_texture.png deleted file mode 100644 index 5e0cf6566e..0000000000 Binary files a/resources/profiles/Raise3D/raise3d_pro3_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Raise3D/raise3d_pro3_buildplate_texture.svg b/resources/profiles/Raise3D/raise3d_pro3_buildplate_texture.svg new file mode 100644 index 0000000000..8839bf4f26 --- /dev/null +++ b/resources/profiles/Raise3D/raise3d_pro3_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Raise3D/raise3d_pro3plus_buildplate_texture.png b/resources/profiles/Raise3D/raise3d_pro3plus_buildplate_texture.png deleted file mode 100644 index 5e0cf6566e..0000000000 Binary files a/resources/profiles/Raise3D/raise3d_pro3plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Raise3D/raise3d_pro3plus_buildplate_texture.svg b/resources/profiles/Raise3D/raise3d_pro3plus_buildplate_texture.svg new file mode 100644 index 0000000000..8839bf4f26 --- /dev/null +++ b/resources/profiles/Raise3D/raise3d_pro3plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/RolohaunDesign.json b/resources/profiles/RolohaunDesign.json index fba99bfbba..492cd391e1 100644 --- a/resources/profiles/RolohaunDesign.json +++ b/resources/profiles/RolohaunDesign.json @@ -1,6 +1,6 @@ { "name": "RolohaunDesign", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "RolohaunDesign Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/RolohaunDesign/Rolohaun Delta Flyer Refit_cover.png b/resources/profiles/RolohaunDesign/Rolohaun Delta Flyer Refit_cover.png index 62e276dbb3..ccc2622b1c 100644 Binary files a/resources/profiles/RolohaunDesign/Rolohaun Delta Flyer Refit_cover.png and b/resources/profiles/RolohaunDesign/Rolohaun Delta Flyer Refit_cover.png differ diff --git a/resources/profiles/RolohaunDesign/Rook MK1 LDO_cover.png b/resources/profiles/RolohaunDesign/Rook MK1 LDO_cover.png index 3a70f86a29..dfa26ae600 100644 Binary files a/resources/profiles/RolohaunDesign/Rook MK1 LDO_cover.png and b/resources/profiles/RolohaunDesign/Rook MK1 LDO_cover.png differ diff --git a/resources/profiles/RolohaunDesign/bedtexture-rook-green-120.png b/resources/profiles/RolohaunDesign/bedtexture-rook-green-120.png deleted file mode 100644 index 7f3c389a09..0000000000 Binary files a/resources/profiles/RolohaunDesign/bedtexture-rook-green-120.png and /dev/null differ diff --git a/resources/profiles/RolohaunDesign/bedtexture-rook-green-120.svg b/resources/profiles/RolohaunDesign/bedtexture-rook-green-120.svg new file mode 100644 index 0000000000..3f3afd2f03 --- /dev/null +++ b/resources/profiles/RolohaunDesign/bedtexture-rook-green-120.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit.json index 26942a36b2..5ce97371f7 100644 --- a/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "RolohaunDesign", "bed_model": "", - "bed_texture": "bedtexture-rook-green-120.png", + "bed_texture": "bedtexture-rook-green-120.svg", "hotend_model": "", "default_materials": "Generic PLA @System;Generic PETG @System" } diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO.json index 69c43636ce..1363e8bd79 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "RolohaunDesign", "bed_model": "", - "bed_texture": "bedtexture-rook-green-120.png", + "bed_texture": "bedtexture-rook-green-120.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PLA @System;Generic PLA-CF @System;Generic PETG @System;Generic TPU @System;Generic ASA @System;Generic PC @System;Generic PVA @System;Generic PA @System;Generic PA-CF @System" } diff --git a/resources/profiles/Snapmaker/Snapmaker A250 Dual_texture.svg b/resources/profiles/Snapmaker/Snapmaker A250 Dual_texture.svg index 5c5fe4ffc2..a6454122d9 100644 --- a/resources/profiles/Snapmaker/Snapmaker A250 Dual_texture.svg +++ b/resources/profiles/Snapmaker/Snapmaker A250 Dual_texture.svg @@ -1,11 +1 @@ - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Snapmaker/Snapmaker A250_bed.stl b/resources/profiles/Snapmaker/Snapmaker A250_bed.stl index 9016f9c4f5..89d8add6bb 100644 Binary files a/resources/profiles/Snapmaker/Snapmaker A250_bed.stl and b/resources/profiles/Snapmaker/Snapmaker A250_bed.stl differ diff --git a/resources/profiles/Snapmaker/Snapmaker A250_texture.svg b/resources/profiles/Snapmaker/Snapmaker A250_texture.svg index d19cd036c8..a5c22d543f 100644 --- a/resources/profiles/Snapmaker/Snapmaker A250_texture.svg +++ b/resources/profiles/Snapmaker/Snapmaker A250_texture.svg @@ -1,11 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/Snapmaker/Snapmaker A350 Dual_texture.svg b/resources/profiles/Snapmaker/Snapmaker A350 Dual_texture.svg index bdc061158c..52dcb9376a 100644 --- a/resources/profiles/Snapmaker/Snapmaker A350 Dual_texture.svg +++ b/resources/profiles/Snapmaker/Snapmaker A350 Dual_texture.svg @@ -1,11 +1 @@ - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Snapmaker/Snapmaker A350_bed.stl b/resources/profiles/Snapmaker/Snapmaker A350_bed.stl index 761efa2fc5..11d3225305 100644 Binary files a/resources/profiles/Snapmaker/Snapmaker A350_bed.stl and b/resources/profiles/Snapmaker/Snapmaker A350_bed.stl differ diff --git a/resources/profiles/Snapmaker/Snapmaker A350_texture.svg b/resources/profiles/Snapmaker/Snapmaker A350_texture.svg index 92a346e0c1..a7b5fa2d65 100644 --- a/resources/profiles/Snapmaker/Snapmaker A350_texture.svg +++ b/resources/profiles/Snapmaker/Snapmaker A350_texture.svg @@ -1,10 +1 @@ - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Snapmaker/Snapmaker Artisan_texture.svg b/resources/profiles/Snapmaker/Snapmaker Artisan_texture.svg index 1027b2ea93..45130989e1 100644 --- a/resources/profiles/Snapmaker/Snapmaker Artisan_texture.svg +++ b/resources/profiles/Snapmaker/Snapmaker Artisan_texture.svg @@ -1,9 +1 @@ - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Snapmaker/Snapmaker J1_texture.svg b/resources/profiles/Snapmaker/Snapmaker J1_texture.svg index a9d6034b50..9134323aa8 100644 --- a/resources/profiles/Snapmaker/Snapmaker J1_texture.svg +++ b/resources/profiles/Snapmaker/Snapmaker J1_texture.svg @@ -1,36 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/resources/profiles/Snapmaker/Snapmaker U1_bed.stl b/resources/profiles/Snapmaker/Snapmaker U1_bed.stl index f1c58f2e1e..fcffb86f88 100644 Binary files a/resources/profiles/Snapmaker/Snapmaker U1_bed.stl and b/resources/profiles/Snapmaker/Snapmaker U1_bed.stl differ diff --git a/resources/profiles/Snapmaker/Snapmaker U1_bed.svg b/resources/profiles/Snapmaker/Snapmaker U1_bed.svg deleted file mode 100644 index b12ad10a5e..0000000000 --- a/resources/profiles/Snapmaker/Snapmaker U1_bed.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/resources/profiles/Snapmaker/Snapmaker U1_texture.svg b/resources/profiles/Snapmaker/Snapmaker U1_texture.svg new file mode 100644 index 0000000000..e1de73fac6 --- /dev/null +++ b/resources/profiles/Snapmaker/Snapmaker U1_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json index e8d2d608f0..393c7c7374 100644 --- a/resources/profiles/Sovol.json +++ b/resources/profiles/Sovol.json @@ -1,7 +1,7 @@ { "name": "Sovol", "url": "", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Sovol configurations", "machine_model_list": [ diff --git a/resources/profiles/Sovol/Sovol SV01 Pro_cover.png b/resources/profiles/Sovol/Sovol SV01 Pro_cover.png index 3b5e26b111..a57baa519a 100644 Binary files a/resources/profiles/Sovol/Sovol SV01 Pro_cover.png and b/resources/profiles/Sovol/Sovol SV01 Pro_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV01_cover.png b/resources/profiles/Sovol/Sovol SV01_cover.png index 404585f66f..868a4ad18d 100644 Binary files a/resources/profiles/Sovol/Sovol SV01_cover.png and b/resources/profiles/Sovol/Sovol SV01_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV02_cover.png b/resources/profiles/Sovol/Sovol SV02_cover.png index 6065bb7012..c578601d07 100644 Binary files a/resources/profiles/Sovol/Sovol SV02_cover.png and b/resources/profiles/Sovol/Sovol SV02_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV05_cover.png b/resources/profiles/Sovol/Sovol SV05_cover.png index bc42266626..cd256a8c44 100644 Binary files a/resources/profiles/Sovol/Sovol SV05_cover.png and b/resources/profiles/Sovol/Sovol SV05_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV06 ACE_cover.png b/resources/profiles/Sovol/Sovol SV06 ACE_cover.png index dc409c917c..735ce86a78 100644 Binary files a/resources/profiles/Sovol/Sovol SV06 ACE_cover.png and b/resources/profiles/Sovol/Sovol SV06 ACE_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV06 Plus ACE_cover.png b/resources/profiles/Sovol/Sovol SV06 Plus ACE_cover.png index 73047b20fe..2b4d3faf56 100644 Binary files a/resources/profiles/Sovol/Sovol SV06 Plus ACE_cover.png and b/resources/profiles/Sovol/Sovol SV06 Plus ACE_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV06 Plus_cover.png b/resources/profiles/Sovol/Sovol SV06 Plus_cover.png index 6f8dc21ddf..880dba4a80 100644 Binary files a/resources/profiles/Sovol/Sovol SV06 Plus_cover.png and b/resources/profiles/Sovol/Sovol SV06 Plus_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV06_cover.png b/resources/profiles/Sovol/Sovol SV06_cover.png index 2fe0ebc8be..969d972e59 100644 Binary files a/resources/profiles/Sovol/Sovol SV06_cover.png and b/resources/profiles/Sovol/Sovol SV06_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV07 Plus_cover.png b/resources/profiles/Sovol/Sovol SV07 Plus_cover.png index badf7aa160..a541ec2d1d 100644 Binary files a/resources/profiles/Sovol/Sovol SV07 Plus_cover.png and b/resources/profiles/Sovol/Sovol SV07 Plus_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV07_cover.png b/resources/profiles/Sovol/Sovol SV07_cover.png index 47daf4bae3..dd8866a2bd 100644 Binary files a/resources/profiles/Sovol/Sovol SV07_cover.png and b/resources/profiles/Sovol/Sovol SV07_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV08 MAX_cover.png b/resources/profiles/Sovol/Sovol SV08 MAX_cover.png index 9d10449acc..35dc2546d2 100644 Binary files a/resources/profiles/Sovol/Sovol SV08 MAX_cover.png and b/resources/profiles/Sovol/Sovol SV08 MAX_cover.png differ diff --git a/resources/profiles/Sovol/Sovol SV08_cover.png b/resources/profiles/Sovol/Sovol SV08_cover.png index edaaf0f010..df9141873c 100644 Binary files a/resources/profiles/Sovol/Sovol SV08_cover.png and b/resources/profiles/Sovol/Sovol SV08_cover.png differ diff --git a/resources/profiles/Sovol/Sovol Zero_cover.png b/resources/profiles/Sovol/Sovol Zero_cover.png index ff351b2005..e2eab23fed 100644 Binary files a/resources/profiles/Sovol/Sovol Zero_cover.png and b/resources/profiles/Sovol/Sovol Zero_cover.png differ diff --git a/resources/profiles/Sovol/machine/Sovol SV01 Pro.json b/resources/profiles/Sovol/machine/Sovol SV01 Pro.json index 599826b057..ba158567e9 100644 --- a/resources/profiles/Sovol/machine/Sovol SV01 Pro.json +++ b/resources/profiles/Sovol/machine/Sovol SV01 Pro.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv01pro_buildplate_model.stl", - "bed_texture": "sovol_sv01pro_buildplate_texture.png", + "bed_texture": "sovol_sv01pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Sovol/machine/Sovol SV01.json b/resources/profiles/Sovol/machine/Sovol SV01.json index 023bbff5ac..e70d4f410a 100644 --- a/resources/profiles/Sovol/machine/Sovol SV01.json +++ b/resources/profiles/Sovol/machine/Sovol SV01.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv01pro_buildplate_model.stl", - "bed_texture": "sovol_sv01pro_buildplate_texture.png", + "bed_texture": "sovol_sv01pro_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Sovol/machine/Sovol SV02.json b/resources/profiles/Sovol/machine/Sovol SV02.json index 24b182bd6b..e6206761ea 100644 --- a/resources/profiles/Sovol/machine/Sovol SV02.json +++ b/resources/profiles/Sovol/machine/Sovol SV02.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv02_buildplate_model.stl", - "bed_texture": "sovol_sv02_buildplate_texture.png", + "bed_texture": "sovol_sv02_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Sovol/machine/Sovol SV05.json b/resources/profiles/Sovol/machine/Sovol SV05.json index 7f2dd65846..4603348d52 100644 --- a/resources/profiles/Sovol/machine/Sovol SV05.json +++ b/resources/profiles/Sovol/machine/Sovol SV05.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv05_buildplate_model.stl", - "bed_texture": "sovol_sv05_buildplate_texture.png", + "bed_texture": "sovol_sv05_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE.json index 28832dbe05..fe28ebc823 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv06_ace_buildplate_model.stl", - "bed_texture": "sovol_sv06_ace_buildplate_texture.png", + "bed_texture": "sovol_sv06_ace_buildplate_texture.svg", "hotend_model": "", "default_materials": "Sovol SV06 ACE PLA" } diff --git a/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE.json b/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE.json index eeb3f978e4..8ec61bab90 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv06plus_ace_buildplate_model.stl", - "bed_texture": "sovol_sv06plus_ace_buildplate_texture.png", + "bed_texture": "sovol_sv06plus_ace_buildplate_texture.svg", "hotend_model": "", "default_materials": "Sovol SV06 Plus ACE PLA" } diff --git a/resources/profiles/Sovol/machine/Sovol SV06 Plus.json b/resources/profiles/Sovol/machine/Sovol SV06 Plus.json index 41ca05e5ca..ccfe70d105 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 Plus.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv06plus_buildplate_model.stl", - "bed_texture": "sovol_sv06plus_buildplate_texture.png", + "bed_texture": "sovol_sv06plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Sovol/machine/Sovol SV06.json b/resources/profiles/Sovol/machine/Sovol SV06.json index ab1c8773c5..ad3019f571 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06.json +++ b/resources/profiles/Sovol/machine/Sovol SV06.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv06_buildplate_model.stl", - "bed_texture": "sovol_sv06_buildplate_texture.png", + "bed_texture": "sovol_sv06_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System;Generic PLA @System;Generic PETG @System;Generic ABS @System;Generic ASA @System;Generic TPU @System;" } diff --git a/resources/profiles/Sovol/machine/Sovol SV07 Plus.json b/resources/profiles/Sovol/machine/Sovol SV07 Plus.json index cccb1267ec..640e7a9175 100644 --- a/resources/profiles/Sovol/machine/Sovol SV07 Plus.json +++ b/resources/profiles/Sovol/machine/Sovol SV07 Plus.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv07plus_buildplate_model.stl", - "bed_texture": "sovol_sv07plus_buildplate_texture.png", + "bed_texture": "sovol_sv07plus_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Sovol/machine/Sovol SV07.json b/resources/profiles/Sovol/machine/Sovol SV07.json index 472676cca1..2ac60556da 100644 --- a/resources/profiles/Sovol/machine/Sovol SV07.json +++ b/resources/profiles/Sovol/machine/Sovol SV07.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv07_buildplate_model.stl", - "bed_texture": "sovol_sv07_buildplate_texture.png", + "bed_texture": "sovol_sv07_buildplate_texture.svg", "hotend_model": "", "default_materials": "Sovol SV07 PLA" } diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX.json index 08099e803f..92a92a9a1d 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv08_max_buildplate_model.stl", - "bed_texture": "sovol_sv08_max_buildplate_texture.png", + "bed_texture": "sovol_sv08_max_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA;Generic PLA Silk;Generic ABS;Generic PETG;Polymaker PETG;SUNLU PETG;Generic TPU;Generic PC" } diff --git a/resources/profiles/Sovol/machine/Sovol SV08.json b/resources/profiles/Sovol/machine/Sovol SV08.json index 910ac8d9b4..2d861f5ef4 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08.json +++ b/resources/profiles/Sovol/machine/Sovol SV08.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_sv08_buildplate_model.stl", - "bed_texture": "sovol_sv08_buildplate_texture.png", + "bed_texture": "sovol_sv08_buildplate_texture.svg", "hotend_model": "", "default_materials": "Sovol SV08 PLA;Sovol SV08 PLA @SV08 0.2 nozzle;Sovol SV08 ABS;Sovol SV08 PETG;Sovol SV08 TPU" } diff --git a/resources/profiles/Sovol/machine/Sovol Zero.json b/resources/profiles/Sovol/machine/Sovol Zero.json index 3807b8ed62..c1ccc64b84 100644 --- a/resources/profiles/Sovol/machine/Sovol Zero.json +++ b/resources/profiles/Sovol/machine/Sovol Zero.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Sovol", "bed_model": "sovol_zero_buildplate_model.stl", - "bed_texture": "sovol_zero_buildplate_texture.png", + "bed_texture": "sovol_zero_buildplate_texture.svg", "hotend_model": "", "default_materials": "Sovol Zero PLA Basic;Sovol Zero PLA Basic HS Nozzle;Sovol Zero PLA Silk;Sovol Zero PLA Silk HS Nozzle;Sovol Zero ABS;Sovol Zero PETG;Sovol Zero PETG HS Nozzle;Sovol Zero TPU;Sovol Zero PC" } diff --git a/resources/profiles/Sovol/sovol_buildplate_texture.png b/resources/profiles/Sovol/sovol_buildplate_texture.png deleted file mode 100644 index f4333808ed..0000000000 Binary files a/resources/profiles/Sovol/sovol_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv01pro_buildplate_model.stl b/resources/profiles/Sovol/sovol_sv01pro_buildplate_model.stl index 837cd8dc5a..9b18dc74b6 100644 Binary files a/resources/profiles/Sovol/sovol_sv01pro_buildplate_model.stl and b/resources/profiles/Sovol/sovol_sv01pro_buildplate_model.stl differ diff --git a/resources/profiles/Sovol/sovol_sv01pro_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv01pro_buildplate_texture.png deleted file mode 100644 index 5926ddf074..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv01pro_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv01pro_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv01pro_buildplate_texture.svg new file mode 100644 index 0000000000..0bf1b3847e --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv01pro_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv02_buildplate_model.stl b/resources/profiles/Sovol/sovol_sv02_buildplate_model.stl index 5c8575feb2..9b18dc74b6 100644 Binary files a/resources/profiles/Sovol/sovol_sv02_buildplate_model.stl and b/resources/profiles/Sovol/sovol_sv02_buildplate_model.stl differ diff --git a/resources/profiles/Sovol/sovol_sv02_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv02_buildplate_texture.png deleted file mode 100644 index 5926ddf074..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv02_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv02_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv02_buildplate_texture.svg new file mode 100644 index 0000000000..0bf1b3847e --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv02_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv05_buildplate_model.stl b/resources/profiles/Sovol/sovol_sv05_buildplate_model.stl index 254f7b8ebc..b0430b0b7d 100644 Binary files a/resources/profiles/Sovol/sovol_sv05_buildplate_model.stl and b/resources/profiles/Sovol/sovol_sv05_buildplate_model.stl differ diff --git a/resources/profiles/Sovol/sovol_sv05_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv05_buildplate_texture.png deleted file mode 100644 index bef64231af..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv05_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv05_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv05_buildplate_texture.svg new file mode 100644 index 0000000000..3efee6fd96 --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv05_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv06_ace_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv06_ace_buildplate_texture.png deleted file mode 100644 index 70a3df3484..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv06_ace_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv06_ace_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv06_ace_buildplate_texture.svg new file mode 100644 index 0000000000..0c237202b1 --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv06_ace_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv06_buildplate_model.stl b/resources/profiles/Sovol/sovol_sv06_buildplate_model.stl index 254f7b8ebc..b0430b0b7d 100644 Binary files a/resources/profiles/Sovol/sovol_sv06_buildplate_model.stl and b/resources/profiles/Sovol/sovol_sv06_buildplate_model.stl differ diff --git a/resources/profiles/Sovol/sovol_sv06_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv06_buildplate_texture.png deleted file mode 100644 index bef64231af..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv06_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv06_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv06_buildplate_texture.svg new file mode 100644 index 0000000000..3efee6fd96 --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv06_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_texture.png deleted file mode 100644 index 12035cf5a5..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_texture.svg new file mode 100644 index 0000000000..6af3e48bca --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv06plus_ace_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv06plus_buildplate_model.stl b/resources/profiles/Sovol/sovol_sv06plus_buildplate_model.stl index d6a101982d..218510bd72 100644 Binary files a/resources/profiles/Sovol/sovol_sv06plus_buildplate_model.stl and b/resources/profiles/Sovol/sovol_sv06plus_buildplate_model.stl differ diff --git a/resources/profiles/Sovol/sovol_sv06plus_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv06plus_buildplate_texture.png deleted file mode 100644 index de2a60c068..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv06plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv06plus_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv06plus_buildplate_texture.svg new file mode 100644 index 0000000000..084094d1ae --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv06plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv07_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv07_buildplate_texture.png deleted file mode 100644 index bef64231af..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv07_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv07_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv07_buildplate_texture.svg new file mode 100644 index 0000000000..aa68a3655a --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv07_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv07plus_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv07plus_buildplate_texture.png deleted file mode 100644 index bef64231af..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv07plus_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv07plus_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv07plus_buildplate_texture.svg new file mode 100644 index 0000000000..a1beed0295 --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv07plus_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv08_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv08_buildplate_texture.png deleted file mode 100644 index 69290b6069..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv08_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv08_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv08_buildplate_texture.svg new file mode 100644 index 0000000000..f79b42002d --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv08_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_sv08_max_buildplate_texture.png b/resources/profiles/Sovol/sovol_sv08_max_buildplate_texture.png deleted file mode 100644 index c178195877..0000000000 Binary files a/resources/profiles/Sovol/sovol_sv08_max_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_sv08_max_buildplate_texture.svg b/resources/profiles/Sovol/sovol_sv08_max_buildplate_texture.svg new file mode 100644 index 0000000000..2a610e9f74 --- /dev/null +++ b/resources/profiles/Sovol/sovol_sv08_max_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Sovol/sovol_zero_buildplate_texture.png b/resources/profiles/Sovol/sovol_zero_buildplate_texture.png deleted file mode 100644 index bde52447da..0000000000 Binary files a/resources/profiles/Sovol/sovol_zero_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Sovol/sovol_zero_buildplate_texture.svg b/resources/profiles/Sovol/sovol_zero_buildplate_texture.svg new file mode 100644 index 0000000000..0e2b7acac3 --- /dev/null +++ b/resources/profiles/Sovol/sovol_zero_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Tronxy.json b/resources/profiles/Tronxy.json index 5151078b22..9f7f49d3a6 100644 --- a/resources/profiles/Tronxy.json +++ b/resources/profiles/Tronxy.json @@ -1,6 +1,6 @@ { "name": "Tronxy", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Tronxy configurations", "machine_model_list": [ diff --git a/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png b/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png index 6cddf4612b..e3fa0d33ef 100644 Binary files a/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png and b/resources/profiles/Tronxy/Tronxy X5SA 400 Marlin Firmware_cover.png differ diff --git a/resources/profiles/Tronxy/machine/Tronxy X5SA 400 Marlin Firmware.json b/resources/profiles/Tronxy/machine/Tronxy X5SA 400 Marlin Firmware.json index 1491c476d1..1f6b98679f 100644 --- a/resources/profiles/Tronxy/machine/Tronxy X5SA 400 Marlin Firmware.json +++ b/resources/profiles/Tronxy/machine/Tronxy X5SA 400 Marlin Firmware.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "TronxyDesign", "bed_model": "", - "bed_texture": "tronxy_logo.png", + "bed_texture": "tronxy_logo.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PLA @System;Generic PLA-CF @System;Generic PETG @System;Generic TPU @System;Generic ASA @System;Generic PC @System;Generic PVA @System;Generic PA @System;Generic PA-CF @System" } diff --git a/resources/profiles/Tronxy/tronxy_logo.png b/resources/profiles/Tronxy/tronxy_logo.png deleted file mode 100644 index 2e07fd818f..0000000000 Binary files a/resources/profiles/Tronxy/tronxy_logo.png and /dev/null differ diff --git a/resources/profiles/Tronxy/tronxy_logo.svg b/resources/profiles/Tronxy/tronxy_logo.svg new file mode 100644 index 0000000000..adaf21bb52 --- /dev/null +++ b/resources/profiles/Tronxy/tronxy_logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Tronxy/tronxy_v0_logo.png b/resources/profiles/Tronxy/tronxy_v0_logo.png deleted file mode 100644 index 090fefa01a..0000000000 Binary files a/resources/profiles/Tronxy/tronxy_v0_logo.png and /dev/null differ diff --git a/resources/profiles/Voron/voron_logo.svg b/resources/profiles/Voron/voron_logo.svg index a8d6d69f1f..83dc1393bb 100644 --- a/resources/profiles/Voron/voron_logo.svg +++ b/resources/profiles/Voron/voron_logo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Voron/voron_switchwire_logo.svg b/resources/profiles/Voron/voron_switchwire_logo.svg index 18774fd21e..e3ccf27994 100644 --- a/resources/profiles/Voron/voron_switchwire_logo.svg +++ b/resources/profiles/Voron/voron_switchwire_logo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Voxelab.json b/resources/profiles/Voxelab.json index 1a31ca5a9e..0bf0ff33df 100644 --- a/resources/profiles/Voxelab.json +++ b/resources/profiles/Voxelab.json @@ -1,7 +1,7 @@ { "name": "Voxelab", "url": "", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Voxelab configurations", "machine_model_list": [ diff --git a/resources/profiles/Voxelab/Voxelab Aquila X2_cover.png b/resources/profiles/Voxelab/Voxelab Aquila X2_cover.png index 19810fc647..2643e20442 100644 Binary files a/resources/profiles/Voxelab/Voxelab Aquila X2_cover.png and b/resources/profiles/Voxelab/Voxelab Aquila X2_cover.png differ diff --git a/resources/profiles/Voxelab/machine/Voxelab Aquila X2.json b/resources/profiles/Voxelab/machine/Voxelab Aquila X2.json index 54aa932ccf..1c84c4611f 100644 --- a/resources/profiles/Voxelab/machine/Voxelab Aquila X2.json +++ b/resources/profiles/Voxelab/machine/Voxelab Aquila X2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Voxelab", "bed_model": "voxelab_aquilax2_buildplate_model.stl", - "bed_texture": "voxelab_aquilax2_buildplate_texture.png", + "bed_texture": "voxelab_aquilax2_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic ABS @System;Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Voxelab/voxelab_aquilax2_buildplate_texture.png b/resources/profiles/Voxelab/voxelab_aquilax2_buildplate_texture.png deleted file mode 100644 index 091ab56946..0000000000 Binary files a/resources/profiles/Voxelab/voxelab_aquilax2_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Voxelab/voxelab_aquilax2_buildplate_texture.svg b/resources/profiles/Voxelab/voxelab_aquilax2_buildplate_texture.svg new file mode 100644 index 0000000000..362f01df71 --- /dev/null +++ b/resources/profiles/Voxelab/voxelab_aquilax2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Vzbot/VzBot_PS_bed_235.svg b/resources/profiles/Vzbot/VzBot_PS_bed_235.svg index 483b77d151..deefe79cad 100644 --- a/resources/profiles/Vzbot/VzBot_PS_bed_235.svg +++ b/resources/profiles/Vzbot/VzBot_PS_bed_235.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/Vzbot/VzBot_PS_bed_330.svg b/resources/profiles/Vzbot/VzBot_PS_bed_330.svg index a50f1b8f2e..4a2ea2dd2a 100644 --- a/resources/profiles/Vzbot/VzBot_PS_bed_330.svg +++ b/resources/profiles/Vzbot/VzBot_PS_bed_330.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/resources/profiles/WEMAKE3D.json b/resources/profiles/WEMAKE3D.json index 0e38a52521..a265934921 100644 --- a/resources/profiles/WEMAKE3D.json +++ b/resources/profiles/WEMAKE3D.json @@ -1,6 +1,6 @@ { "name": "WEMAKE3D", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "WEMAKE3D configurations", "machine_model_list": [ diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_model.stl b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_model.stl index 2801809141..82aec3f42d 100644 Binary files a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_model.stl and b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_model.stl differ diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_texture.png b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_texture.png deleted file mode 100644 index 96e9f69a3f..0000000000 Binary files a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_texture.svg b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_texture.svg new file mode 100644 index 0000000000..5a23488a0a --- /dev/null +++ b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_cover.png b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_cover.png index 231757cc16..88f55aebd5 100644 Binary files a/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_cover.png and b/resources/profiles/WEMAKE3D/WEMAKE3D PhoenixProV1_cover.png differ diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_model.stl b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_model.stl index 6a89c4f640..1309cb9149 100644 Binary files a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_model.stl and b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_model.stl differ diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_texture.png b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_texture.png deleted file mode 100644 index b8fbb2b82d..0000000000 Binary files a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_texture.svg b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_texture.svg new file mode 100644 index 0000000000..d501f8eadb --- /dev/null +++ b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_cover.png b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_cover.png index a33152fab9..a60bd0610e 100644 Binary files a/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_cover.png and b/resources/profiles/WEMAKE3D/WEMAKE3D TinyBotV1_cover.png differ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1.json index 9e1aed68b7..7b07ee5745 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "WEMAKE3D", "bed_model": "WEMAKE3D PhoenixProV1_buildplate_model.stl", - "bed_texture": "WEMAKE3D PhoenixProV1_buildplate_texture.png", + "bed_texture": "WEMAKE3D PhoenixProV1_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1.json index 3a2123454a..8d6a6ece4d 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "WEMAKE3D", "bed_model": "WEMAKE3D TinyBotV1_buildplate_model.stl", - "bed_texture": "WEMAKE3D TinyBotV1_buildplate_texture.png", + "bed_texture": "WEMAKE3D TinyBotV1_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PETG @System;Generic PLA @System" } diff --git a/resources/profiles/Wanhao.json b/resources/profiles/Wanhao.json index 0d2008b9a5..8babf55f20 100644 --- a/resources/profiles/Wanhao.json +++ b/resources/profiles/Wanhao.json @@ -1,6 +1,6 @@ { "name": "Wanhao", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "0", "description": "Wanhao configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_model.stl b/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_model.stl new file mode 100644 index 0000000000..b6896ccc57 Binary files /dev/null and b/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_model.stl differ diff --git a/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_texture.png b/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_texture.png deleted file mode 100644 index 7e4e305ab7..0000000000 Binary files a/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_texture.svg b/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_texture.svg new file mode 100644 index 0000000000..4618bf1935 --- /dev/null +++ b/resources/profiles/Wanhao/Wanhao_D12-300_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Wanhao/machine/Wanhao D12-300.json b/resources/profiles/Wanhao/machine/Wanhao D12-300.json index 51164a2ac6..90d7328feb 100644 --- a/resources/profiles/Wanhao/machine/Wanhao D12-300.json +++ b/resources/profiles/Wanhao/machine/Wanhao D12-300.json @@ -6,8 +6,8 @@ "nozzle_diameter": "0.4", "machine_tech": "FFF", "family": "Wanhao", - "bed_model": "", - "bed_texture": "Wanhao_D12-300_buildplate_texture.png", + "bed_model": "Wanhao_D12-300_buildplate_model.stl", + "bed_texture": "Wanhao_D12-300_buildplate_texture.svg", "hotend_model": "Wanhao D12-300_hotend.stl", "default_materials": "Generic PLA @System;Generic PETG @System;Generic TPU @System;" } diff --git a/resources/profiles/WonderMaker/wm_buildplate_model.stl b/resources/profiles/WonderMaker/wm_buildplate_model.stl index 9c5497b190..bcefefdad8 100755 Binary files a/resources/profiles/WonderMaker/wm_buildplate_model.stl and b/resources/profiles/WonderMaker/wm_buildplate_model.stl differ diff --git a/resources/profiles/Z-Bolt.json b/resources/profiles/Z-Bolt.json index b403d480a3..75292a6d8d 100644 --- a/resources/profiles/Z-Bolt.json +++ b/resources/profiles/Z-Bolt.json @@ -1,7 +1,7 @@ { "name": "Z-Bolt", "url": "", - "version": "02.03.02.50", + "version": "02.03.02.70", "force_update": "0", "description": "Z-Bolt configurations", "machine_model_list": [ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.png b/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.png deleted file mode 100644 index d2db60c6c3..0000000000 Binary files a/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.svg b/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.svg new file mode 100644 index 0000000000..9b7fc4dab8 --- /dev/null +++ b/resources/profiles/Z-Bolt/Z-Bolt_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json index a03f2bdd54..261e2c0ae6 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S1000_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt", "thumbnails": "144x144/PNG,900x900/PNG", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json index 47d8e12e29..b56abc143c 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S1000_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt", "thumbnails": "144x144/PNG,900x900/PNG", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json index 786c25384c..74fa3d418a 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S300_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt" } diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json index 5327dc72a4..3eeabf1506 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S300_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt" } diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json index 1e238efd52..f5624b982c 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S400_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt" } diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json index fe896a426d..682aed2e71 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S400_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt" } diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json index f1aa3ea6ad..21681ee61f 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S600_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt" } diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json index 404b443746..1d533080ea 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S600_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt" } diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json index ac024b6edd..1e307832a5 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "Z-Bolt", "bed_model": "Z-Bolt_S800_buildplate_model.stl", - "bed_texture": "Z-Bolt_buildplate_texture.png", + "bed_texture": "Z-Bolt_buildplate_texture.svg", "hotend_model": "", "default_materials": "Generic PLA @Z-Bolt;Generic ABS @Z-Bolt;Generic PETG @Z-Bolt;Generic PA @Z-Bolt;Generic ABS HT @Z-Bolt", "thumbnails": "144x144/PNG,900x900/PNG", diff --git a/resources/profiles/iQ.json b/resources/profiles/iQ.json index ae1d362031..c0b2570558 100644 --- a/resources/profiles/iQ.json +++ b/resources/profiles/iQ.json @@ -1,6 +1,6 @@ { "name": "innovatiQ", - "version": "02.03.02.60", + "version": "02.03.02.70", "force_update": "1", "description": "innovatiQ configuration", "machine_model_list": [ diff --git a/resources/profiles/iQ/TiQ2_texture.png b/resources/profiles/iQ/TiQ2_texture.png deleted file mode 100644 index 6881e88959..0000000000 Binary files a/resources/profiles/iQ/TiQ2_texture.png and /dev/null differ diff --git a/resources/profiles/iQ/TiQ2_texture.svg b/resources/profiles/iQ/TiQ2_texture.svg new file mode 100644 index 0000000000..eb4c36c68d --- /dev/null +++ b/resources/profiles/iQ/TiQ2_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/iQ/TiQ8_texture.png b/resources/profiles/iQ/TiQ8_texture.png deleted file mode 100644 index 2a45ad00c7..0000000000 Binary files a/resources/profiles/iQ/TiQ8_texture.png and /dev/null differ diff --git a/resources/profiles/iQ/TiQ8_texture.svg b/resources/profiles/iQ/TiQ8_texture.svg new file mode 100644 index 0000000000..e54cfe4323 --- /dev/null +++ b/resources/profiles/iQ/TiQ8_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/iQ/machine/TiQ2.json b/resources/profiles/iQ/machine/TiQ2.json index 405fef0fbe..36c04edf6e 100644 --- a/resources/profiles/iQ/machine/TiQ2.json +++ b/resources/profiles/iQ/machine/TiQ2.json @@ -6,6 +6,6 @@ "machine_tech": "FFF", "family": "TiQ", "bed_model": "TiQ2.stl", - "bed_texture": "TiQ2_texture.png", + "bed_texture": "TiQ2_texture.svg", "default_materials": "Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle" } diff --git a/resources/profiles/iQ/machine/TiQ8.json b/resources/profiles/iQ/machine/TiQ8.json index 4f1e671702..21d9c23413 100644 --- a/resources/profiles/iQ/machine/TiQ8.json +++ b/resources/profiles/iQ/machine/TiQ8.json @@ -6,6 +6,6 @@ "machine_tech": "FFF", "family": "TiQ", "bed_model": "TiQ8.stl", - "bed_texture": "TiQ8_texture.png", + "bed_texture": "TiQ8_texture.svg", "default_materials": "Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle" } diff --git a/resources/profiles/re3D.json b/resources/profiles/re3D.json index 46194fbfd3..6cc1e1ae87 100644 --- a/resources/profiles/re3D.json +++ b/resources/profiles/re3D.json @@ -1,6 +1,6 @@ { "name": "re3D", - "version": "02.01.01.00", + "version": "02.01.01.10", "force_update": "0", "description": "re3D configurations", "machine_model_list": [ diff --git a/resources/profiles/re3D/GB-HOTEND.stl b/resources/profiles/re3D/GB-HOTEND.stl index b312be0938..8ddadfd923 100644 Binary files a/resources/profiles/re3D/GB-HOTEND.stl and b/resources/profiles/re3D/GB-HOTEND.stl differ diff --git a/resources/profiles/re3D/GBX-HOTEND-COVER.stl b/resources/profiles/re3D/GBX-HOTEND-COVER.stl deleted file mode 100644 index def9eb4570..0000000000 Binary files a/resources/profiles/re3D/GBX-HOTEND-COVER.stl and /dev/null differ diff --git a/resources/profiles/re3D/GBX-HOTEND-NOZZLE.stl b/resources/profiles/re3D/GBX-HOTEND-NOZZLE.stl deleted file mode 100644 index 3518924955..0000000000 Binary files a/resources/profiles/re3D/GBX-HOTEND-NOZZLE.stl and /dev/null differ diff --git a/resources/profiles/re3D/GBX-HOTEND.stl b/resources/profiles/re3D/GBX-HOTEND.stl index 5d1ab7c9ce..9e24cf718d 100644 Binary files a/resources/profiles/re3D/GBX-HOTEND.stl and b/resources/profiles/re3D/GBX-HOTEND.stl differ diff --git a/resources/profiles/re3D/Gigabot 4_buildplate_texture.png b/resources/profiles/re3D/Gigabot 4_buildplate_texture.png deleted file mode 100644 index f4affabe58..0000000000 Binary files a/resources/profiles/re3D/Gigabot 4_buildplate_texture.png and /dev/null differ diff --git a/resources/profiles/re3D/filament/re3D rPP.json b/resources/profiles/re3D/filament/re3D rPP.json index 673dd9fffe..420b795366 100644 --- a/resources/profiles/re3D/filament/re3D rPP.json +++ b/resources/profiles/re3D/filament/re3D rPP.json @@ -6,7 +6,9 @@ "from": "system", "instantiation": "true", "inherits": "fdm_filament_pet", - "filament_type": "PP", + "filament_type": [ + "PP" + ], "nozzle_temperature_initial_layer": [ "185" ], diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT.json b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT.json index 7e5d535623..f14de38eb2 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "re3D", "bed_model": "", - "bed_texture": "Gigabot 4_buildplate_texture.png", + "bed_texture": "re3D Gigabot 4 XLT_buildplate_texture.svg", "hotend_model": "GB-HOTEND.stl", "default_materials": "re3D PLA;re3D PETG;re3D PC;" } diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4.json b/resources/profiles/re3D/machine/re3D Gigabot 4.json index 420119fc27..53abd9b459 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "re3D", "bed_model": "", - "bed_texture": "Gigabot 4_buildplate_texture.png", + "bed_texture": "re3D Gigabot 4_buildplate_texture.svg", "hotend_model": "GB-HOTEND.stl", "default_materials": "re3D PLA;re3D PETG;re3D PC;" } diff --git a/resources/profiles/re3D/machine/re3D Gigabot X2 XLT.json b/resources/profiles/re3D/machine/re3D Gigabot X2 XLT.json index bb0324f427..c208bb1ab1 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot X2 XLT.json +++ b/resources/profiles/re3D/machine/re3D Gigabot X2 XLT.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "re3D", "bed_model": "", - "bed_texture": "Gigabot 4_buildplate_texture.png", + "bed_texture": "re3D Gigabot X2 XLT_buildplate_texture.svg", "hotend_model": "GBX-HOTEND.stl", "default_materials": "re3D rPP;re3D Greengate rPETG;" } diff --git a/resources/profiles/re3D/machine/re3D Gigabot X2.json b/resources/profiles/re3D/machine/re3D Gigabot X2.json index 53a5cd810c..d21307184a 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot X2.json +++ b/resources/profiles/re3D/machine/re3D Gigabot X2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "re3D", "bed_model": "", - "bed_texture": "Gigabot 4_buildplate_texture.png", - "hotend_model": "GBX-HOTEND-NOZZLE.stl", + "bed_texture": "re3D Gigabot X2_buildplate_texture.svg", + "hotend_model": "GBX-HOTEND.stl", "default_materials": "re3D rPP;re3D Greengate rPETG;" } diff --git a/resources/profiles/re3D/machine/re3D Terabot 4.json b/resources/profiles/re3D/machine/re3D Terabot 4.json index e9450b8a79..294a3bbf8b 100644 --- a/resources/profiles/re3D/machine/re3D Terabot 4.json +++ b/resources/profiles/re3D/machine/re3D Terabot 4.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "re3D", "bed_model": "", - "bed_texture": "Gigabot 4_buildplate_texture.png", + "bed_texture": "re3D Terabot 4_buildplate_texture.svg", "hotend_model": "GB-HOTEND.stl", "default_materials": "re3D PLA;re3D PETG;re3D PC;" } diff --git a/resources/profiles/re3D/machine/re3D Terabot X2.json b/resources/profiles/re3D/machine/re3D Terabot X2.json index 4490ea8a7e..6ae22cc2e1 100644 --- a/resources/profiles/re3D/machine/re3D Terabot X2.json +++ b/resources/profiles/re3D/machine/re3D Terabot X2.json @@ -6,7 +6,7 @@ "machine_tech": "FFF", "family": "re3D", "bed_model": "", - "bed_texture": "Gigabot 4_buildplate_texture.png", + "bed_texture": "re3D Terabot X2_buildplate_texture.svg", "hotend_model": "GBX-HOTEND.stl", "default_materials": "re3D rPP;re3D Greengate rPETG;" } diff --git a/resources/profiles/re3D/re3D Gigabot 4 XLT_buildplate_texture.svg b/resources/profiles/re3D/re3D Gigabot 4 XLT_buildplate_texture.svg new file mode 100644 index 0000000000..c05d5387bf --- /dev/null +++ b/resources/profiles/re3D/re3D Gigabot 4 XLT_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/re3D/re3D Gigabot 4 XLT_cover.png b/resources/profiles/re3D/re3D Gigabot 4 XLT_cover.png index 4e2e58d890..3ae924b834 100644 Binary files a/resources/profiles/re3D/re3D Gigabot 4 XLT_cover.png and b/resources/profiles/re3D/re3D Gigabot 4 XLT_cover.png differ diff --git a/resources/profiles/re3D/re3D Gigabot 4_buildplate_texture.svg b/resources/profiles/re3D/re3D Gigabot 4_buildplate_texture.svg new file mode 100644 index 0000000000..002115ed22 --- /dev/null +++ b/resources/profiles/re3D/re3D Gigabot 4_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/re3D/re3D Gigabot 4_cover.png b/resources/profiles/re3D/re3D Gigabot 4_cover.png index 59eb8b3657..bf6b83c108 100644 Binary files a/resources/profiles/re3D/re3D Gigabot 4_cover.png and b/resources/profiles/re3D/re3D Gigabot 4_cover.png differ diff --git a/resources/profiles/re3D/re3D Gigabot X2 XLT_buildplate_texture.svg b/resources/profiles/re3D/re3D Gigabot X2 XLT_buildplate_texture.svg new file mode 100644 index 0000000000..88b7a52f2b --- /dev/null +++ b/resources/profiles/re3D/re3D Gigabot X2 XLT_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/re3D/re3D Gigabot X2 XLT_cover.png b/resources/profiles/re3D/re3D Gigabot X2 XLT_cover.png index b7a3f5853a..20353de0d8 100644 Binary files a/resources/profiles/re3D/re3D Gigabot X2 XLT_cover.png and b/resources/profiles/re3D/re3D Gigabot X2 XLT_cover.png differ diff --git a/resources/profiles/re3D/re3D Gigabot X2_buildplate_texture.svg b/resources/profiles/re3D/re3D Gigabot X2_buildplate_texture.svg new file mode 100644 index 0000000000..a66159804d --- /dev/null +++ b/resources/profiles/re3D/re3D Gigabot X2_buildplate_texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/profiles/re3D/re3D Gigabot X2_cover.png b/resources/profiles/re3D/re3D Gigabot X2_cover.png index d2a433ff9a..6f9f0fa8e8 100644 Binary files a/resources/profiles/re3D/re3D Gigabot X2_cover.png and b/resources/profiles/re3D/re3D Gigabot X2_cover.png differ diff --git a/resources/profiles/re3D/re3D Terabot 4_buildplate_texture.svg b/resources/profiles/re3D/re3D Terabot 4_buildplate_texture.svg new file mode 100644 index 0000000000..4710e83645 --- /dev/null +++ b/resources/profiles/re3D/re3D Terabot 4_buildplate_texture.svg @@ -0,0 +1 @@ +Terabot 4 915x915 \ No newline at end of file diff --git a/resources/profiles/re3D/re3D Terabot 4_cover.png b/resources/profiles/re3D/re3D Terabot 4_cover.png index 671f34359c..160d118e7f 100644 Binary files a/resources/profiles/re3D/re3D Terabot 4_cover.png and b/resources/profiles/re3D/re3D Terabot 4_cover.png differ diff --git a/resources/profiles/re3D/re3D Terabot X2_buildplate_texture.svg b/resources/profiles/re3D/re3D Terabot X2_buildplate_texture.svg new file mode 100644 index 0000000000..c94adcfa3e --- /dev/null +++ b/resources/profiles/re3D/re3D Terabot X2_buildplate_texture.svg @@ -0,0 +1 @@ +Terabot X2 879x908 \ No newline at end of file diff --git a/resources/profiles/re3D/re3D Terabot X2_cover.png b/resources/profiles/re3D/re3D Terabot X2_cover.png index 2f80773248..374d4fa185 100644 Binary files a/resources/profiles/re3D/re3D Terabot X2_cover.png and b/resources/profiles/re3D/re3D Terabot X2_cover.png differ diff --git a/resources/web/data/text.js b/resources/web/data/text.js index e5d31d252c..77062dc00a 100644 --- a/resources/web/data/text.js +++ b/resources/web/data/text.js @@ -111,6 +111,7 @@ var LangText = { orca3: "Stealth Mode", orca4: "This stops the transmission of data to Bambu's cloud services. Users who don't use BBL machines or use LAN mode only can safely turn on this function.", orca5: "Enable Stealth Mode.", + orca6: "Bambu Cloud", }, ca_ES: { t1: "Benvingut a Orca Slicer", @@ -220,6 +221,7 @@ var LangText = { t113: "Pots canviar la teva elecció en les preferències en qualsevol moment.", orca1: "Editar Informació del Projecte", orca2: "no hi ha informació del model", + orca6: "Bambu Cloud", }, es_ES: { t1: "Bienvenido a Orca Slicer", @@ -333,6 +335,7 @@ var LangText = { orca3: "Modo sigiloso", orca4: "Esta función detiene la transmisión de datos a los servicios en la nube de Bambu. Los usuarios que no utilicen máquinas BBL o que solo usen el modo LAN pueden activar esta función con seguridad.", orca5: "Activar modo sigiloso.", + orca6: "Bambu Cloud", }, it_IT: { t1: "Benvenuti in OrcaSlicer", @@ -445,6 +448,7 @@ var LangText = { orca3: "Modalità invisibile", orca4: "Con questa modalità, la trasmissione dei dati ai servizi cloud di Bambu sarà interrotta. Gli utenti che non utilizzano macchine BBL o che usano solo la modalità LAN possono attivare questa funzione in modo sicuro.", orca5: "Abilita la modalità invisibile.", + orca6: "Bambu Cloud", }, de_DE: { t1: "Willkommen im Orca Slicer", @@ -548,6 +552,7 @@ var LangText = { t126: "Laden……", orca1: "Edit Project Info", orca2: "no model information", + orca6: "Bambu Cloud", }, cs_CZ: { t1: "Vítejte v Orca Slicer", @@ -651,6 +656,7 @@ var LangText = { t126: "Načtení probíhá……", orca1: "Edit Project Info", orca2: "no model information", + orca6: "Bambu Cloud", }, fr_FR: { t1: "Bienvenue sur Orca Slicer", @@ -773,6 +779,7 @@ var LangText = { wk14: "Par rapport au format STL, le format STEP apporte des informations plus efficaces. Grâce à la grande précision de ce format, de nombreuses trajectoires d'extrusion peuvent être générées sous forme d'arcs. Il inclut également la relation d'assemblage de chaque pièce d'un modèle, qui peut être utilisée pour restaurer la vue d'assemblage après la coupe d'un modèle.", wk15: "Texte 3D", wk16: "Avec l'outil Texte 3D, les utilisateurs peuvent facilement créer diverses formes de texte 3D dans le projet, ce qui rend le modèle plus personnalisé. Orca Slicer fournit des dizaines de polices et prend en charge les styles gras et italique pour donner au texte une plus grande flexibilité.", + orca6: "Bambu Cloud", }, zh_CN: { t1: "欢迎使用Orca Slicer", @@ -899,6 +906,7 @@ var LangText = { wk16: "使用3D文本工具,用户可以轻松地在项目中创建各种3D文本形状,使模型更加个性化。Orca Slicer提供了数十种字体,并支持粗体和斜体样式,使文本具有更大的灵活性。", orca1: "编辑项目信息", orca2: "该模型没有相关信息", + orca6: "Bambu Cloud", }, zh_TW: { t1: "歡迎使用 Orca Slicer", @@ -1004,6 +1012,7 @@ var LangText = { wk16: "使用3D文字工具,使用者可以輕鬆地在項目中建立各種3D文字形狀,使模型更加個性化。Orca Slicer 提供了數十種字體,並支援粗體和斜體樣式,使文字具有更大的靈活性。", orca1: "編輯專案資訊", orca2: "沒有模型相關資訊", + orca6: "Bambu Cloud", }, ru_RU: { t1: "Приветствуем в Orca Slicer!", @@ -1116,7 +1125,8 @@ var LangText = { orca2: "Информация отсутствует", orca3: "Режим конфиденциальности", orca4: "Это остановит передачу данных в облачные сервисы Bambu. Помешает только владельцам Bambu Lab, не использующим режим «Только LAN».", - orca5: "Включить режим конфиденциальности" + orca5: "Включить режим конфиденциальности", + orca6: "Bambu Cloud", }, ko_KR: { t1: "Orca Slicer에 오신 것을 환영합니다", @@ -1209,6 +1219,7 @@ var LangText = { t126: "로딩 중……", orca1: "Edit Project Info", orca2: "no model information", + orca6: "Bambu Cloud", }, tr_TR: { t1: "Orca Slicer'a hoş geldiniz", @@ -1322,6 +1333,7 @@ var LangText = { orca3: "Gizli Mod", orca4: "Bu, Bambu'nun bulut hizmetlerine veri iletimini durdurur. BBL makinelerini kullanmayan veya yalnızca LAN modunu kullanan kullanıcılar bu işlevi güvenle açabilir.", orca5: "Gizli Modu etkinleştirin.", + orca6: "Bambu Cloud", }, pl_PL: { t1: "Witamy w Orca Slicer", @@ -1435,6 +1447,7 @@ var LangText = { orca3: "Tryb «Niewidzialny»", orca4: "To wyłączy przesyłanie danych do usług chmurowych Bambu. Użytkownicy, którzy nie korzystają z maszyn BBL lub używają tylko trybu LAN, mogą bez obaw włączyć tę opcję.", orca5: "Włącz tryb «Niewidzialny»", + orca6: "Bambu Cloud", }, pt_BR: { t1: "Bem-vindo ao Orca Slicer", @@ -1548,6 +1561,7 @@ var LangText = { orca3: "Modo Furtivo", orca4: "Isso interrompe a transmissão de dados para os serviços de nuvem da Bambu. Usuários que não usam máquinas BBL ou usam somente o modo LAN podem ativar essa função com segurança.", orca5: "Habilita Modo Furtivo.", + orca6: "Bambu Cloud", }, lt_LT: { t1: "Pasisveikinkite su Orca Slicer", @@ -1660,6 +1674,7 @@ var LangText = { orca3: "Slaptas režimas", orca4: "Tai sustabdo duomenų perdavimą į Bambu debesijos paslaugas. Vartotojai, kurie nenaudoja BBL mašinų arba naudoja tik LAN režimą, gali drąsiai įjungti šią funkciją.", orca5: "Įjungti slaptą režimą.", + orca6: "Bambu Cloud", }, }; diff --git a/resources/web/dialog/ExportPresetDialog/index.html b/resources/web/dialog/ExportPresetDialog/index.html new file mode 100644 index 0000000000..e46147f236 --- /dev/null +++ b/resources/web/dialog/ExportPresetDialog/index.html @@ -0,0 +1,75 @@ + + + + + +Export Presets + + + + + + + + + + + + + + +
+
+
+
+ + printer +
+
+
+
+ +
+
No items
+
+
+ +
+
+
+ + filament +
+
+
+
+ +
+
No items
+
+
+ +
+
+
+ + presets +
+
+
+
+ +
+
No items
+
+
+
+ +
+
Export to OrcaCloud
+
Export to folder
+
Close
+
+ + + diff --git a/resources/web/dialog/ExportPresetDialog/index.js b/resources/web/dialog/ExportPresetDialog/index.js new file mode 100644 index 0000000000..e5c172e351 --- /dev/null +++ b/resources/web/dialog/ExportPresetDialog/index.js @@ -0,0 +1,374 @@ +var g_profile = { + machines: [], + filaments: [], + presets: [] +}; + +var g_search = { + machine: "", + filament: "", + preset: "" +}; + +function OnInit() +{ + if (typeof TranslatePage === "function") + TranslatePage(); + + InstallInputSafeKeydown(); + BindSearchInputs(); + BindClearIcons(); + BindBottomButtons(); + + // Always load demo data first so the page works without C++ backend. + // LoadDemoProfile(); + RequestProfile(); +} + +function InstallInputSafeKeydown() +{ + // common.js blocks all key events globally; allow typing in text inputs. + document.onkeydown = function (event) { + var e = event || window.event || arguments.callee.caller.arguments[0]; + var target = e && e.target ? e.target : null; + var tag = target && target.tagName ? String(target.tagName).toUpperCase() : ""; + var type = target && target.type ? String(target.type).toLowerCase() : ""; + + var editable = + !!(target && target.isContentEditable) || + tag === "TEXTAREA" || + (tag === "INPUT" && type !== "checkbox" && type !== "radio" && type !== "button" && type !== "submit"); + + if (editable) + return true; + + if (e && e.keyCode === 27 && typeof ClosePage === "function") + ClosePage(); + + if (window.event) { + try { e.keyCode = 0; } catch (err) { } + e.returnValue = false; + } + + if (e && typeof e.preventDefault === "function") + e.preventDefault(); + + return false; + }; +} + +function RequestProfile() +{ + SendMessage("request_export_preset_profile", {}); +} + +function HandleStudio(pVal) +{ + var payload = (typeof pVal === "string") ? SafeJsonParse(pVal) : pVal; + if (!payload || typeof payload !== "object") + return; + + var cmd = String(payload.command || ""); + if (cmd === "response_export_preset_profile" ) { + ApplyProfile(payload.data); + } +} + +function ApplyProfile(profile) +{ + + g_profile.machines = BuildNameRows(profile.printers); + g_profile.filaments = BuildNameRows(profile.filaments); + g_profile.presets = BuildNameRows(profile.process); + + RenderColumn("MachineList", g_profile.machines, "mode", "MachineClick"); + RenderColumn("FilatypeList", g_profile.filaments, "filatype", "FilaClick"); + RenderColumn("PresetList", g_profile.presets, "preset", "PresetClick"); + + ApplyColumnSearch("MachineList", g_search.machine); + ApplyColumnSearch("FilatypeList", g_search.filament); + ApplyColumnSearch("PresetList", g_search.preset); +} + +function BuildNameRows(names) +{ + var src = Array.isArray(names) ? names : []; + var out = []; + + for (var n = 0; n < src.length; n++) { + var row = src[n]; + if (row === undefined || row === null) + continue; + + var name = String(row); + out.push({ id: name, label: name, checked: false }); + } + + return out; +} + +function RenderColumn(listId, items, attrName, onChangeFn) +{ + var root = $("#" + listId + " .CValues"); + if (!root.length) + return; + + root.find("label:gt(0)").remove(); + + var html = ""; + for (var n = 0; n < items.length; n++) { + var one = items[n]; + html += ''; + } + + root.append(html); + SyncMasterCheckbox(listId); + ToggleNoItems(listId, items.length === 0); +} + +function ChooseAllMachine() +{ + var checked = !!$("#MachineList .CValues input:first").prop("checked"); + $("#MachineList .CValues input:gt(0)").prop("checked", checked); + SyncListFromDom("MachineList", g_profile.machines); +} + +function MachineClick() +{ + SyncMasterCheckbox("MachineList"); + SyncListFromDom("MachineList", g_profile.machines); +} + +function ChooseAllFilament() +{ + var checked = !!$("#FilatypeList .CValues input:first").prop("checked"); + $("#FilatypeList .CValues input:gt(0)").prop("checked", checked); + SyncListFromDom("FilatypeList", g_profile.filaments); +} + +function FilaClick() +{ + SyncMasterCheckbox("FilatypeList"); + SyncListFromDom("FilatypeList", g_profile.filaments); +} + +function ChooseAllPreset() +{ + var checked = !!$("#PresetList .CValues input:first").prop("checked"); + $("#PresetList .CValues input:gt(0)").prop("checked", checked); + SyncListFromDom("PresetList", g_profile.presets); +} + +function PresetClick() +{ + SyncMasterCheckbox("PresetList"); + SyncListFromDom("PresetList", g_profile.presets); +} + +function SyncMasterCheckbox(listId) +{ + var all = $("#" + listId + " .CValues input:gt(0)"); + var master = $("#" + listId + " .CValues input:first"); + + if (!all.length) { + master.prop("checked", false); + return; + } + + master.prop("checked", all.length === all.filter(":checked").length); +} + +function SyncListFromDom(listId, store) +{ + var map = {}; + for (var n = 0; n < store.length; n++) + map[store[n].id] = store[n]; + + $("#" + listId + " .CValues input:gt(0)").each(function () { + var id = String($(this).attr("data-key") || ""); + if (map[id]) + map[id].checked = !!$(this).prop("checked"); + }); +} + +function BindSearchInputs() +{ + var inputs = document.querySelectorAll(".cbr-search-bar"); + + if (inputs.length > 0) { + inputs[0].addEventListener("input", function () { + g_search.machine = String(this.value || "").toLowerCase(); + ApplyColumnSearch("MachineList", g_search.machine); + }); + } + + if (inputs.length > 1) { + inputs[1].addEventListener("input", function () { + g_search.filament = String(this.value || "").toLowerCase(); + ApplyColumnSearch("FilatypeList", g_search.filament); + }); + } + + if (inputs.length > 2) { + inputs[2].addEventListener("input", function () { + g_search.preset = String(this.value || "").toLowerCase(); + ApplyColumnSearch("PresetList", g_search.preset); + }); + } +} + +function ApplyColumnSearch(listId, query) +{ + var rows = $("#" + listId + " .CValues label:gt(0)"); + var visibleCount = 0; + + rows.each(function () { + var row = $(this); + var text = String(row.text() || "").toLowerCase(); + var key = String(row.find("input").attr("data-key") || "").toLowerCase(); + + if (!query || text.indexOf(query) >= 0 || key.indexOf(query) >= 0) { + row.show(); + visibleCount++; + } + else { + row.hide(); + } + }); + + ToggleNoItems(listId, visibleCount === 0); +} + +function ToggleNoItems(listId, show) +{ + var node = $("#" + listId + " .cbr-no-items"); + if (!node.length) + return; + + if (show) + node.addClass("show"); + else + node.removeClass("show"); +} + +function BindClearIcons() +{ + var icons = document.querySelectorAll(".clear-icon"); + + for (var n = 0; n < icons.length; n++) { + icons[n].addEventListener("click", function () { + var parent = this.parentElement; + if (!parent) + return; + + var input = parent.querySelector("input[type='text']"); + if (!input) + return; + + input.value = ""; + input.dispatchEvent(new Event("input", { bubbles: true })); + input.focus(); + }); + } +} + +function BindBottomButtons() +{ + var backBtn = document.getElementById("back_btn"); + var exportCloud = document.getElementById("export_cloud_btn") + var exportLocal = document.getElementById("export_local_btn"); + var closeBtn = document.getElementById("close_btn"); + + backBtn?.addEventListener("click", function () { + SendMessage("navigate_back", {}); + }); + + + exportLocal?.addEventListener("click", function () { + SendMessage("export_local", BuildResultPayload()); + }); + + + closeBtn?.addEventListener("click", () => { + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "close_page" + }; + SendWXMessage(JSON.stringify(tSend)); + }); +} + +function BuildResultPayload() +{ + return { + machines: g_profile.machines.filter(function (x) { return x.checked; }).map(function (x) { return x.id; }), + filaments: g_profile.filaments.filter(function (x) { return x.checked; }).map(function (x) { return x.id; }), + presets: g_profile.presets.filter(function (x) { return x.checked; }).map(function (x) { return x.id; }) + }; +} + +function LoadDemoProfile() +{ + ApplyProfile({ + machines: [ + { id: "printer_x1c_04", name: "X1 Carbon 0.4 nozzle", selected: 1 }, + { id: "printer_p1s_04", name: "P1S 0.4 nozzle", selected: 1 }, + { id: "printer_a1_04", name: "A1 0.4 nozzle", selected: 0 }, + { id: "printer_prusa_mk4_04", name: "Prusa MK4 0.4 nozzle", selected: 1 } + ], + filaments: [ + { id: "filament_generic_pla", name: "Generic PLA", selected: 1 }, + { id: "filament_generic_petg", name: "Generic PETG", selected: 1 }, + { id: "filament_bambu_abs", name: "Bambu ABS", selected: 0 }, + { id: "filament_esun_pla_plus", name: "eSUN PLA+", selected: 1 } + ], + presets: [ + { id: "preset_quality_020", name: "Quality 0.20mm", selected: 1 }, + { id: "preset_quality_012", name: "Quality 0.12mm", selected: 0 }, + { id: "preset_speed_024", name: "Speed 0.24mm", selected: 1 }, + { id: "preset_draft_028", name: "Draft 0.28mm", selected: 0 } + ] + }); +} + +function SendMessage(command, data) +{ + var msg = {}; + msg.sequence_id = Math.round(new Date() / 1000); + msg.command = command; + if (data && typeof data === "object") + msg.data = data; + + if (typeof SendWXMessage === "function") + SendWXMessage(JSON.stringify(msg)); +} + +function SafeJsonParse(str) +{ + try { + return JSON.parse(str); + } + catch (err) { + return null; + } +} + +function EscapeHtml(str) +{ + return String(str) + .replace(/&/g, "&") + .replace(//g, ">") + .replace(/\"/g, """) + .replace(/'/g, "'"); +} + +function EscapeAttr(str) +{ + return EscapeHtml(str); +} diff --git a/resources/web/dialog/ExportPresetDialog/styles.css b/resources/web/dialog/ExportPresetDialog/styles.css new file mode 100644 index 0000000000..fd4d14946b --- /dev/null +++ b/resources/web/dialog/ExportPresetDialog/styles.css @@ -0,0 +1,191 @@ +:root { + --cbr-border-color: #d2d2d7; + --cbr-header-bg: #f6f7f9; + --cbr-panel-bg: #ffffff; + --cbr-input-bg: #ffffff; + --cbr-input-focus-bg: #f2f8f7; + --cbr-label-color: #7b7b84; + --cbr-icon-color: #75757f; +} + +@media (prefers-color-scheme: dark) { + :root { + --cbr-border-color: #4a4a51; + --cbr-header-bg: #2f2f34; + --cbr-panel-bg: #2d2d31; + --cbr-input-bg: #2d2d31; + --cbr-input-focus-bg: #3b3b41; + --cbr-label-color: #b9b9bc; + --cbr-icon-color: #b9b9bc; + } +} + +.cbr-browser-container { + flex: 1 1 auto; + min-height: 0; + margin: 10px 15px 0; + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + grid-template-rows: minmax(0, 1fr); + border: 1px solid var(--cbr-border-color); + background: var(--cbr-panel-bg); + box-sizing: border-box; +} + +.cbr-column { + min-width: 0; + min-height: 0; + display: flex; + flex-direction: column; + overflow: hidden; +} + +.cbr-column:not(:last-child) { + border-right: 1px solid var(--cbr-border-color); +} + +.cbr-column-title-container { + position: relative; + display: flex; + align-items: center; + min-height: 36px; + padding: 3px 6px; + background: var(--cbr-header-bg); + border-bottom: 1px solid var(--cbr-border-color); +} + +.cbr-search-bar { + width: 100%; + min-width: 0; + box-sizing: border-box; + font-size: 14px; + line-height: 22px; + padding: 2px 26px 2px 26px; + border: 1px solid transparent; + border-radius: 4px; + background: var(--cbr-input-bg); +} + +.cbr-search-bar:hover, +.cbr-search-bar:focus { + border-color: var(--main-color); + outline: none; +} + +.cbr-search-bar:focus { + background: var(--cbr-input-focus-bg); +} + +.cbr-search-placeholder { + position: absolute; + left: 33px; + top: 50%; + transform: translateY(-50%); + font-size: 14px; + line-height: 20px; + color: var(--cbr-label-color); + pointer-events: none; +} + +.cbr-search-bar:not(:placeholder-shown) + .cbr-search-placeholder { + opacity: 0; +} + +.search-icon, +.clear-icon { + position: absolute; + top: 50%; + transform: translateY(-50%); + width: 16px; + height: 16px; + display: flex; + align-items: center; + justify-content: center; + color: var(--cbr-icon-color); + line-height: 1; +} + +.search-icon { + left: 11px; + pointer-events: none; +} + +.search-icon::before { + content: ""; + width: 9px; + height: 9px; + box-sizing: border-box; + border: 1.8px solid currentColor; + border-radius: 50%; +} + +.search-icon::after { + content: ""; + position: absolute; + width: 5px; + height: 1.8px; + background: currentColor; + transform: rotate(45deg); + right: 0; + bottom: 2px; +} + +.clear-icon { + right: 11px; + cursor: pointer; + display: none; +} + +.clear-icon::before { + content: ""; + position: absolute; + width: 10px; + height: 1.8px; + background: currentColor; + transform: rotate(45deg); +} + +.clear-icon::after { + content: ""; + position: absolute; + width: 10px; + height: 1.8px; + background: currentColor; + transform: rotate(-45deg); +} + +.cbr-search-bar:not(:placeholder-shown) ~ .clear-icon { + display: flex; +} + +.cbr-content { + min-height: 0; + overflow-y: auto; + padding: 4px 8px; +} + +.cbr-column .CValues { + display: grid; +} + +.CValues label { + margin: 0 !important; + padding: 1px 0; +} + +.cbr-content .cbr-no-items { + display: none; + color: var(--cbr-label-color); + font-size: 12px; + padding-top: 6px; +} + +.cbr-content .cbr-no-items.show { + display: block; +} + +#AcceptArea { + border-top: 1px solid var(--cbr-border-color); +} + + diff --git a/resources/web/dialog/PresetBundleDialog/index.html b/resources/web/dialog/PresetBundleDialog/index.html new file mode 100644 index 0000000000..db0b45eeb1 --- /dev/null +++ b/resources/web/dialog/PresetBundleDialog/index.html @@ -0,0 +1,71 @@ + + + + + + Preset Bundle + + + + + + + + + + + + + + +
+
+
+ + + +
+ +
+
+ Name + Type + Version + Update +
+
+
+ +
+
+ Name + Type +
+
+
+
+
+ + +
+ +
Close
+
+ + + + + + + diff --git a/resources/web/dialog/PresetBundleDialog/index.js b/resources/web/dialog/PresetBundleDialog/index.js new file mode 100644 index 0000000000..b370fe8018 --- /dev/null +++ b/resources/web/dialog/PresetBundleDialog/index.js @@ -0,0 +1,375 @@ +// ========= Data Stores ========= +const bundlesById = new Map(); // bundleId -> bundle object +const printersByBundle = new Map(); // bundleId -> Map(index -> printerName) +const filamentsByBundle = new Map(); // bundleId -> Map(index -> filamentName) +const presetsByBundle = new Map(); // bundleId -> Map(index -> presetName) +const UPDATE_TOOLTIP = "Update available"; +const UNAUTHORIZED_TOOLTIP = "Unauthorized bundle"; + +// ========= DOM ========= +let topList = null; +let bottomList = null; + +let ctxMenu = null; +let contextRow = null; +let ctxMenuSubscribed = null; + +let ctxMenuDelete = null; + +let selectedBundleId = null; + +// ========= Init ========= +function OnInit() { + + topList = document.getElementById("topList"); + bottomList = document.getElementById("bottomList"); + ctxMenu = document.getElementById("ctxMenu"); + ctxMenuSubscribed = document.getElementById("unsubscribe_btn"); + ctxMenuDelete = document.getElementById("delete_btn"); + const closeBtn = document.getElementById("close_btn"); + const exportbtn = document.getElementById("export_btn"); + const refreshBtn = document.getElementById("refresh_btn"); + const autoUpdateToggle = document.getElementById("auto_update_toggle"); + + if (!topList || !bottomList) return; + TranslatePage(); + + // If wx side needs to request bundles after page load: + RequestBundles(); + + + refreshBtn?.addEventListener("click", () => { + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "refresh_bundles" + }; + SendWXMessage(JSON.stringify(tSend)); + }); + + autoUpdateToggle?.addEventListener("change", () => { + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "set_auto_update", + enabled: !!autoUpdateToggle.checked + }; + SendWXMessage(JSON.stringify(tSend)); + }); + // Hook selection on top list + topList.addEventListener("click", (e) => { + const cloudLink = e.target.closest(".bundle-cloud-link"); + if (cloudLink) { + e.preventDefault(); + e.stopPropagation(); + + const row = cloudLink.closest(".row"); + if (!row) return; + + selectTopRow(row); + selectedBundleId = String(row.dataset.id || ""); + renderBottomForBundle(selectedBundleId); + sendOpenBundleOnCloud(selectedBundleId); + return; + } + + const updateBtn = e.target.closest(".bundle-update-btn"); + if (updateBtn) { + e.stopPropagation(); + if (updateBtn.disabled) return; + + const row = updateBtn.closest(".row"); + if (!row) return; + + selectTopRow(row); + selectedBundleId = String(row.dataset.id || ""); + renderBottomForBundle(selectedBundleId); + sendUpdateBundleCommand(selectedBundleId); + return; + } + + const row = e.target.closest(".row"); + if (!row) return; + + selectTopRow(row); + selectedBundleId = String(row.dataset.id || ""); + renderBottomForBundle(selectedBundleId); + }); + + // for top list rows if right click open context menu + topList.addEventListener("contextmenu", (e) => { + const row = e.target.closest(".row"); + if (!row) return; // top rows only + + const bundleType = String(row.dataset.bundleType || "").toLowerCase(); + if (bundleType !== "subscribed") return; + + e.preventDefault(); + selectTopRow(row); + contextRow = row; + showSubscribedMenu(e.clientX, e.clientY); + }); + + // for top list rows except subscribed if right click open regular context menu + topList.addEventListener("contextmenu", (e) => { + const row = e.target.closest(".row"); + if (!row) return; // top rows only + const bundleType = String(row.dataset.bundleType || "").toLowerCase(); + if (bundleType === "subscribed") return; + + e.preventDefault(); + + selectTopRow(row); + contextRow = row; + showMenu(e.clientX, e.clientY); + }); + + ctxMenu?.addEventListener("click", (e) => { + const btn = e.target.closest("[data-action]"); + if (!btn || !contextRow) return; + + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "top_row_menu_action", + action: String(btn.dataset.action || ""), + bundle_id: String(contextRow.dataset.id || "") + }; + SendWXMessage(JSON.stringify(tSend)); + hideMenu(); + }); + + closeBtn?.addEventListener("click", () => { + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "close_page" + }; + SendWXMessage(JSON.stringify(tSend)); + }); + + exportbtn?.addEventListener("click", () => { + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "export_page" + }; + SendWXMessage(JSON.stringify(tSend)); + }); + + document.addEventListener("click", (e) => { + if (!e.target.closest(".ctx")) hideMenu(); + }); + document.addEventListener("keydown", (e) => { + if (e.key === "Escape") hideMenu(); + }); +} +// ========= wx bridge requests ========= + +function RequestBundles() { + var tSend={}; + tSend['sequence_id']=Math.round(new Date() / 1000); + tSend['command']="request_bundles"; + + SendWXMessage(JSON.stringify(tSend)); +} + +function HandleStudio(pVal) { + + const msg = (typeof pVal === "string") ? safeJsonParse(pVal) : pVal; + if (!msg || typeof msg !== "object") return; + + const strCmd = msg.command; + if (strCmd === "list_bundles") { + unpackPayload(msg); + renderTop(); + // auto-select first bundle if none selected + autoSelectFirstBundle(); + + const autoUpdateToggle = document.getElementById("auto_update_toggle"); + if (autoUpdateToggle) { + autoUpdateToggle.checked = !!msg.auto_update_enabled; + } + } +} + +// ========= Parse / store ========= +function unpackPayload(payload) { + bundlesById.clear(); + printersByBundle.clear(); + filamentsByBundle.clear(); + presetsByBundle.clear(); + + const list = payload?.data || []; + for (const bundle of list) { + const id = String(bundle.id ?? ""); + if (!id) continue; + + bundlesById.set(id, { + id, + name: bundle.name ?? "", + type: bundle.type ?? "", + version: bundle.version ?? "", + path: bundle.path ?? "", + update_available: Boolean(bundle.update_available) , + unauthorized: Boolean(bundle.unauthorized) + }); + + printersByBundle.set(id, new Map((bundle.printers || []).map((name, i) => [i, name]))); + filamentsByBundle.set(id, new Map((bundle.filaments || []).map((name, i) => [i, name]))); + presetsByBundle.set(id, new Map((bundle.presets || []).map((name, i) => [i, name]))); + } +} + +// ========= Render: top ========= +function renderTop() { + const bundles = Array.from(bundlesById.values()); + + topList.innerHTML = bundles.map(b => ` +
+
+ ${b.unauthorized + ? `!` + : b.update_available + ? `` + : ``} + ${ + b.type === "Subscribed" ? + `${escapeHtml(b.name)}` + : `${escapeHtml(b.name)}` + } +
+ ${escapeHtml(b.type)} + ${escapeHtml(b.version)} +
+ +
+
+ `).join(""); + } + +function sendOpenBundleOnCloud(bundleId) { + const bundle = bundlesById.get(String(bundleId || "")); + if (!bundle) return; + + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "open_bundle_on_cloud", + bundle_id: String(bundle.id || "") + }; + SendWXMessage(JSON.stringify(tSend)); +} + +function sendUpdateBundleCommand(bundleId) { + const bundle = bundlesById.get(String(bundleId || "")); + if (!bundle || bundle.unauthorized || !bundle.update_available) return; + + const tSend = { + sequence_id: Math.round(Date.now() / 1000), + command: "update_bundle", + bundle_id: String(bundle.id || "") + }; + SendWXMessage(JSON.stringify(tSend)); + } + +// ========= Render: bottom (for a selected bundle) ========= +function renderBottomForBundle(bundleId) { + const key = String(bundleId || ""); + const printers = printersByBundle.get(key) || new Map(); + const filaments = filamentsByBundle.get(key) || new Map(); + const presets = presetsByBundle.get(key) || new Map(); + + // Convert to a flat list of rows { typeLabel, name } + const rows = []; + + for (const [, name] of printers) rows.push({ type: "Printer", name }); + for (const [, name] of filaments) rows.push({ type: "Filament", name }); + for (const [, name] of presets) rows.push({ type: "Preset", name }); + + bottomList.innerHTML = rows.map((r, idx) => ` +
+ ${escapeHtml(r.name)} + ${escapeHtml(r.type)} +
+ `).join(""); +} + +// ========= Selection helpers ========= +function clearSelection() { + document.querySelectorAll(".row.selected").forEach(r => r.classList.remove("selected")); +} + +function selectTopRow(rowEl) { + // only clear selection in top list, not bottom + topList.querySelectorAll(".row.selected").forEach(r => r.classList.remove("selected")); + rowEl.classList.add("selected"); +} + +function autoSelectFirstBundle() { + if (selectedBundleId && bundlesById.has(selectedBundleId)) { + // reselect existing + const el = topList.querySelector(`.row[data-id="${cssEscape(selectedBundleId)}"]`); + if (el) selectTopRow(el); + renderBottomForBundle(selectedBundleId); + return; + } + + const first = topList.querySelector(".row"); + if (!first) { + bottomList.innerHTML = ""; + selectedBundleId = null; + return; + } + + selectTopRow(first); + selectedBundleId = first.dataset.id; + renderBottomForBundle(selectedBundleId); +} + +function showSubscribedMenu(x, y) { + if (!ctxMenu) return; + ctxMenu.style.left = `${x}px`; + ctxMenu.style.top = `${y}px`; + ctxMenu.hidden = false; + ctxMenuDelete.hidden = true; + ctxMenuSubscribed.hidden = false; +} + +function showMenu(x, y) { + if (!ctxMenu) return; + ctxMenu.style.left = `${x}px`; + ctxMenu.style.top = `${y}px`; + ctxMenu.hidden = false; + ctxMenuDelete.hidden = false; + ctxMenuSubscribed.hidden = true; +} + +function hideMenu() { + if (!ctxMenu) return; + ctxMenu.hidden = true; + ctxMenuSubscribed.hidden = true; + contextRow = null; +} +// ========= Utilities ========= +function safeJsonParse(s) { + try { return JSON.parse(s); } catch { return null; } +} + +function escapeHtml(str) { + return String(str) + .replaceAll("&", "&") + .replaceAll("<", "<") + .replaceAll(">", ">") + .replaceAll('"', """) + .replaceAll("'", "'"); +} + +function escapeAttr(str) { + // minimal attribute escaping + return escapeHtml(str); +} + +function cssEscape(str) { + // basic css escape for attribute selectors + return String(str).replaceAll('"', '\\"'); +} diff --git a/resources/web/dialog/PresetBundleDialog/styles.css b/resources/web/dialog/PresetBundleDialog/styles.css new file mode 100644 index 0000000000..aa6ad9138b --- /dev/null +++ b/resources/web/dialog/PresetBundleDialog/styles.css @@ -0,0 +1,394 @@ +:root { + --bg: #ffffff; + --panel: #ffffff; + --border: #d8d8d8; + --border-strong: #e6e6e6; + --border-soft: #f0f0f0; + --col-sep: #e1e1e1; + + --text: #1f2328; + --row-hover: #f7f9fb; + --row-selected: #eaf2ff; + --row-selected-outline: #b7d0ff; + + --footer-bg: #fafafa; + --btn-bg: #ffffff; + --btn-border: #cccccc; + --btn-hover: #f0f0f0; + + --ctx-bg: #ffffff; + --ctx-border: #cccccc; + --ctx-hover: #efefef; +} + +html, body { + height: 100%; + margin: 0; + font-family: sans-serif; + background: var(--bg); + color: var(--text); + overflow: hidden; +} + +body { + display: flex; + flex-direction: column; +} + +/* App layout: split content + footer */ +.app { + flex: 1 1 auto; + min-height: 0; + overflow: hidden; +} + +/* Split panes */ +.split { + height: 100%; + display: grid; + grid-template-rows: auto minmax(0, 1.25fr) minmax(140px, 0.75fr); + gap: 8px; + padding: 8px; + box-sizing: border-box; + min-height: 0; + overflow: hidden; +} + +.top-toolbar { + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; + padding: 0 2px; + } + + .toolbar-btn { + min-width: 92px; + } + + .auto-update-switch { + display: inline-flex; + align-items: center; + gap: 10px; + font-size: 13px; + font-weight: 600; + color: var(--text); + user-select: none; + cursor: pointer; + position: relative; + } + + .auto-update-switch input { + position: absolute; + opacity: 0; + pointer-events: none; + } + + .auto-update-label { + white-space: nowrap; + } + + .auto-update-slider { + position: relative; + width: 52px; + height: 24px; + flex: 0 0 52px; + border-radius: 999px; + background: #b9b9b9; + transition: background 0.2s ease; + box-sizing: border-box; + overflow: hidden; + } + + .auto-update-slider::before { + content: ""; + position: absolute; + top: 2px; + left: 2px; + width: 20px; + height: 20px; + border-radius: 50%; + background: #ffffff; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28); + transition: transform 0.2s ease; + z-index: 2; + } + + .auto-update-text { + position: absolute; + top: 50%; + transform: translateY(-50%); + font-size: 9px; + font-weight: 700; + line-height: 1; + letter-spacing: 0.3px; + z-index: 1; + pointer-events: none; + } + + .auto-update-text-off { + right: 7px; + color: #ffffff; + } + + .auto-update-text-on { + left: 7px; + color: #ffffff; + opacity: 0.55; + } + + .auto-update-switch input:checked + .auto-update-slider { + background: var(--main-color); + } + + .auto-update-switch input:checked + .auto-update-slider::before { + transform: translateX(28px); + } + + .auto-update-switch input:checked + .auto-update-slider .auto-update-text-on { + opacity: 1; + } + + .auto-update-switch input:checked + .auto-update-slider .auto-update-text-off { + opacity: 0.55; + } + + .auto-update-switch input:not(:checked) + .auto-update-slider .auto-update-text-on { + opacity: 0.55; + } + + .auto-update-switch input:not(:checked) + .auto-update-slider .auto-update-text-off { + opacity: 1; + } + + .auto-update-switch input:focus-visible + .auto-update-slider { + outline: 2px solid var(--main-color); + outline-offset: 2px; + } + + .auto-update-switch input:disabled + .auto-update-slider { + opacity: 0.5; + } + +.pane { + min-height: 0; + border: 1px solid var(--border); + border-radius: 8px; + background: var(--panel); + display: grid; + grid-template-rows: auto 1fr; +} + +.hdr { + font-weight: 600; + font-size: 12px; + border-bottom: 1px solid var(--border-strong); + padding: 8px 10px; + display: grid; + gap: 10px; +} + +.top-cols { grid-template-columns: minmax(0, 2fr) 1fr 1fr 88px; } + .bot-cols { grid-template-columns: 2fr 1fr; } + + .top .row { grid-template-columns: minmax(0, 2fr) 1fr 1fr 88px; } + .bottom .row { grid-template-columns: 2fr 1fr; } + +.body { + min-height: 0; + overflow: hidden; +} + +.hdr > *, + .row > * { + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + padding-right: 8px; + border-right: 1px solid var(--col-sep); + box-sizing: border-box; + } + + .hdr > *:last-child, + .row > *:last-child { + border-right: none; + padding-right: 0; + } + + .bundle-name-cell { + display: flex; + align-items: center; + gap: 8px; + } + + .bundle-name-text { + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .bundle-cloud-link { + color: inherit; + cursor: pointer; + text-decoration: none; + text-underline-offset: 2px; + } + + .bundle-cloud-link:hover, + .bundle-cloud-link:focus-visible { + color: inherit; + text-decoration: underline; + } + + .bundle-status-icon, + .bundle-status-icon-spacer { + flex: 0 0 14px; + width: 14px; + height: 14px; + } + + .bundle-status-icon { + display: inline-flex; + align-items: center; + justify-content: center; + border-radius: 50%; + background: #f59e0b; + color: #fff; + font-size: 10px; + font-weight: 700; + line-height: 14px; + } + + .bundle-status-icon-unauthorized { + background: #dc2626; + } + + .bundle-status-icon-update { + background: var(--main-color); + font-size: 12px; + } + + .bundle-update-cell { + display: flex; + align-items: center; + justify-content: flex-start; + } + + .bundle-update-btn { + box-sizing: border-box; + min-width: 64px; + height: 20px; + line-height: 18px; + padding: 0 8px; + border-radius: 4px; + font-size: 11px; + cursor: pointer; + border: 1px solid transparent; + } + + .bundle-update-btn.is-enabled { + background: var(--main-color); + color: var(--button-fg-light); + } + + .bundle-update-btn.is-enabled:hover { + background: var(--main-color-hover); + } + + .bundle-update-btn.is-disabled { + background: var(--button-bg-disabled); + color: var(--button-fg-disabled); + cursor: not-allowed; + } + + +#topList, +#bottomList { + min-height: 0; + overflow-y: auto; + overflow-x: hidden; +} + +/* Column separators + clipping */ + +.row { + padding: 8px 10px; + border-bottom: 1px solid var(--border-soft); + display: grid; + gap: 10px; + font-size: 13px; + white-space: nowrap; + cursor: pointer; +} + + +.row:hover { background: var(--row-hover); } + +.row.selected { + background: var(--row-selected); + outline: 1px solid var(--row-selected-outline); +} + +/* Footer styling +.footer { + border-top: 1px solid var(--border); + padding: 10px 16px; + background: var(--footer-bg); + display: flex; + justify-content: flex-end; + gap: 12px; +} + +.footer-btn { + padding: 8px 16px; + border-radius: 6px; + border: 1px solid var(--btn-border); + background: var(--btn-bg); + color: var(--text); + cursor: pointer; + font-size: 13px; +} + +.footer-btn:hover { background: var(--btn-hover); } */ + +/* Context menu */ +.ctx { + position: fixed; + min-width: 180px; + background: var(--ctx-bg); + border: 1px solid var(--ctx-border); + border-radius: 6px; + box-shadow: 0 8px 20px rgba(0,0,0,.18); + padding: 4px; + z-index: 9999; +} + +.ctx-item, +.ctx-item-subscribed, .ctx-item-delete { + display: block; + width: 100%; + text-align: left; + border: 0; + background: transparent; + color: var(--text); + padding: 8px 10px; + cursor: pointer; + border-radius: 4px; +} + +.ctx-item:hover, +.ctx-item-subscribed:hover , +.ctx-item-delete:hover +{ background: var(--ctx-hover); } + +.ctx-item[hidden], +.ctx-item-subscribed[hidden] , +.ctx-item-delete[hidden]{ + display: none; +} + +#AcceptArea { + flex: 0 0 auto; +} diff --git a/resources/web/dialog/css/common.css b/resources/web/dialog/css/common.css new file mode 100644 index 0000000000..b8bee5dc42 --- /dev/null +++ b/resources/web/dialog/css/common.css @@ -0,0 +1,173 @@ +* +{ + padding: 0; + border: 0; + margin: 0; + font-family: "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans; + user-select: none; +} + +html +{ + height:100%; + background-color: #626262; +} + +body +{ + height:100%; + max-height: 660px; + max-width: 820px; + padding: 0; + border: 0; + margin: 0; + overflow: hidden; + background-color: #fff; + font-size: 14px; + line-height: 22px; +} + +.TextPoint +{ + font-size:1px; +} + +.ZScrol::-webkit-scrollbar {/*滚动条整体样式*/ + width: 12px; /*高宽分别对应横竖滚动条的尺寸*/ + height: 12px; + padding: 2px; +} + +.ZScrol::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ + border-radius: 6px; + -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); + box-shadow: inset 0 0 5px rgba(0,0,0,0.2); + background-color: #AAAAAA; +} + +.ZScrol::-webkit-scrollbar-track {/*滚动条里面轨道*/ + -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); + box-shadow: inset 0 0 5px rgba(0,0,0,0.2); + border-radius: 10px; + background: #EDEDED; +} + +/*----Three Part----*/ +body +{ + display:flex; + flex-direction: column; +} + + +#Title +{ + height: 12%; + display: flex; + text-align: center; + flex-direction:column; + justify-content: center; +} + +#Title div +{ + font-size:28px; + line-height: 28px; + color: #009688; + padding: 0px 10mm; +} + + +#Content +{ + height: 76%; + padding: 20px 40px; + overflow-x: hidden; + overflow-y: auto; + text-align: left; + font-size: 14px; + line-height: 22px; + color: #464646; + position: relative; + display:flex; + flex-direction: column; +} + +#Content div +{ + +} + + +#AcceptArea +{ + height:var(--dialog-button-sizer-height); /*----ORCA Use fixed size to prevent position change----*/ + max-height:var(--dialog-button-sizer-height); + min-height:var(--dialog-button-sizer-height); + padding: 0 var(--dialog-button-gap); + text-align: left; + display: flex; + justify-content:flex-end; + align-items: center; +} + +/*---HyperLink---*/ +.HyperLink +{ + color: #009688; + text-decoration: underline; + font-weight: 700; + cursor: pointer; +} + +/*---Checkboxes ORCA ---*/ +label:has(input[type="checkbox"]){ + margin:0; + padding: 0; + margin-right: 20px; +} + +label:has(input[type="checkbox"])>span{ + vertical-align: middle; + margin:0; +} + +input[type="checkbox"] { + -webkit-appearance: none; + appearance: none; + background-color:#FFFFFF; + margin:0; + margin-right: 6px; + width: 1em; + height: 1em; + border: 0.1em solid #DBDBDB; + border-radius: 0.15em; + display: inline-flex; + place-content: center; + background-color:#FFFFFF; +} + +input[type="checkbox"]::before { + content: ""; + width: 0.8em; + height: 0.8em; + transform: scale(0); + box-shadow: inset 1em 1em #FFFFFF; + clip-path: polygon(7% 37%, 0 45%, 33% 78%, 100% 30%, 95% 21%, 33% 64%); +} + +input[type="checkbox"]:checked { + border-color:#009688; + background-color:#009688; +} + +input[type="checkbox"]:checked::before { + transform: scale(1); +} + +/*----------------Light Mode-------------------*/ + + + + + diff --git a/resources/web/dialog/css/dark.css b/resources/web/dialog/css/dark.css new file mode 100644 index 0000000000..de55d6cba7 --- /dev/null +++ b/resources/web/dialog/css/dark.css @@ -0,0 +1,100 @@ +:root { + --bg: #1b1f24; + --panel: #242a31; + --border: #3a424d; + --border-strong: #3a424d; + --border-soft: #313843; + --col-sep: #3a424d; + + --text: #e6ebf0; + --row-hover: #2b3340; + --row-selected: #244945; + --row-selected-outline: #00bfa5; + + --footer-bg: #20262d; + --btn-bg: #2a313a; + --btn-border: #4b5664; + --btn-hover: #333c47; + + --ctx-bg: #2a313a; + --ctx-border: #4b5664; + --ctx-hover: #3a4451; +} + +* +{ + color: #efeff0; + border-color: #B9B9BC; +} + +body +{ + background-color:#2D2D31; /* ORCA match background color */ + color: #efeff0; +} + +.ZScrol::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ + background-color: #939594; +} + +.ZScrol::-webkit-scrollbar-track {/*滚动条里面轨道*/ + background: #161817; +} + +#Title div +{ + color: #009688; +} + +.search>input[type=text]{ + background-color:#2D2D31; +} + +/*---Checkboxes ORCA---*/ +input[type=checkbox]{ + background-color:#2D2D31; + border-color:#4A4A51; +} + +input[type=checkbox]:checked{ + background-color:#009688; +} + +/*-------Text------*/ + +.TextS1 +{ + +} + +.TextS2 +{ + color:#B9B9BC; +} + +/*---Policy---*/ +.TextArea1 +{ + background-color: #4A4A51; + color: #BEBEC0; +} + +/*----Region---*/ +.RegionItem:hover +{ + background-color:#4C4C55; +} + +.RegionSelected:hover +{ + background-color:#009688; + color: #fff; +} + +/*----Menu----*/ +#Title div.TitleUnselected +{ + color: #BEBEC0; +} + + diff --git a/resources/web/dialog/css/home.css b/resources/web/dialog/css/home.css new file mode 100644 index 0000000000..c086b41a84 --- /dev/null +++ b/resources/web/dialog/css/home.css @@ -0,0 +1,35 @@ +#FullArea +{ + height:100%; +} + + +#LoadProgress +{ + position:fixed; + top: 0px; + left: 0px; + width: 100%; + height: 3mm; + display: none; +} + +#PercentTip +{ + width:70%; + height: 100%; + background-color: #335DFC; +} + + +#PageArea +{ + width:100%; + height: 100%; +} + +#IEPage +{ + height:100%; + width: 100%; +} diff --git a/resources/web/dialog/css/test.css b/resources/web/dialog/css/test.css new file mode 100644 index 0000000000..f37ded3189 --- /dev/null +++ b/resources/web/dialog/css/test.css @@ -0,0 +1,58 @@ +* +{ + padding: 0; + border: 0; + margin: 0; +} + + +html,body +{ + height:100%; + padding: 0; + border: 0; + margin: 0; + overflow: hidden; + background-color: #fff; +} + +#PageArea +{ + height:100%; + width: 100%; +} + +.swiper { + height: 100%; + top: 0px; + left: 0px; + bottom: 35px; +} + +.swiper-slide { + font-size: 18px; + height: 100%; + width: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} + +.swiper-slide iframe +{ + width:100%; + height: 100%; + overflow-y: hidden; +} + +.CBtn +{ + padding: 3mm 100m; + background-color: #77EFF9; + display: inline-block; + height: 30px; + width: 150px; + text-align: center; + z-index: 99; + position: absolute; + top:30px; +} \ No newline at end of file diff --git a/resources/web/dialog/js/common.js b/resources/web/dialog/js/common.js new file mode 100644 index 0000000000..b0aafeaf37 --- /dev/null +++ b/resources/web/dialog/js/common.js @@ -0,0 +1,21 @@ +function ClosePage() { + var tSend = {}; + tSend['sequence_id'] = Math.round(new Date() / 1000); + tSend['command'] = "close_page"; + SendWXMessage(JSON.stringify(tSend)); +} + +document.onkeydown = function (event) { + var e = event || window.event || arguments.callee.caller.arguments[0]; + + if (window.event) { + try { e.keyCode = 0; } catch (e) { } + e.returnValue = false; + } +}; + +window.addEventListener('wheel', function (event) { + if (event.ctrlKey === true || event.metaKey) { + event.preventDefault(); + } +}, { passive: false }); diff --git a/resources/web/login/js/globalapi.js b/resources/web/dialog/js/globalapi.js similarity index 83% rename from resources/web/login/js/globalapi.js rename to resources/web/dialog/js/globalapi.js index 3d56015018..2463dbe537 100644 --- a/resources/web/login/js/globalapi.js +++ b/resources/web/dialog/js/globalapi.js @@ -277,4 +277,63 @@ function SendWXMessage( strMsg ) } } +/*------CSS Link Control----*/ +function RemoveCssLink( LinkPath ) +{ + let pNow=$("head link[href='"+LinkPath+"']"); + + let nTotal=pNow.length; + for( let n=0;n0) + RemoveCssLink(DarkCssPath); + } + else + { + if(nNow==0) + AddCssLink(DarkCssPath); + } +} + +SwitchDarkMode( "../css/dark.css" ); \ No newline at end of file diff --git a/resources/web/dialog/js/home.js b/resources/web/dialog/js/home.js new file mode 100644 index 0000000000..78b1b96b7b --- /dev/null +++ b/resources/web/dialog/js/home.js @@ -0,0 +1,12 @@ + + + +function NextSlide() +{ + $('.swiper-button-next').click(); +} + +function PreSlide() +{ + $('.swiper-button-prev').click(); +} \ No newline at end of file diff --git a/resources/web/dialog/js/jquery-2.1.1.min.js b/resources/web/dialog/js/jquery-2.1.1.min.js new file mode 100644 index 0000000000..e150866a71 --- /dev/null +++ b/resources/web/dialog/js/jquery-2.1.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b) +},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("