Merge branch 'main' of https://github.com/koppensb/OrcaSlicer
3
.github/workflows/build_all.yml
vendored
|
@ -24,6 +24,9 @@ on:
|
|||
- '**/CMakeLists.txt'
|
||||
- 'version.inc'
|
||||
- ".github/workflows/build_*.yml"
|
||||
- 'BuildLinux.sh'
|
||||
- 'build_release_vs2022.bat'
|
||||
- 'build_release_macos.sh'
|
||||
|
||||
workflow_dispatch: # allows for manual dispatch
|
||||
inputs:
|
||||
|
|
239
BuildLinux.sh
|
@ -1,10 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
export ROOT=`pwd`
|
||||
export NCORES=`nproc --all`
|
||||
export CMAKE_BUILD_PARALLEL_LEVEL=${NCORES}
|
||||
FOUND_GTK2=$(dpkg -l libgtk* | grep gtk2)
|
||||
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3)
|
||||
export ROOT=$(dirname $(readlink -f ${0}))
|
||||
|
||||
set -e # exit on first error
|
||||
|
||||
|
@ -21,238 +17,167 @@ function check_available_memory_and_disk() {
|
|||
exit 2
|
||||
fi
|
||||
|
||||
if [[ ${FREE_DISK_KB} -le ${MIN_DISK_KB} ]]; then
|
||||
echo -e "\nERROR: Orca Slicer Builder requires at least $(echo $MIN_DISK_KB |awk '{ printf "%.1fG\n", $1/1024/1024; }') (systen has only $(echo ${FREE_DISK_KB} | awk '{ printf "%.1fG\n", $1/1024/1024; }') disk free)"
|
||||
if [[ ${FREE_DISK_KB} -le ${MIN_DISK_KB} ]]; then
|
||||
echo -e "\nERROR: Orca Slicer Builder requires at least $(echo ${MIN_DISK_KB} |awk '{ printf "%.1fG\n", $1/1024/1024; }') (systen has only $(echo ${FREE_DISK_KB} | awk '{ printf "%.1fG\n", $1/1024/1024; }') disk free)"
|
||||
echo && df -h . && echo
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
function usage() {
|
||||
echo "Usage: ./BuildLinux.sh [-i][-u][-d][-s][-b][-g]"
|
||||
echo " -i: Generate appimage (optional)"
|
||||
echo " -g: force gtk2 build"
|
||||
echo "Usage: ./BuildLinux.sh [-1][-b][-c][-d][-i][-r][-s][-u]"
|
||||
echo " -1: limit builds to 1 core (where possible)"
|
||||
echo " -b: build in debug mode"
|
||||
echo " -c: force a clean build"
|
||||
echo " -d: build deps (optional)"
|
||||
echo " -h: this help output"
|
||||
echo " -i: Generate appimage (optional)"
|
||||
echo " -r: skip ram and disk checks (low ram compiling)"
|
||||
echo " -s: build orca-slicer (optional)"
|
||||
echo " -u: only update clock & dependency packets (optional and need sudo)"
|
||||
echo " -r: skip free ram check (low ram compiling)"
|
||||
echo " -u: update and build dependencies (optional and need sudo)"
|
||||
echo "For a first use, you want to 'sudo ./BuildLinux.sh -u'"
|
||||
echo " and then './BuildLinux.sh -dsi'"
|
||||
}
|
||||
|
||||
unset name
|
||||
while getopts ":dsiuhgbr" opt; do
|
||||
while getopts ":1bcdghirsu" opt; do
|
||||
case ${opt} in
|
||||
u )
|
||||
UPDATE_LIB="1"
|
||||
;;
|
||||
i )
|
||||
BUILD_IMAGE="1"
|
||||
;;
|
||||
d )
|
||||
BUILD_DEPS="1"
|
||||
;;
|
||||
s )
|
||||
BUILD_ORCA="1"
|
||||
1 )
|
||||
export CMAKE_BUILD_PARALLEL_LEVEL=1
|
||||
;;
|
||||
b )
|
||||
BUILD_DEBUG="1"
|
||||
;;
|
||||
g )
|
||||
FOUND_GTK3=""
|
||||
c )
|
||||
CLEAN_BUILD=1
|
||||
;;
|
||||
d )
|
||||
BUILD_DEPS="1"
|
||||
;;
|
||||
r )
|
||||
SKIP_RAM_CHECK="1"
|
||||
;;
|
||||
h ) usage
|
||||
exit 0
|
||||
;;
|
||||
i )
|
||||
BUILD_IMAGE="1"
|
||||
;;
|
||||
r )
|
||||
SKIP_RAM_CHECK="1"
|
||||
;;
|
||||
s )
|
||||
BUILD_ORCA="1"
|
||||
;;
|
||||
u )
|
||||
UPDATE_LIB="1"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ $OPTIND -eq 1 ]
|
||||
if [ ${OPTIND} -eq 1 ]
|
||||
then
|
||||
usage
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Addtional Dev packages for OrcaSlicer
|
||||
export REQUIRED_DEV_PACKAGES="libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules texinfo"
|
||||
# libwebkit2gtk-4.1-dev ??
|
||||
export DEV_PACKAGES_COUNT=$(echo ${REQUIRED_DEV_PACKAGES} | wc -w)
|
||||
if [ $(dpkg --get-selections | grep -E "$(echo ${REQUIRED_DEV_PACKAGES} | tr ' ' '|')" | wc -l) -lt ${DEV_PACKAGES_COUNT} ]; then
|
||||
sudo apt install -y ${REQUIRED_DEV_PACKAGES} git cmake wget file gettext
|
||||
fi
|
||||
|
||||
#FIXME: require root for -u option
|
||||
if [[ -n "$UPDATE_LIB" ]]
|
||||
DISTRIBUTION=$(awk -F= '/^ID=/ {print $2}' /etc/os-release)
|
||||
if [ ! -f ./linux.d/${DISTRIBUTION} ]
|
||||
then
|
||||
echo -n -e "Updating linux ...\n"
|
||||
# hwclock -s # DeftDawg: Why does SuperSlicer want to do this?
|
||||
apt update
|
||||
if [[ -z "$FOUND_GTK3" ]]
|
||||
then
|
||||
echo -e "\nInstalling: libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git\n"
|
||||
apt install -y libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git
|
||||
else
|
||||
echo -e "\nFind libgtk-3, installing: libgtk-3-dev libglew-dev libudev-dev libdbus-1-dev cmake git\n"
|
||||
apt install -y libgtk-3-dev libglew-dev libudev-dev libdbus-1-dev cmake git
|
||||
fi
|
||||
# for ubuntu 22+ and 23+:
|
||||
ubu_major_version="$(grep VERSION_ID /etc/os-release | cut -d "=" -f 2 | cut -d "." -f 1 | tr -d /\"/)"
|
||||
if [ $ubu_major_version == "22" ] || [ $ubu_major_version == "23" ]
|
||||
then
|
||||
apt install -y curl libfuse-dev libssl-dev libcurl4-openssl-dev m4
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
then
|
||||
echo -e "\nInstalling: libssl-dev libcurl4-openssl-dev\n"
|
||||
apt install -y libssl-dev libcurl4-openssl-dev
|
||||
fi
|
||||
echo -e "done\n"
|
||||
exit 0
|
||||
echo "Your distribution does not appear to be currently supported by these build scripts"
|
||||
exit 1
|
||||
fi
|
||||
source ./linux.d/${DISTRIBUTION}
|
||||
|
||||
FOUND_GTK2_DEV=$(dpkg -l libgtk* | grep gtk2.0-dev || echo '')
|
||||
FOUND_GTK3_DEV=$(dpkg -l libgtk* | grep gtk-3-dev || echo '')
|
||||
echo "FOUND_GTK2=$FOUND_GTK2)"
|
||||
if [[ -z "$FOUND_GTK2_DEV" ]]
|
||||
then
|
||||
if [[ -z "$FOUND_GTK3_DEV" ]]
|
||||
echo "FOUND_GTK3=${FOUND_GTK3}"
|
||||
if [[ -z "${FOUND_GTK3_DEV}" ]]
|
||||
then
|
||||
echo "Error, you must install the dependencies before."
|
||||
echo "Use option -u with sudo"
|
||||
exit 0
|
||||
fi
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "[1/9] Updating submodules..."
|
||||
{
|
||||
# update submodule profiles
|
||||
pushd resources/profiles
|
||||
git submodule update --init
|
||||
popd
|
||||
}
|
||||
|
||||
echo "[2/9] Changing date in version..."
|
||||
echo "Changing date in version..."
|
||||
{
|
||||
# change date in version
|
||||
sed -i "s/+UNKNOWN/_$(date '+%F')/" version.inc
|
||||
}
|
||||
echo "done"
|
||||
|
||||
# mkdir in deps
|
||||
if [ ! -d "deps/build" ]
|
||||
|
||||
if ! [[ -n "${SKIP_RAM_CHECK}" ]]
|
||||
then
|
||||
mkdir deps/build
|
||||
check_available_memory_and_disk
|
||||
fi
|
||||
|
||||
if ! [[ -n "$SKIP_RAM_CHECK" ]]
|
||||
if [[ -n "${BUILD_DEPS}" ]]
|
||||
then
|
||||
check_available_memory_and_disk
|
||||
fi
|
||||
|
||||
if [[ -n "$BUILD_DEPS" ]]
|
||||
then
|
||||
echo "[3/9] Configuring dependencies..."
|
||||
BUILD_ARGS=""
|
||||
if [[ -n "$FOUND_GTK3_DEV" ]]
|
||||
echo "Configuring dependencies..."
|
||||
BUILD_ARGS="-DDEP_WX_GTK3=ON"
|
||||
if [[ -n "${CLEAN_BUILD}" ]]
|
||||
then
|
||||
BUILD_ARGS="-DDEP_WX_GTK3=ON"
|
||||
rm -fr deps/build
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
if [ ! -d "deps/build" ]
|
||||
then
|
||||
mkdir deps/build
|
||||
fi
|
||||
if [[ -n "${BUILD_DEBUG}" ]]
|
||||
then
|
||||
# have to build deps with debug & release or the cmake won't find everything it needs
|
||||
mkdir deps/build/release
|
||||
pushd deps/build/release
|
||||
echo -e "cmake ../.. -DDESTDIR=\"../destdir\" $BUILD_ARGS"
|
||||
cmake ../.. -DDESTDIR="../destdir" $BUILD_ARGS
|
||||
make -j$NCORES
|
||||
popd
|
||||
cmake -S deps -B deps/build/release -G Ninja -DDESTDIR="../destdir" ${BUILD_ARGS}
|
||||
cmake --build deps/build/release
|
||||
BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug"
|
||||
fi
|
||||
|
||||
# cmake deps
|
||||
pushd deps/build
|
||||
echo "cmake .. $BUILD_ARGS"
|
||||
cmake .. $BUILD_ARGS
|
||||
echo "done"
|
||||
|
||||
# make deps
|
||||
echo "[4/9] Building dependencies..."
|
||||
make deps -j$NCORES
|
||||
echo "done"
|
||||
|
||||
# rename wxscintilla # TODO: DeftDawg: Does OrcaSlicer need this?
|
||||
# echo "[5/9] Renaming wxscintilla library..."
|
||||
# pushd destdir/usr/local/lib
|
||||
# if [[ -z "$FOUND_GTK3_DEV" ]]
|
||||
# then
|
||||
# cp libwxscintilla-3.1.a libwx_gtk2u_scintilla-3.1.a
|
||||
# else
|
||||
# cp libwxscintilla-3.1.a libwx_gtk3u_scintilla-3.1.a
|
||||
# fi
|
||||
# popd
|
||||
# echo "done"
|
||||
|
||||
# FIXME: only clean deps if compiling succeeds; otherwise reruns waste tonnes of time!
|
||||
# clean deps
|
||||
# echo "[6/9] Cleaning dependencies..."
|
||||
# rm -rf dep_*
|
||||
popd
|
||||
echo "done"
|
||||
echo "cmake -S deps -B deps/build -G Ninja ${BUILD_ARGS}"
|
||||
cmake -S deps -B deps/build -G Ninja ${BUILD_ARGS}
|
||||
cmake --build deps/build
|
||||
fi
|
||||
|
||||
# Create main "build" directory
|
||||
if [ ! -d "build" ]
|
||||
then
|
||||
mkdir build
|
||||
fi
|
||||
|
||||
if [[ -n "$BUILD_ORCA" ]]
|
||||
if [[ -n "${BUILD_ORCA}" ]]
|
||||
then
|
||||
echo "[7/9] Configuring Slic3r..."
|
||||
echo "Configuring OrcaSlicer..."
|
||||
if [[ -n "${CLEAN_BUILD}" ]]
|
||||
then
|
||||
rm -fr build
|
||||
fi
|
||||
BUILD_ARGS=""
|
||||
if [[ -n "$FOUND_GTK3_DEV" ]]
|
||||
if [[ -n "${FOUND_GTK3_DEV}" ]]
|
||||
then
|
||||
BUILD_ARGS="-DSLIC3R_GTK=3"
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
if [[ -n "${BUILD_DEBUG}" ]]
|
||||
then
|
||||
BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug -DBBL_INTERNAL_TESTING=1"
|
||||
else
|
||||
BUILD_ARGS="${BUILD_ARGS} -DBBL_RELEASE_TO_PUBLIC=1 -DBBL_INTERNAL_TESTING=0"
|
||||
fi
|
||||
|
||||
# cmake
|
||||
pushd build
|
||||
echo -e "cmake .. -DCMAKE_PREFIX_PATH=\"$PWD/../deps/build/destdir/usr/local\" -DSLIC3R_STATIC=1 -DORCA_TOOLS=ON ${BUILD_ARGS}"
|
||||
cmake .. -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local" -DSLIC3R_STATIC=1 ${BUILD_ARGS} -DORCA_TOOLS=ON
|
||||
echo "done"
|
||||
|
||||
# make Slic3r
|
||||
echo "[8/9] Building Slic3r..."
|
||||
make -j$NCORES OrcaSlicer # Slic3r
|
||||
|
||||
# make OrcaSlicer_profile_validator
|
||||
make -j$NCORES OrcaSlicer_profile_validator
|
||||
popd
|
||||
echo -e "cmake -S . -B build -G Ninja -DCMAKE_PREFIX_PATH="${PWD}/deps/build/destdir/usr/local" -DSLIC3R_STATIC=1 ${BUILD_ARGS}"
|
||||
cmake -S . -B build -G Ninja \
|
||||
-DCMAKE_PREFIX_PATH="${PWD}/deps/build/destdir/usr/local" \
|
||||
-DSLIC3R_STATIC=1 \
|
||||
-DORCA_TOOLS=ON \
|
||||
${BUILD_ARGS}
|
||||
echo "done"
|
||||
echo "Building OrcaSlicer ..."
|
||||
cmake --build build --target OrcaSlicer
|
||||
echo "Building OrcaSlicer_profile_validator .."
|
||||
cmake --build build --target OrcaSlicer_profile_validator
|
||||
./run_gettext.sh
|
||||
echo "done"
|
||||
fi
|
||||
|
||||
if [[ -e $ROOT/build/src/BuildLinuxImage.sh ]]; then
|
||||
if [[ -e ${ROOT}/build/src/BuildLinuxImage.sh ]]; then
|
||||
# Give proper permissions to script
|
||||
chmod 755 $ROOT/build/src/BuildLinuxImage.sh
|
||||
chmod 755 ${ROOT}/build/src/BuildLinuxImage.sh
|
||||
|
||||
echo "[9/9] Generating Linux app..."
|
||||
pushd build
|
||||
if [[ -n "$BUILD_IMAGE" ]]
|
||||
if [[ -n "${BUILD_IMAGE}" ]]
|
||||
then
|
||||
$ROOT/build/src/BuildLinuxImage.sh -i
|
||||
${ROOT}/build/src/BuildLinuxImage.sh -i
|
||||
else
|
||||
$ROOT/build/src/BuildLinuxImage.sh
|
||||
${ROOT}/build/src/BuildLinuxImage.sh
|
||||
fi
|
||||
popd
|
||||
echo "done"
|
||||
|
|
|
@ -79,7 +79,7 @@ The PA value for this test will be increased by 0.002 for every 1 mm increase in
|
|||
Steps:
|
||||
1. Select the printer, filament, and process you would like to use for the test.
|
||||
2. Examine each corner of the print and mark the height that yields the best overall result.
|
||||
3. I selected a height of 8 mm for this case, so the pressure advance value should be calculated as `0.002x8 = 0.016`.
|
||||
3. I selected a height of 8 mm for this case, so the pressure advance value should be calculated as `PressureAdvanceStart+(PressureAdvanceStep x measured)` example: `0+(0.002 x 8) = 0.016`.
|
||||

|
||||
|
||||

|
||||
|
|
|
@ -34,7 +34,8 @@ G29 L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_
|
|||
### Klipper:
|
||||
```
|
||||
; Always pass `ADAPTIVE_MARGIN=0` because Orca has already handled `adaptive_bed_mesh_margin` internally
|
||||
BED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=1 ADAPTIVE_MARGIN=0
|
||||
; Make sure to set ADAPTIVE to 0 otherwise Klipper will use it's own adaptive bed mesh logic
|
||||
BED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=0 ADAPTIVE_MARGIN=0
|
||||
```
|
||||
### RRF:
|
||||
```
|
||||
|
|
3
linux.d/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
Files in this directory are named for the **exact** output of `awk -F= '/^ID=/ {print $2}' /etc/os-release` for their respective distribution.
|
||||
|
||||
When `BuildLinux.sh` is executed, the respective file for the distribution will be sourced so the distribution specific instructions/logic are used.
|
44
linux.d/arch
Normal file
|
@ -0,0 +1,44 @@
|
|||
# these are the Arch Linux specific build functions
|
||||
FOUND_GTK3=$(pacman -Q gtk3)
|
||||
|
||||
# Addtional Dev packages for OrcaSlicer
|
||||
export REQUIRED_DEV_PACKAGES=(
|
||||
cmake
|
||||
curl
|
||||
dbus
|
||||
eglexternalplatform
|
||||
extra-cmake-modules
|
||||
file
|
||||
gettext
|
||||
git
|
||||
glew
|
||||
gstreamer
|
||||
gstreamermm
|
||||
gtk3
|
||||
libmspack
|
||||
libsecret
|
||||
mesa
|
||||
ninja
|
||||
openssl
|
||||
texinfo
|
||||
wayland-protocols
|
||||
webkit2gtk
|
||||
wget
|
||||
)
|
||||
|
||||
if [[ -n "$UPDATE_LIB" ]]
|
||||
then
|
||||
echo -n -e "Updating linux ...\n"
|
||||
NEEDED_PKGS=""
|
||||
for PKG in ${REQUIRED_DEV_PACKAGES[@]}; do
|
||||
pacman -Q ${PKG} > /dev/null || NEEDED_PKGS+=" ${PKG}"
|
||||
done
|
||||
|
||||
if [ -n "${NEEDED_PKGS}" ]; then
|
||||
sudo pacman -Syy --noconfirm ${NEEDED_PKGS}
|
||||
fi
|
||||
echo -e "done\n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
FOUND_GTK3_DEV=${FOUND_GTK3}
|
48
linux.d/fedora
Normal file
|
@ -0,0 +1,48 @@
|
|||
FOUND_GTK3=$(rpm -qa | grep -P '^gtk3' || true)
|
||||
|
||||
REQUIRED_DEV_PACKAGES=(
|
||||
autoconf
|
||||
automake
|
||||
cmake
|
||||
dbus-devel
|
||||
eglexternalplatform-devel
|
||||
extra-cmake-modules
|
||||
file
|
||||
gcc
|
||||
gcc-c++
|
||||
gettext
|
||||
git
|
||||
gstreamer1-devel
|
||||
gstreamermm-devel
|
||||
gtk3-devel
|
||||
libmspack-devel
|
||||
libsecret-devel
|
||||
libtool
|
||||
m4
|
||||
mesa-libGLU-devel
|
||||
mesa-libOSMesa-devel
|
||||
ninja-build
|
||||
openssl-devel
|
||||
perl-FindBin
|
||||
texinfo
|
||||
wayland-protocols-devel
|
||||
webkit2gtk4.0-devel
|
||||
wget
|
||||
libcurl-devel
|
||||
)
|
||||
|
||||
if [[ -n "$UPDATE_LIB" ]]
|
||||
then
|
||||
NEEDED_PKGS=""
|
||||
for PKG in ${REQUIRED_DEV_PACKAGES[@]}; do
|
||||
rpm -q ${PKG} > /dev/null || NEEDED_PKGS+=" ${PKG}"
|
||||
done
|
||||
|
||||
if [ -n "${NEEDED_PKGS}" ]; then
|
||||
sudo dnf install -y ${NEEDED_PKGS}
|
||||
fi
|
||||
echo -e "done\n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
FOUND_GTK3_DEV=$(rpm -qa | grep -P '^gtk3-devel' || true)
|
51
linux.d/ubuntu
Normal file
|
@ -0,0 +1,51 @@
|
|||
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3)
|
||||
|
||||
REQUIRED_DEV_PACKAGES=(
|
||||
autoconf
|
||||
build-essential
|
||||
cmake
|
||||
eglexternalplatform-dev
|
||||
extra-cmake-modules
|
||||
file
|
||||
gettext
|
||||
git
|
||||
libcurl4-openssl-dev
|
||||
libdbus-1-dev
|
||||
libglew-dev
|
||||
libgstreamerd-3-dev
|
||||
libgtk-3-dev
|
||||
libmspack-dev
|
||||
libosmesa6-dev
|
||||
libsecret-1-dev
|
||||
libssl-dev
|
||||
libtool
|
||||
libudev-dev
|
||||
libwebkit2gtk-4.0-dev
|
||||
ninja-build
|
||||
texinfo
|
||||
wget
|
||||
)
|
||||
|
||||
if [[ -n "$UPDATE_LIB" ]]
|
||||
then
|
||||
# for ubuntu 22+ and 23+:
|
||||
ubu_major_version="$(grep VERSION_ID /etc/os-release | cut -d "=" -f 2 | cut -d "." -f 1 | tr -d /\"/)"
|
||||
if [ $ubu_major_version == "22" ] || [ $ubu_major_version == "23" ]
|
||||
then
|
||||
REQUIRED_DEV_PACKAGES+=(curl libfuse-dev libssl-dev libcurl4-openssl-dev m4)
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
then
|
||||
REQUIRED_DEV_PACKAGES+=(libssl-dev libcurl4-openssl-dev)
|
||||
fi
|
||||
# TODO: optimize this by checking which, if any, packages are already installed
|
||||
|
||||
# install them all at once
|
||||
sudo apt update
|
||||
sudo apt install -y ${REQUIRED_DEV_PACKAGES[@]}
|
||||
|
||||
echo -e "done\n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
FOUND_GTK3_DEV=$(dpkg -l libgtk* | grep gtk-3-dev || echo '')
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"POT-Creation-Date: 2024-04-15 22:59+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -257,6 +257,9 @@ msgstr ""
|
|||
msgid "World coordinates"
|
||||
msgstr ""
|
||||
|
||||
msgid "Object coordinates"
|
||||
msgstr ""
|
||||
|
||||
msgid "°"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1738,7 +1741,7 @@ msgstr ""
|
|||
msgid "Filament %d"
|
||||
msgstr ""
|
||||
|
||||
msgid "active"
|
||||
msgid "current"
|
||||
msgstr ""
|
||||
|
||||
msgid "Scale to build volume"
|
||||
|
@ -1915,9 +1918,6 @@ msgstr ""
|
|||
msgid "Set Filament for selected items"
|
||||
msgstr ""
|
||||
|
||||
msgid "current"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2234,9 +2234,6 @@ msgstr ""
|
|||
msgid "Jump to Layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Jump to layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the layer number"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2824,27 +2821,14 @@ msgstr ""
|
|||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cabin humidity"
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Green means that AMS humidity is normal, orange represent humidity is high, "
|
||||
"red represent humidity is too high.(Hygrometer: lower the better.)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Desiccant status"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A desiccant status lower than two bars indicates that desiccant may be "
|
||||
"inactive. Please change the desiccant.(The bars: higher the better.)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Note: When the lid is open or the desiccant pack is changed, it can take "
|
||||
"hours or a night to absorb the moisture. Low temperatures also slow down the "
|
||||
"process. During this time, the indicator may not represent the chamber "
|
||||
"accurately."
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
"represent accurately in following cases : when the lid is open or the "
|
||||
"desiccant pack is changed. it take hours to absorb the moisture, low "
|
||||
"temperatures also slow down the process."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
@ -2894,6 +2878,12 @@ msgid ""
|
|||
"material type, and color)"
|
||||
msgstr ""
|
||||
|
||||
msgid "DRY"
|
||||
msgstr ""
|
||||
|
||||
msgid "WET"
|
||||
msgstr ""
|
||||
|
||||
msgid "AMS Settings"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2906,7 +2896,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Note: if new filament is inserted during printing, the AMS will not "
|
||||
"Note: if a new filament is inserted during printing, the AMS will not "
|
||||
"automatically read any information until printing is completed."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3012,6 +3002,12 @@ msgstr ""
|
|||
msgid "Stack overflow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Running post-processing scripts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Successfully executed post-processing script"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error when export G-code."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3022,13 +3018,6 @@ msgid ""
|
|||
"Source file %2%."
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Succeed to export G-code to %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Running post-processing scripts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Copying of the temporary G-code to the output G-code failed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3101,6 +3090,19 @@ msgstr ""
|
|||
msgid "Bed Shape"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The recommended minimum temperature is less than 190 degree or the "
|
||||
"recommended maximum temperature is greater than 300 degree.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The recommended minimum temperature cannot be higher than the recommended "
|
||||
"maximum temperature.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please check.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle may be blocked when the temperature is out of recommended range.\n"
|
||||
"Please make sure whether to use the temperature to print.\n"
|
||||
|
@ -3158,20 +3160,6 @@ msgid ""
|
|||
"The value will be reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Spiral mode only works when wall loops is 1, support is disabled, top shell "
|
||||
"layers is 0, sparse infill density is 0 and timelapse type is traditional."
|
||||
msgstr ""
|
||||
|
||||
msgid " But machines with I3 structure will not generate timelapse videos."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Change these settings and enable spiral mode automatically\n"
|
||||
"No - Give up using spiral mode this time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
|
@ -3216,6 +3204,20 @@ msgid ""
|
|||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Spiral mode only works when wall loops is 1, support is disabled, top shell "
|
||||
"layers is 0, sparse infill density is 0 and timelapse type is traditional."
|
||||
msgstr ""
|
||||
|
||||
msgid " But machines with I3 structure will not generate timelapse videos."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Change these settings and enable spiral mode automatically\n"
|
||||
"No - Give up using spiral mode this time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3492,6 +3494,10 @@ msgstr ""
|
|||
msgid "Parameter validation"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Value %s is out of range. The valid range is from %d to %d."
|
||||
msgstr ""
|
||||
|
||||
msgid "Value is out of range."
|
||||
msgstr ""
|
||||
|
||||
|
@ -3569,10 +3575,10 @@ msgstr ""
|
|||
msgid "Flushed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total"
|
||||
msgid "Tower"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tower"
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total Estimation"
|
||||
|
@ -3677,6 +3683,12 @@ msgstr ""
|
|||
msgid "Normal mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total Filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Model Filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Prepare time"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3770,6 +3782,9 @@ msgstr ""
|
|||
msgid "Spacing"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 means auto spacing."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto rotate for arrangement"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3908,6 +3923,9 @@ msgstr ""
|
|||
msgid "Go Live"
|
||||
msgstr ""
|
||||
|
||||
msgid "Liveview Retry"
|
||||
msgstr ""
|
||||
|
||||
msgid "Resolution"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4408,39 +4426,48 @@ msgstr ""
|
|||
msgid "Synchronization"
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (No Device)!"
|
||||
msgid "The device cannot handle more conversations. Please retry later."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgid "Player is malfunctioning. Please reinstall the system player."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (No Camera Device)!"
|
||||
msgid "The player is not loaded, please click \"play\" button to retry."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer is busy downloading, Please wait for the downloading to finish."
|
||||
msgid "Please confirm if the printer is connected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Not supported on the current printer version)!"
|
||||
msgid ""
|
||||
"The printer is currently busy downloading. Please try again after it "
|
||||
"finishes."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Not accessible in LAN-only mode)!"
|
||||
msgid "Printer camera is malfunctioning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Missing LAN ip of printer)!"
|
||||
msgid "Problem occured. Please update the printer firmware and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"LAN Only Liveview is off. Please turn on the liveview on printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the IP of printer to connect."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initializing..."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgid "Connection Failed. Please check the network and try again"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network unreachable"
|
||||
msgid ""
|
||||
"Please check the network and try again, You can restart or update the "
|
||||
"printer if the issue persists."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Stopped [%d]!"
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stopped."
|
||||
|
@ -4467,16 +4494,15 @@ msgstr ""
|
|||
msgid "Virtual camera initialize failed (%s)!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network unreachable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
msgid "Playing..."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Load failed [%d]!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
|
@ -4528,6 +4554,12 @@ msgstr ""
|
|||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload file list from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr ""
|
||||
|
||||
|
@ -4538,12 +4570,31 @@ msgstr ""
|
|||
msgid "Loading file list..."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "No files [%d]"
|
||||
msgid "No files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Load failed [%d]"
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
|
@ -4566,10 +4617,10 @@ msgstr ""
|
|||
msgid "Fetching model infomations ..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to fetching model infomations from printer."
|
||||
msgid "Failed to fetch model information from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to parse model infomations."
|
||||
msgid "Failed to parse model information."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
@ -4581,6 +4632,12 @@ msgstr ""
|
|||
msgid "File '%s' was lost! Please download it again."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"File: %s\n"
|
||||
"Title: %s\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download waiting..."
|
||||
msgstr ""
|
||||
|
||||
|
@ -4597,13 +4654,17 @@ msgstr ""
|
|||
msgid "Downloading %d%%..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection lost. Please retry."
|
||||
msgid ""
|
||||
"Reconnecting the printer, the operation cannot be completed immediately, "
|
||||
"please try again later."
|
||||
msgstr ""
|
||||
|
||||
msgid "The device cannot handle more conversations. Please retry later."
|
||||
msgid ""
|
||||
"Over 4 studio/handy are using remote access, you can close some and try "
|
||||
"again."
|
||||
msgstr ""
|
||||
|
||||
msgid "File not exists."
|
||||
msgid "File does not exist."
|
||||
msgstr ""
|
||||
|
||||
msgid "File checksum error. Please retry."
|
||||
|
@ -4707,6 +4768,9 @@ msgstr ""
|
|||
msgid "Control"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Parts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Options"
|
||||
msgstr ""
|
||||
|
||||
|
@ -4928,6 +4992,36 @@ msgstr ""
|
|||
msgid "Skip"
|
||||
msgstr ""
|
||||
|
||||
msgid "Newer 3mf version"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The 3mf file version is in Beta and it is newer than the current Bambu "
|
||||
"Studio version."
|
||||
msgstr ""
|
||||
|
||||
msgid "If you would like to try Bambu Studio Beta, you may click to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download Beta Version"
|
||||
msgstr ""
|
||||
|
||||
msgid "The 3mf file version is newer than the current Bambu Studio version."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Update your Bambu Studio could enable all functionality in the 3mf file."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current Version: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest Version: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Not for now"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5108,6 +5202,19 @@ msgstr ""
|
|||
msgid "Filament Tangle Detect"
|
||||
msgstr ""
|
||||
|
||||
msgid "Nozzle Type"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stainless Steel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hardened Steel"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "%.1f"
|
||||
msgstr ""
|
||||
|
||||
msgid "Global"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5293,9 +5400,6 @@ msgstr ""
|
|||
msgid "You'd better upgrade your software.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Newer 3mf version"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your "
|
||||
|
@ -5594,7 +5698,23 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
"will be kept. You may fix the meshes and try agian."
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Reason: part \"%1%\" is empty."
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Reason: part \"%1%\" does not bound a volume."
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Reason: part \"%1%\" has self intersection."
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid "Reason: \"%1%\" and another part have no intersection."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
@ -5764,6 +5884,18 @@ msgstr ""
|
|||
msgid "Set the page opened on startup."
|
||||
msgstr ""
|
||||
|
||||
msgid "Touchpad"
|
||||
msgstr ""
|
||||
|
||||
msgid "Camera style"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Select camera navigation style.\n"
|
||||
"Default: LMB+move for rotation, RMB/MMB+move for panning.\n"
|
||||
"Touchpad: Alt+move for rotation, Shift+move for panning."
|
||||
msgstr ""
|
||||
|
||||
msgid "Zoom to mouse position"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5778,6 +5910,12 @@ msgstr ""
|
|||
msgid "If enabled, use free camera. If not enabled, use constrained camera."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reverse mouse zoom"
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, reverses the direction of zoom with mouse wheel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show splash screen"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5796,6 +5934,21 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Flushing volumes: Auto-calculate every time when the filament is changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "If enabled, auto-calculate every time when filament is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remember printer configuration"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, Orca will remember and switch filament/process configuration for "
|
||||
"each printer automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
|
@ -6010,6 +6163,18 @@ msgstr ""
|
|||
msgid "The selected preset is null!"
|
||||
msgstr ""
|
||||
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "Other layer filament sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please input layer value (>= 2)."
|
||||
msgstr ""
|
||||
|
||||
msgid "Plate name"
|
||||
msgstr ""
|
||||
|
||||
|
@ -6019,7 +6184,13 @@ msgstr ""
|
|||
msgid "Print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customize"
|
||||
msgid "Same as Global"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
msgid "Spiral vase"
|
||||
msgstr ""
|
||||
|
||||
msgid "First layer filament sequence"
|
||||
|
@ -6202,9 +6373,6 @@ msgstr ""
|
|||
msgid "Send print job to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
|
@ -6285,7 +6453,10 @@ msgstr ""
|
|||
msgid "An SD card needs to be inserted before printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "The selected printer is incompatible with the chosen printer presets."
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"The selected printer (%s) is incompatible with the chosen printer profile in "
|
||||
"the slicer (%s)."
|
||||
msgstr ""
|
||||
|
||||
msgid "An SD card needs to be inserted to record timelapse."
|
||||
|
@ -6338,24 +6509,24 @@ msgid "nozzle memorized: %.1f %s"
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Your nozzle diameter in preset is not consistent with memorized nozzle "
|
||||
"diameter. Did you change your nozzle lately?"
|
||||
"Your nozzle diameter in sliced file is not consistent with memorized nozzle. "
|
||||
"If you changed your nozzle lately, please go to Device > Printer Parts to "
|
||||
"change settings."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "*Printing %s material with %s may cause nozzle damage"
|
||||
msgid ""
|
||||
"Printing high temperature material(%s material) with %s may cause nozzle "
|
||||
"damage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please fix the error above, otherwise printing cannot continue."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please click the confirm button if you still want to proceed with printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "Hardened Steel"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stainless Steel"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Connecting to the printer. Unable to cancel during the connection process."
|
||||
msgstr ""
|
||||
|
@ -6386,6 +6557,9 @@ msgstr ""
|
|||
msgid "Cannot send the print task when the upgrade is in progress"
|
||||
msgstr ""
|
||||
|
||||
msgid "The selected printer is incompatible with the chosen printer presets."
|
||||
msgstr ""
|
||||
|
||||
msgid "An SD card needs to be inserted before send to printer SD card."
|
||||
msgstr ""
|
||||
|
||||
|
@ -6579,6 +6753,20 @@ msgstr ""
|
|||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Experimental feature: Retracting and cutting off the filament at a greater "
|
||||
"distance during filament changes to minimize flush.Although it can notably "
|
||||
"reduce flush, it may also elevate the risk of nozzle clogs or other "
|
||||
"printing complications."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Experimental feature: Retracting and cutting off the filament at a greater "
|
||||
"distance during filament changes to minimize flush.Although it can notably "
|
||||
"reduce flush, it may also elevate the risk of nozzle clogs or other printing "
|
||||
"complications.Please use with the latest printer firmware."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
|
@ -6959,22 +7147,25 @@ msgstr ""
|
|||
msgid "Unsaved Changes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Transfer or discard changes"
|
||||
msgid "Actions For Unsaved Changes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Old Value"
|
||||
msgid "Preset Value"
|
||||
msgstr ""
|
||||
|
||||
msgid "New Value"
|
||||
msgid "Modified Value"
|
||||
msgstr ""
|
||||
|
||||
msgid "Transfer"
|
||||
msgid "Transfer Modified Value"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't save"
|
||||
msgstr ""
|
||||
|
||||
msgid "Discard"
|
||||
msgid "Use Preset Value"
|
||||
msgstr ""
|
||||
|
||||
msgid "Save Modified Value"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click the right mouse button to display the full text."
|
||||
|
@ -7024,16 +7215,33 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
msgid ""
|
||||
"You have changed some settings of preset \"%1%\". \n"
|
||||
"Would you like to keep these changed settings (new value) after switching "
|
||||
"preset?"
|
||||
msgid "You have changed some settings of preset \"%1%\". "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"You have changed some preset settings. \n"
|
||||
"Would you like to keep these changed settings (new value) after switching "
|
||||
"preset?"
|
||||
"\n"
|
||||
"Would you like to save these changed settings(modified value)?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\n"
|
||||
"Would you like to keep these changed settings(modified value) after "
|
||||
"switching preset?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"You have previously modified your settings and are about to overwrite them "
|
||||
"with new ones."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\n"
|
||||
"Do you want to keep your current modified settings, or use preset settings?"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\n"
|
||||
"Do you want to save your current modified settings?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Extruders count"
|
||||
|
@ -7051,6 +7259,9 @@ msgstr ""
|
|||
msgid "Select presets to compare"
|
||||
msgstr ""
|
||||
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"You can only transfer to current active profile because it has been modified."
|
||||
msgstr ""
|
||||
|
@ -7065,7 +7276,7 @@ msgid "Transfer values from left to right"
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, this dialog can be used for transver selected values from left "
|
||||
"If enabled, this dialog can be used for transfer selected values from left "
|
||||
"to right preset."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7511,6 +7722,9 @@ msgstr ""
|
|||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
msgid "resume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr ""
|
||||
|
||||
|
@ -8269,6 +8483,15 @@ msgstr ""
|
|||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Other layers print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "The number of other layers print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Other layers filament sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr ""
|
||||
|
||||
|
@ -8954,6 +9177,12 @@ msgid ""
|
|||
"printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "Nozzle height"
|
||||
msgstr ""
|
||||
|
||||
msgid "The height of nozzle tip."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bed mesh min"
|
||||
msgstr ""
|
||||
|
||||
|
@ -9551,6 +9780,15 @@ msgid ""
|
|||
"printed more slowly"
|
||||
msgstr ""
|
||||
|
||||
msgid "Precise Z height"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this to get precise z height of object after slicing. It will get the "
|
||||
"precise object height by fine-tuning the layer heights of the last few "
|
||||
"layers. Note that this is an experimental parameter."
|
||||
msgstr ""
|
||||
|
||||
msgid "Arc fitting"
|
||||
msgstr ""
|
||||
|
||||
|
@ -10296,6 +10534,24 @@ msgid ""
|
|||
"travel. Set zero to disable retraction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
"distance during changes to minimize purge.While this reduces flush "
|
||||
"significantly, it may also raise the risk of nozzle clogs or other printing "
|
||||
"problems."
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction distance when cut"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retraction length before cutting off during filament "
|
||||
"change"
|
||||
msgstr ""
|
||||
|
||||
msgid "Z hop when retract"
|
||||
msgstr ""
|
||||
|
||||
|
@ -10626,9 +10882,6 @@ msgstr ""
|
|||
msgid "Speed of internal solid infill, not the top and bottom surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Spiral vase"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Spiralize smooths out the z moves of the outer contour. And turns a solid "
|
||||
"model into a single walled print with solid bottom layers. The final "
|
||||
|
@ -11919,12 +12172,6 @@ msgstr ""
|
|||
msgid "Max Volumetric Speed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the name you want to save to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "The name cannot exceed 40 characters."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Please input valid values:\n"
|
||||
|
@ -12104,6 +12351,12 @@ msgstr ""
|
|||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the name you want to save to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "The name cannot exceed 40 characters."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only one of the results with the same name will be saved. Are you sure you "
|
||||
"want to overrides the other results?"
|
||||
|
@ -12197,9 +12450,6 @@ msgstr ""
|
|||
msgid "- ℃"
|
||||
msgstr ""
|
||||
|
||||
msgid " ℃"
|
||||
msgstr ""
|
||||
|
||||
msgid "Plate Type"
|
||||
msgstr ""
|
||||
|
||||
|
@ -12261,6 +12511,9 @@ msgstr ""
|
|||
msgid "Flow Dynamics Calibration Result"
|
||||
msgstr ""
|
||||
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
msgid "No History Result"
|
||||
msgstr ""
|
||||
|
||||
|
@ -12276,6 +12529,22 @@ msgstr ""
|
|||
msgid "Edit Flow Dynamics Calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "New Flow Dynamics Calibration"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ok"
|
||||
msgstr ""
|
||||
|
||||
msgid "The filament must be selected."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"There is already a historical calibration result with the same name: %s. "
|
||||
"Only one of the results with the same name is saved. Are you sure you want "
|
||||
"to override the historical result?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Network lookup"
|
||||
msgstr ""
|
||||
|
||||
|
@ -12640,6 +12909,13 @@ msgid ""
|
|||
"You have not selected a printer or preset yet. Please select at least one."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"The Filament name %s you created already exists. \n"
|
||||
"If you continue creating, the preset created will be displayed with its full "
|
||||
"name. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Some existing presets have failed to be created, as follows:\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -12831,10 +13107,19 @@ msgstr ""
|
|||
msgid ""
|
||||
"Please go to filament setting to edit your presets if you need.\n"
|
||||
"Please note that nozzle temperature, hot bed temperature, and maximum "
|
||||
"volumetric speed have a significant impact on printing quality. Please set "
|
||||
"volumetric speed has a significant impact on printing quality. Please set "
|
||||
"them carefully."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\n"
|
||||
"\n"
|
||||
"Studio has detected that your user presets synchronization function is not "
|
||||
"enabled, which may result in unsuccessful Filament settings on the Device "
|
||||
"page. \n"
|
||||
"Click \"Sync user presets\" to enable the synchronization function."
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer Setting"
|
||||
msgstr ""
|
||||
|
||||
|
@ -12923,6 +13208,9 @@ msgstr ""
|
|||
msgid "Please select a type you want to export"
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to create temporary folder, please try Export Configs again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit Filament"
|
||||
msgstr ""
|
||||
|
||||
|
@ -12993,6 +13281,15 @@ msgstr ""
|
|||
msgid "Daily Tips"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Your nozzle diameter in preset is not consistent with memorized nozzle "
|
||||
"diameter. Did you change your nozzle lately?"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "*Printing %s material with %s may cause nozzle damage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Need select printer"
|
||||
msgstr ""
|
||||
|
||||
|
|
BIN
resources/images/fd_pattern_manual_device.png
Normal file
After Width: | Height: | Size: 234 KiB |
5
resources/images/hum_level1_dark.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.27356 34.1636C7.27356 26.4128 22.6691 1.65861 27.1318 1.65881C31.5946 1.65902 46.3211 27.5191 46.3211 34.1636C46.3211 40.8082 40.4668 50.0033 27.1318 50.0033C13.7969 50.0033 7.27356 41.9145 7.27356 34.1636Z" fill="#23A4DC"/>
|
||||
<path d="M7.27356 34.1636C7.27356 26.4128 22.6691 1.65861 27.1318 1.65881C31.5946 1.65902 46.3211 27.5191 46.3211 34.1636C46.3211 40.8082 40.4668 50.0033 27.1318 50.0033C13.7969 50.0033 7.27356 41.9145 7.27356 34.1636Z" stroke="#E1E1E1" stroke-width="1.65888"/>
|
||||
<path d="M27.8328 23.7633C29.0869 23.7633 30.2315 24.0619 31.2667 24.6591C32.3018 25.2364 33.118 26.0725 33.7152 27.1674C34.3124 28.2423 34.611 29.4865 34.611 30.8998C34.611 32.4326 34.2725 33.7664 33.5957 34.9011C32.9388 36.0158 32.0331 36.8718 30.8785 37.469C29.7239 38.0463 28.4499 38.3349 27.0564 38.3349C25.4042 38.3349 23.9709 37.9567 22.7566 37.2003C21.5622 36.4438 20.7162 35.2992 20.2185 33.7664L23.7121 31.7658C23.9709 32.6616 24.3889 33.3384 24.9662 33.7962C25.5435 34.2541 26.2203 34.483 26.9967 34.483C27.9721 34.483 28.7186 34.1645 29.2362 33.5275C29.7737 32.8706 30.0424 32.0445 30.0424 31.0491C30.0424 30.0538 29.7637 29.2277 29.2063 28.5708C28.6688 27.8939 27.8925 27.5555 26.8773 27.5555C25.5634 27.5555 24.5183 28.2025 23.742 29.4964L20.6365 27.9736L22.1295 16.0894H33.5957V19.792H25.7724L25.1752 24.3008C26.0312 23.9425 26.9171 23.7633 27.8328 23.7633Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
5
resources/images/hum_level1_light.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M7.61029 34.1636C7.61029 26.4128 23.0058 1.65861 27.4686 1.65881C31.9313 1.65902 46.6578 27.5191 46.6578 34.1636C46.6578 40.8082 40.8035 50.0033 27.4686 50.0033C14.1336 50.0033 7.61029 41.9145 7.61029 34.1636Z" fill="#94DFFF"/>
|
||||
<path d="M7.61029 34.1636C7.61029 26.4128 23.0058 1.65861 27.4686 1.65881C31.9313 1.65902 46.6578 27.5191 46.6578 34.1636C46.6578 40.8082 40.8035 50.0033 27.4686 50.0033C14.1336 50.0033 7.61029 41.9145 7.61029 34.1636Z" stroke="#858585" stroke-width="1.65888"/>
|
||||
<path d="M28.1695 23.7633C29.4236 23.7633 30.5682 24.0619 31.6034 24.6591C32.6385 25.2364 33.4547 26.0725 34.0519 27.1674C34.6491 28.2423 34.9477 29.4865 34.9477 30.8998C34.9477 32.4326 34.6093 33.7664 33.9324 34.9011C33.2755 36.0158 32.3698 36.8718 31.2152 37.469C30.0606 38.0463 28.7866 38.3349 27.3931 38.3349C25.7409 38.3349 24.3076 37.9567 23.0933 37.2003C21.8989 36.4438 21.0529 35.2992 20.5552 33.7664L24.0488 31.7658C24.3076 32.6616 24.7257 33.3384 25.303 33.7962C25.8802 34.2541 26.5571 34.483 27.3334 34.483C28.3088 34.483 29.0553 34.1645 29.5729 33.5275C30.1104 32.8706 30.3791 32.0445 30.3791 31.0491C30.3791 30.0538 30.1004 29.2277 29.5431 28.5708C29.0056 27.8939 28.2292 27.5555 27.214 27.5555C25.9002 27.5555 24.8551 28.2025 24.0787 29.4964L20.9733 27.9736L22.4663 16.0894H33.9324V19.792H26.1092L25.512 24.3008C26.368 23.9425 27.2538 23.7633 28.1695 23.7633Z" fill="#858585"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
5
resources/images/hum_level2_dark.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.8175 13.3563C11.9964 20.8736 7.52618 29.9871 7.52618 34.1636C7.52618 41.1346 12.8028 48.379 23.5658 49.7662H30.9707C41.775 48.2858 46.5737 40.1794 46.5737 34.1636C46.5737 31.0432 43.3257 23.6847 39.4182 16.757C38.3605 16.9125 37.2906 17.0034 36.2376 17.0034C32.9249 17.0034 30.7477 16.1407 28.4866 15.2449C26.0443 14.2773 23.5042 13.2709 19.3297 13.2709C18.4199 13.2709 17.585 13.302 16.8175 13.3563Z" fill="#23A4DC"/>
|
||||
<path d="M7.52612 34.1636C7.52612 26.4128 22.9217 1.65861 27.3844 1.65881C31.8471 1.65902 46.5736 27.5191 46.5736 34.1636C46.5736 40.8082 40.7193 50.0033 27.3844 50.0033C14.0495 50.0033 7.52612 41.9145 7.52612 34.1636Z" stroke="#E1E1E1" stroke-width="1.65888"/>
|
||||
<path d="M32.1614 24.7189V29.8249H35.1176V33.5275H32.1614V37.9766H27.9213V33.5275H18.5453V30.5714L26.07 16.0894H30.6087L23.4125 29.8249H27.9213V24.7189H32.1614Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1,014 B |
5
resources/images/hum_level2_light.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.0576 13.3563C12.2364 20.8736 7.76624 29.9871 7.76624 34.1636C7.76624 41.1346 13.0429 48.379 23.8059 49.7662H31.2107C42.0151 48.2858 46.8137 40.1794 46.8137 34.1636C46.8137 31.0432 43.5658 23.6847 39.6583 16.757C38.6005 16.9125 37.5307 17.0034 36.4776 17.0034C33.165 17.0034 30.9877 16.1407 28.7266 15.2449C26.2843 14.2773 23.7442 13.2709 19.5698 13.2709C18.66 13.2709 17.825 13.302 17.0576 13.3563Z" fill="#94DFFF"/>
|
||||
<path d="M7.76617 34.1636C7.76617 26.4128 23.1617 1.65861 27.6245 1.65881C32.0872 1.65902 46.8137 27.5191 46.8137 34.1636C46.8137 40.8082 40.9594 50.0033 27.6245 50.0033C14.2895 50.0033 7.76617 41.9145 7.76617 34.1636Z" stroke="#858585" stroke-width="1.65888"/>
|
||||
<path d="M32.4015 24.7189V29.8249H35.3576V33.5275H32.4015V37.9766H28.1614V33.5275H18.7854V30.5714L26.3101 16.0894H30.8488L23.6526 29.8249H28.1614V24.7189H32.4015Z" fill="#858585"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1,016 B |
5
resources/images/hum_level3_dark.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.64204 26.4449C8.28847 29.5938 7.44196 32.3462 7.44196 34.1636C7.44196 41.1348 12.719 48.3795 23.4827 49.7664H30.8854C41.6905 48.2863 46.4895 40.1796 46.4895 34.1636C46.4895 32.6462 45.7214 30.1266 44.483 27.1418C41.9625 27.9536 38.9968 28.6157 36.1533 28.6157C32.8407 28.6157 30.6634 27.753 28.4023 26.8572C25.96 25.8896 23.4199 24.8832 19.2455 24.8832C14.3189 24.8832 11.5862 25.7958 9.88887 26.3626C9.80406 26.391 9.72183 26.4184 9.64204 26.4449Z" fill="#23A4DC"/>
|
||||
<path d="M7.44189 34.1636C7.44189 26.4128 22.8374 1.65861 27.3002 1.65881C31.7629 1.65902 46.4894 27.5191 46.4894 34.1636C46.4894 40.8082 40.6351 50.0033 27.3002 50.0033C13.9652 50.0033 7.44189 41.9145 7.44189 34.1636Z" stroke="#E1E1E1" stroke-width="1.65888"/>
|
||||
<path d="M31.0468 26.5702C32.2611 27.028 33.1867 27.7048 33.8237 28.6006C34.4608 29.4765 34.7793 30.5714 34.7793 31.8852C34.7793 33.2389 34.4309 34.4034 33.7342 35.3788C33.0573 36.3343 32.1317 37.0709 30.9572 37.5884C29.8026 38.0861 28.5186 38.3349 27.1053 38.3349C25.2938 38.3349 23.7112 37.9069 22.3576 37.051C21.0238 36.195 20.0783 34.9508 19.5209 33.3185L22.9548 31.3477C23.2733 32.3829 23.8008 33.1692 24.5373 33.7067C25.2739 34.2242 26.1 34.483 27.0157 34.483C27.9115 34.483 28.658 34.2242 29.2552 33.7067C29.8723 33.1891 30.1808 32.4725 30.1808 31.5568C30.1808 29.5462 28.648 28.5409 25.5824 28.5409H24.7762V24.9577H25.9407C27.0754 24.9577 27.9414 24.689 28.5385 24.1515C29.1557 23.5941 29.4642 22.9073 29.4642 22.0912C29.4642 21.3347 29.2154 20.7276 28.7177 20.2697C28.22 19.8119 27.5731 19.583 26.7768 19.583C25.9208 19.583 25.1743 19.8616 24.5373 20.419C23.9202 20.9565 23.4425 21.7329 23.1041 22.7481L19.8195 20.8669C20.337 19.1948 21.2428 17.9208 22.5367 17.0449C23.8306 16.1491 25.3635 15.7012 27.1351 15.7012C28.5087 15.7012 29.713 15.96 30.7482 16.4775C31.8032 16.9752 32.6194 17.6819 33.1967 18.5976C33.774 19.5133 34.0626 20.5683 34.0626 21.7627C34.0626 22.8775 33.8038 23.843 33.2863 24.6591C32.7886 25.4753 32.0421 26.1123 31.0468 26.5702Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
5
resources/images/hum_level3_light.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.80207 26.4449C8.4485 29.5938 7.60199 32.3462 7.60199 34.1636C7.60199 41.1348 12.879 48.3795 23.6428 49.7664H31.0454C41.8505 48.2863 46.6495 40.1796 46.6495 34.1636C46.6495 32.6462 45.8815 30.1266 44.643 27.1418C42.1225 27.9536 39.1568 28.6157 36.3134 28.6157C33.0007 28.6157 30.8235 27.753 28.5624 26.8572C26.1201 25.8896 23.58 24.8832 19.4055 24.8832C14.4789 24.8832 11.7462 25.7958 10.0489 26.3626C9.96409 26.391 9.88186 26.4184 9.80207 26.4449Z" fill="#94DFFF"/>
|
||||
<path d="M7.60193 34.1636C7.60193 26.4128 22.9975 1.65861 27.4602 1.65881C31.9229 1.65902 46.6494 27.5191 46.6494 34.1636C46.6494 40.8082 40.7952 50.0033 27.4602 50.0033C14.1253 50.0033 7.60193 41.9145 7.60193 34.1636Z" stroke="#858585" stroke-width="1.65888"/>
|
||||
<path d="M31.2068 26.5702C32.4211 27.028 33.3468 27.7048 33.9838 28.6006C34.6208 29.4765 34.9393 30.5714 34.9393 31.8852C34.9393 33.2389 34.5909 34.4034 33.8942 35.3788C33.2174 36.3343 32.2917 37.0709 31.1172 37.5884C29.9626 38.0861 28.6787 38.3349 27.2653 38.3349C25.4538 38.3349 23.8712 37.9069 22.5176 37.051C21.1839 36.195 20.2383 34.9508 19.6809 33.3185L23.1148 31.3477C23.4333 32.3829 23.9608 33.1692 24.6974 33.7067C25.4339 34.2242 26.26 34.483 27.1757 34.483C28.0715 34.483 28.818 34.2242 29.4152 33.7067C30.0323 33.1891 30.3409 32.4725 30.3409 31.5568C30.3409 29.5462 28.8081 28.5409 25.7425 28.5409H24.9362V24.9577H26.1008C27.2355 24.9577 28.1014 24.689 28.6986 24.1515C29.3157 23.5941 29.6242 22.9073 29.6242 22.0912C29.6242 21.3347 29.3754 20.7276 28.8777 20.2697C28.3801 19.8119 27.7331 19.583 26.9369 19.583C26.0809 19.583 25.3344 19.8616 24.6974 20.419C24.0803 20.9565 23.6025 21.7329 23.2641 22.7481L19.9795 20.8669C20.4971 19.1948 21.4028 17.9208 22.6968 17.0449C23.9907 16.1491 25.5235 15.7012 27.2952 15.7012C28.6687 15.7012 29.8731 15.96 30.9082 16.4775C31.9633 16.9752 32.7794 17.6819 33.3567 18.5976C33.934 19.5133 34.2227 20.5683 34.2227 21.7627C34.2227 22.8775 33.9639 23.843 33.4463 24.6591C32.9486 25.4753 32.2021 26.1123 31.2068 26.5702Z" fill="#858585"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
5
resources/images/hum_level4_dark.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.7087 38.3055C43.8031 44.0795 37.9192 50.0033 27.2161 50.0033C16.4344 50.0033 10.1056 44.7155 8.07727 38.5938L8.50623 38.3615C8.86449 38.2887 9.28631 38.1478 9.80471 37.9747C11.502 37.4079 14.2347 36.4952 19.1613 36.4952C23.3358 36.4952 25.8759 37.5016 28.3182 38.4693C30.5793 39.3651 32.7565 40.2277 36.0692 40.2277C39.4226 40.2277 42.946 39.3069 45.7087 38.3055Z" fill="#23A4DC"/>
|
||||
<path d="M7.35773 34.1636C7.35773 26.4128 22.7533 1.65861 27.216 1.65881C31.6787 1.65902 46.4052 27.5191 46.4052 34.1636C46.4052 40.8082 40.551 50.0033 27.216 50.0033C13.8811 50.0033 7.35773 41.9145 7.35773 34.1636Z" stroke="#E1E1E1" stroke-width="1.65888"/>
|
||||
<path d="M26.1253 34.1844H34.8742V37.9766H19.795V35.1698L26.3941 27.7646C27.5287 26.4905 28.315 25.4952 28.753 24.7786C29.2108 24.042 29.4398 23.2856 29.4398 22.5092C29.4398 21.6532 29.2009 20.9665 28.7231 20.4489C28.2454 19.9313 27.5984 19.6725 26.7822 19.6725C25.9462 19.6725 25.2096 19.9811 24.5726 20.5982C23.9356 21.1954 23.4479 22.0514 23.1095 23.1661L19.7054 21.1954C20.223 19.4237 21.1586 18.0701 22.5123 17.1344C23.8659 16.1789 25.4286 15.7012 27.2003 15.7012C28.5937 15.7012 29.7981 15.9898 30.8133 16.5671C31.8484 17.1245 32.6348 17.9008 33.1722 18.8962C33.7296 19.8915 34.0083 21.0262 34.0083 22.3002C34.0083 23.5543 33.6998 24.7288 33.0827 25.8237C32.4855 26.8986 31.4105 28.302 29.8578 30.0339L26.1253 34.1844Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
5
resources/images/hum_level4_light.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.7887 38.3055C43.8831 44.0795 37.9992 50.0033 27.296 50.0033C16.5143 50.0033 10.1855 44.7155 8.15723 38.5938L8.58618 38.3615C8.94444 38.2887 9.36627 38.1478 9.88467 37.9747C11.582 37.4079 14.3146 36.4952 19.2413 36.4952C23.4157 36.4952 25.9558 37.5016 28.3981 38.4693C30.6592 39.3651 32.8365 40.2277 36.1491 40.2277C39.5025 40.2277 43.026 39.3069 45.7887 38.3055Z" fill="#94DFFF"/>
|
||||
<path d="M7.43774 34.1636C7.43774 26.4128 22.8333 1.65861 27.296 1.65881C31.7587 1.65902 46.4852 27.5191 46.4852 34.1636C46.4852 40.8082 40.631 50.0033 27.296 50.0033C13.9611 50.0033 7.43774 41.9145 7.43774 34.1636Z" stroke="#858585" stroke-width="1.65888"/>
|
||||
<path d="M26.2053 34.1844H34.9542V37.9766H19.875V35.1698L26.474 27.7646C27.6087 26.4905 28.395 25.4952 28.8329 24.7786C29.2908 24.042 29.5197 23.2856 29.5197 22.5092C29.5197 21.6532 29.2808 20.9665 28.8031 20.4489C28.3253 19.9313 27.6784 19.6725 26.8622 19.6725C26.0261 19.6725 25.2896 19.9811 24.6526 20.5982C24.0155 21.1954 23.5278 22.0514 23.1894 23.1661L19.7854 21.1954C20.303 19.4237 21.2386 18.0701 22.5922 17.1344C23.9459 16.1789 25.5085 15.7012 27.2802 15.7012C28.6737 15.7012 29.878 15.9898 30.8933 16.5671C31.9284 17.1245 32.7147 17.9008 33.2522 18.8962C33.8096 19.8915 34.0883 21.0262 34.0883 22.3002C34.0883 23.5543 33.7797 24.7288 33.1626 25.8237C32.5654 26.8986 31.4905 28.302 29.9377 30.0339L26.2053 34.1844Z" fill="#858585"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
5
resources/images/hum_level5_dark.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3138 49.5304C18.141 48.8671 14.2354 46.8575 11.5738 44.1788C13.8731 43.957 17.1373 43.7528 21.055 43.7528C25.2295 43.7528 27.2363 44.4204 29.1658 45.0624C30.9522 45.6567 32.6723 46.2289 35.985 46.2289C37.3004 46.2289 38.6419 46.1036 39.9535 45.8978C37.5851 47.6742 34.524 49.0115 30.7176 49.5304H23.3138Z" fill="#23A4DC"/>
|
||||
<path d="M7.27356 34.0043C7.27356 26.2915 22.6691 1.65861 27.1318 1.65881C31.5946 1.65902 46.3211 27.3924 46.3211 34.0043C46.3211 40.6163 40.4668 49.7663 27.1318 49.7663C13.7969 49.7663 7.27356 41.7171 7.27356 34.0043Z" stroke="#E1E1E1" stroke-width="1.65888"/>
|
||||
<path d="M19.2165 22.3651V18.2146L25.9051 14.4224H29.2793V36.3096H24.8899V19.1999L19.2165 22.3651Z" fill="white"/>
|
||||
</svg>
|
After Width: | Height: | Size: 856 B |
5
resources/images/hum_level5_light.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3138 49.5304C18.141 48.8671 14.2354 46.8575 11.5738 44.1788C13.8731 43.957 17.1373 43.7528 21.055 43.7528C25.2295 43.7528 27.2363 44.4204 29.1658 45.0624C30.9522 45.6567 32.6723 46.2289 35.985 46.2289C37.3004 46.2289 38.6419 46.1036 39.9535 45.8978C37.5851 47.6742 34.524 49.0115 30.7176 49.5304H23.3138Z" fill="#94DFFF"/>
|
||||
<path d="M7.27356 34.0043C7.27356 26.2915 22.6691 1.65861 27.1318 1.65881C31.5946 1.65902 46.3211 27.3924 46.3211 34.0043C46.3211 40.6163 40.4668 49.7663 27.1318 49.7663C13.7969 49.7663 7.27356 41.7171 7.27356 34.0043Z" stroke="#858585" stroke-width="1.65888"/>
|
||||
<path d="M19.2165 22.3651V18.2146L25.9051 14.4224H29.2793V36.3096H24.8899V19.1999L19.2165 22.3651Z" fill="#858585"/>
|
||||
</svg>
|
After Width: | Height: | Size: 858 B |
4
resources/images/hum_popup_close.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M23.3261 1.12596L0.961108 23.4909" stroke="#828280" stroke-linecap="round"/>
|
||||
<line x1="0.707107" y1="1" x2="23.3264" y2="23.6193" stroke="#828280" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 284 B |
BIN
resources/images/humidity_list_background.png
Normal file
After Width: | Height: | Size: 44 KiB |
3
resources/images/monitor_hms_new.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg width="5" height="6" viewBox="0 0 5 6" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.5 5.5C3.88071 5.5 5 4.38071 5 3C5 1.61929 3.88071 0.5 2.5 0.5C1.11929 0.5 0 1.61929 0 3C0 4.38071 1.11929 5.5 2.5 5.5Z" fill="#FC3722"/>
|
||||
</svg>
|
After Width: | Height: | Size: 248 B |
Before Width: | Height: | Size: 749 B After Width: | Height: | Size: 749 B |
|
@ -28,7 +28,6 @@
|
|||
"support_print_all":false,
|
||||
"support_print_without_sd":false,
|
||||
"support_flow_calibration":true,
|
||||
"support_build_plate_marker_detect":false,
|
||||
"support_lidar_calibration":false,
|
||||
"support_ai_monitoring":false,
|
||||
"support_first_layer_inspect":false,
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
"support_print_all":false,
|
||||
"support_print_without_sd":false,
|
||||
"support_flow_calibration":true,
|
||||
"support_build_plate_marker_detect":false,
|
||||
"support_lidar_calibration":false,
|
||||
"support_ai_monitoring":false,
|
||||
"support_first_layer_inspect":false,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.08.00.25",
|
||||
"version": "01.09.00.04",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
@ -649,6 +649,26 @@
|
|||
"name": "fdm_filament_ppa",
|
||||
"sub_path": "filament/fdm_filament_ppa.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pe",
|
||||
"sub_path": "filament/fdm_filament_pe.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pp",
|
||||
"sub_path": "filament/fdm_filament_pp.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_eva",
|
||||
"sub_path": "filament/fdm_filament_eva.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pha",
|
||||
"sub_path": "filament/fdm_filament_pha.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_bvoh",
|
||||
"sub_path": "filament/fdm_filament_bvoh.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Matte @base",
|
||||
"sub_path": "filament/Bambu PLA Matte @base.json"
|
||||
|
@ -745,6 +765,10 @@
|
|||
"name": "Bambu PLA Galaxy @base",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @base",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU 95A @base",
|
||||
"sub_path": "filament/Bambu TPU 95A @base.json"
|
||||
|
@ -789,6 +813,10 @@
|
|||
"name": "Bambu PETG Translucent @base",
|
||||
"sub_path": "filament/Bambu PETG Translucent @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCTG @base",
|
||||
"sub_path": "filament/Generic PCTG @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS @base",
|
||||
"sub_path": "filament/Bambu ABS @base.json"
|
||||
|
@ -801,6 +829,10 @@
|
|||
"name": "PolyLite ABS @base",
|
||||
"sub_path": "filament/PolyLite ABS @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS-GF @base",
|
||||
"sub_path": "filament/Bambu ABS-GF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC @base",
|
||||
"sub_path": "filament/Bambu PC @base.json"
|
||||
|
@ -821,6 +853,10 @@
|
|||
"name": "PolyLite ASA @base",
|
||||
"sub_path": "filament/PolyLite ASA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-Aero @base",
|
||||
"sub_path": "filament/Bambu ASA-Aero @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PVA @base",
|
||||
"sub_path": "filament/Generic PVA @base.json"
|
||||
|
@ -865,6 +901,10 @@
|
|||
"name": "Bambu PA6-CF @base",
|
||||
"sub_path": "filament/Bambu PA6-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PA6-GF @base",
|
||||
"sub_path": "filament/Bambu PA6-GF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic HIPS @base",
|
||||
"sub_path": "filament/Generic HIPS @base.json"
|
||||
|
@ -885,6 +925,38 @@
|
|||
"name": "Generic PPA-GF @base",
|
||||
"sub_path": "filament/Generic PPA-GF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE @base",
|
||||
"sub_path": "filament/Generic PE @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE-CF @base",
|
||||
"sub_path": "filament/Generic PE-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP @base",
|
||||
"sub_path": "filament/Generic PP @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP-CF @base",
|
||||
"sub_path": "filament/Generic PP-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP-GF @base",
|
||||
"sub_path": "filament/Generic PP-GF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic EVA @base",
|
||||
"sub_path": "filament/Generic EVA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PHA @base",
|
||||
"sub_path": "filament/Generic PHA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic BVOH @base",
|
||||
"sub_path": "filament/Generic BVOH @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Matte @BBL X1C",
|
||||
"sub_path": "filament/Bambu PLA Matte @BBL X1C.json"
|
||||
|
@ -1553,6 +1625,38 @@
|
|||
"name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL X1C",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL P1P",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL A1M",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL A1",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU 95A @BBL X1C",
|
||||
"sub_path": "filament/Bambu TPU 95A @BBL X1C.json"
|
||||
|
@ -1761,6 +1865,18 @@
|
|||
"name": "Bambu PETG Translucent @BBL A1",
|
||||
"sub_path": "filament/Bambu PETG Translucent @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCTG @BBL X1C",
|
||||
"sub_path": "filament/Generic PCTG @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCTG @BBL A1",
|
||||
"sub_path": "filament/Generic PCTG @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCTG @BBL A1M",
|
||||
"sub_path": "filament/Generic PCTG @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS @BBL X1C",
|
||||
"sub_path": "filament/Bambu ABS @BBL X1C.json"
|
||||
|
@ -1829,6 +1945,18 @@
|
|||
"name": "PolyLite ABS @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/PolyLite ABS @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS-GF @BBL X1C",
|
||||
"sub_path": "filament/Bambu ABS-GF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS-GF @BBL P1P",
|
||||
"sub_path": "filament/Bambu ABS-GF @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS-GF @BBL A1",
|
||||
"sub_path": "filament/Bambu ABS-GF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC @BBL X1C",
|
||||
"sub_path": "filament/Bambu PC @BBL X1C.json"
|
||||
|
@ -1957,6 +2085,18 @@
|
|||
"name": "PolyLite ASA @BBL A1",
|
||||
"sub_path": "filament/PolyLite ASA @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-Aero @BBL X1C",
|
||||
"sub_path": "filament/Bambu ASA-Aero @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-Aero @BBL P1P",
|
||||
"sub_path": "filament/Bambu ASA-Aero @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-Aero @BBL A1",
|
||||
"sub_path": "filament/Bambu ASA-Aero @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PVA @0.2 nozzle",
|
||||
"sub_path": "filament/Generic PVA @0.2 nozzle.json"
|
||||
|
@ -2093,6 +2233,18 @@
|
|||
"name": "Bambu PA6-CF @BBL A1",
|
||||
"sub_path": "filament/Bambu PA6-CF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PA6-GF @BBL X1C",
|
||||
"sub_path": "filament/Bambu PA6-GF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PA6-GF @BBL P1P",
|
||||
"sub_path": "filament/Bambu PA6-GF @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PA6-GF @BBL A1",
|
||||
"sub_path": "filament/Bambu PA6-GF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic HIPS @BBL X1C",
|
||||
"sub_path": "filament/Generic HIPS @BBL X1C.json"
|
||||
|
@ -2141,6 +2293,94 @@
|
|||
"name": "Generic PPA-GF @BBL X1E",
|
||||
"sub_path": "filament/Generic PPA-GF @BBL X1E.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE @BBL X1C",
|
||||
"sub_path": "filament/Generic PE @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE @BBL A1",
|
||||
"sub_path": "filament/Generic PE @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE @BBL A1M",
|
||||
"sub_path": "filament/Generic PE @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE-CF @BBL X1C",
|
||||
"sub_path": "filament/Generic PE-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE-CF @BBL A1",
|
||||
"sub_path": "filament/Generic PE-CF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PE-CF @BBL A1M",
|
||||
"sub_path": "filament/Generic PE-CF @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP @BBL X1C",
|
||||
"sub_path": "filament/Generic PP @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP @BBL A1",
|
||||
"sub_path": "filament/Generic PP @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP @BBL A1M",
|
||||
"sub_path": "filament/Generic PP @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP-CF @BBL X1C",
|
||||
"sub_path": "filament/Generic PP-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP-CF @BBL A1",
|
||||
"sub_path": "filament/Generic PP-CF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP-GF @BBL X1C",
|
||||
"sub_path": "filament/Generic PP-GF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PP-GF @BBL A1",
|
||||
"sub_path": "filament/Generic PP-GF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic EVA @BBL X1C",
|
||||
"sub_path": "filament/Generic EVA @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic EVA @BBL A1",
|
||||
"sub_path": "filament/Generic EVA @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic EVA @BBL A1M",
|
||||
"sub_path": "filament/Generic EVA @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PHA @BBL X1C",
|
||||
"sub_path": "filament/Generic PHA @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PHA @BBL A1M",
|
||||
"sub_path": "filament/Generic PHA @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PHA @BBL A1",
|
||||
"sub_path": "filament/Generic PHA @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic BVOH @BBL X1C",
|
||||
"sub_path": "filament/Generic BVOH @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic BVOH @BBL A1M",
|
||||
"sub_path": "filament/Generic BVOH @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic BVOH @BBL A1",
|
||||
"sub_path": "filament/Generic BVOH @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "PolyTerra PLA @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json"
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
|
|
|
@ -20,6 +20,9 @@
|
|||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
|
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB00_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
|
|
|
@ -5,12 +5,18 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB00_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
|
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
|
|
13
resources/profiles/BBL/filament/Bambu ABS-GF @BBL A1.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL A1",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
13
resources/profiles/BBL/filament/Bambu ABS-GF @BBL P1P.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P1P",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
}
|
22
resources/profiles/BBL/filament/Bambu ABS-GF @BBL X1C.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X1C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"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"
|
||||
]
|
||||
}
|
41
resources/profiles/BBL/filament/Bambu ABS-GF @base.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "GFB50",
|
||||
"instantiation": "false",
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.08"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
|
@ -5,9 +5,6 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB01_08",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
|
|
|
@ -5,9 +5,6 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB01_03",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
|
|
@ -5,9 +5,6 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB01_04",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
|
|
|
@ -8,9 +8,6 @@
|
|||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
|
|
|
@ -5,28 +5,31 @@
|
|||
"from": "system",
|
||||
"filament_id": "GFB01",
|
||||
"instantiation": "false",
|
||||
"filament_density": [
|
||||
"1.05"
|
||||
"fan_max_speed": [
|
||||
"35"
|
||||
],
|
||||
"filament_cost": [
|
||||
"31.99"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
"filament_density": [
|
||||
"1.05"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"50"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
]
|
||||
}
|
13
resources/profiles/BBL/filament/Bambu ASA-Aero @BBL A1.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-Aero @BBL A1",
|
||||
"inherits": "Bambu ASA-Aero @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB02_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
13
resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P1P.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-Aero @BBL P1P",
|
||||
"inherits": "Bambu ASA-Aero @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB02_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
]
|
||||
}
|
22
resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X1C.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-Aero @BBL X1C",
|
||||
"inherits": "Bambu ASA-Aero @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB02_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"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"
|
||||
]
|
||||
}
|
62
resources/profiles/BBL/filament/Bambu ASA-Aero @base.json
Normal file
|
@ -0,0 +1,62 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-Aero @base",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"filament_id": "GFB02",
|
||||
"instantiation": "false",
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"50"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"49.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"0.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.52"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1.5"
|
||||
],
|
||||
"filament_type": [
|
||||
"ASA-Aero"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"5"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Normal Lift"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"50"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
]
|
||||
}
|
22
resources/profiles/BBL/filament/Bambu PA6-GF @BBL A1.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PA6-GF @BBL A1",
|
||||
"inherits": "Bambu PA6-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSN08_02",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10.5"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
22
resources/profiles/BBL/filament/Bambu PA6-GF @BBL P1P.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PA6-GF @BBL P1P",
|
||||
"inherits": "Bambu PA6-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSN08_01",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"10.5"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
]
|
||||
}
|
34
resources/profiles/BBL/filament/Bambu PA6-GF @BBL X1C.json
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PA6-GF @BBL X1C",
|
||||
"inherits": "Bambu PA6-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSN08_00",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10.5"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"265"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"265"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
44
resources/profiles/BBL/filament/Bambu PA6-GF @base.json
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PA6-GF @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"filament_id": "GFN08",
|
||||
"instantiation": "false",
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"59.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.14"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"40"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"180"
|
||||
]
|
||||
}
|
|
@ -29,6 +29,9 @@
|
|||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
|
|
|
@ -5,12 +5,18 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSC00_02",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
|
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSC00_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
|
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSC00_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
|
|
|
@ -5,6 +5,12 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSC00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
|
|
|
@ -8,6 +8,12 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
|
|
|
@ -11,6 +11,12 @@
|
|||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
|
|
|
@ -8,6 +8,12 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"13"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
|
|
|
@ -21,5 +21,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -8,6 +8,12 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
|
|
|
@ -5,6 +5,12 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSA00_00",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
|
@ -13,5 +19,8 @@
|
|||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 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}"
|
||||
]
|
||||
}
|
|
@ -8,9 +8,18 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 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}"
|
||||
]
|
||||
}
|
|
@ -8,6 +8,12 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
|
@ -15,5 +21,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -19,5 +19,8 @@
|
|||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 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}"
|
||||
]
|
||||
}
|
|
@ -19,5 +19,8 @@
|
|||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab X1 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}"
|
||||
]
|
||||
}
|
|
@ -23,5 +23,8 @@
|
|||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 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}"
|
||||
]
|
||||
}
|
|
@ -13,5 +13,8 @@
|
|||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 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}"
|
||||
]
|
||||
}
|
|
@ -10,5 +10,8 @@
|
|||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab X1 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}"
|
||||
]
|
||||
}
|
|
@ -14,5 +14,8 @@
|
|||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 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}"
|
||||
]
|
||||
}
|
|
@ -12,5 +12,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -9,5 +9,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -5,13 +5,16 @@
|
|||
"from": "system",
|
||||
"filament_id": "GFA03",
|
||||
"instantiation": "false",
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"filament_cost": [
|
||||
"25.4"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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}"
|
||||
]
|
||||
}
|
|
@ -15,5 +15,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -15,5 +15,8 @@
|
|||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 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}"
|
||||
]
|
||||
}
|
|
@ -13,5 +13,8 @@
|
|||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 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}"
|
||||
]
|
||||
}
|
|
@ -12,5 +12,8 @@
|
|||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 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}"
|
||||
]
|
||||
}
|
|
@ -15,5 +15,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -13,5 +13,8 @@
|
|||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 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}"
|
||||
]
|
||||
}
|
|
@ -18,5 +18,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -13,5 +13,8 @@
|
|||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 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}"
|
||||
]
|
||||
}
|
|
@ -15,5 +15,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|
|
@ -15,5 +15,8 @@
|
|||
"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}"
|
||||
]
|
||||
}
|