mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-21 16:02:37 +00:00
Compare commits
16
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61dbe5572f | ||
|
|
2adb631d6f | ||
|
|
1e038bfc53 | ||
|
|
cdcef47e3d | ||
|
|
4f8a31e9db | ||
|
|
ced4a31cdb | ||
|
|
8581df4a8a | ||
|
|
162cf7fd4c | ||
|
|
09d67b1bb4 | ||
|
|
64cad00569 | ||
|
|
45940a573d | ||
|
|
8b63628cf9 | ||
|
|
c8bfd2ad3e | ||
|
|
3eae4c6997 | ||
|
|
83eaf3bcfc | ||
|
|
454ef1571b |
@@ -75,8 +75,6 @@ jobs:
|
|||||||
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
||||||
base="$head^"
|
base="$head^"
|
||||||
fi
|
fi
|
||||||
echo "Diffing $base..$head"
|
|
||||||
|
|
||||||
mapfile -t candidates < <(
|
mapfile -t candidates < <(
|
||||||
git diff --name-only "$base" "$head" -- resources/profiles \
|
git diff --name-only "$base" "$head" -- resources/profiles \
|
||||||
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
||||||
@@ -95,7 +93,6 @@ jobs:
|
|||||||
done
|
done
|
||||||
|
|
||||||
if [ "${#vendors[@]}" -eq 0 ]; then
|
if [ "${#vendors[@]}" -eq 0 ]; then
|
||||||
echo "No changed vendor profiles in this push; nothing to publish."
|
|
||||||
echo "vendors=" >> "$GITHUB_OUTPUT"
|
echo "vendors=" >> "$GITHUB_OUTPUT"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
@@ -138,13 +135,10 @@ jobs:
|
|||||||
done
|
done
|
||||||
|
|
||||||
if [ "${#unauthorized[@]}" -ne 0 ]; then
|
if [ "${#unauthorized[@]}" -ne 0 ]; then
|
||||||
echo "Changed vendor profiles are not covered by FOLDER_MERGERS: ${unauthorized[*]}"
|
|
||||||
echo "No profile caches will be published for this push."
|
|
||||||
echo "vendors=" >> "$GITHUB_OUTPUT"
|
echo "vendors=" >> "$GITHUB_OUTPUT"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf 'Changed vendors: %s\n' "${vendors[*]}"
|
|
||||||
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
|
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Resolve Orca version
|
- name: Resolve Orca version
|
||||||
@@ -163,7 +157,6 @@ jobs:
|
|||||||
# OrcaCloud keys R2 on; orca_ver (X.Y.Z) is the asset-name prefix.
|
# OrcaCloud keys R2 on; orca_ver (X.Y.Z) is the asset-name prefix.
|
||||||
echo "release_tag=$raw" >> "$GITHUB_OUTPUT"
|
echo "release_tag=$raw" >> "$GITHUB_OUTPUT"
|
||||||
echo "orca_ver=$orca_ver" >> "$GITHUB_OUTPUT"
|
echo "orca_ver=$orca_ver" >> "$GITHUB_OUTPUT"
|
||||||
echo "Orca version: release_tag=$raw asset_prefix=$orca_ver"
|
|
||||||
|
|
||||||
- name: Validate profile versions
|
- name: Validate profile versions
|
||||||
id: pver
|
id: pver
|
||||||
@@ -179,7 +172,6 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
printf '%s\t%s\n' "$v" "$pv" >> "$RUNNER_TEMP/pver.tsv"
|
printf '%s\t%s\n' "$v" "$pv" >> "$RUNNER_TEMP/pver.tsv"
|
||||||
echo "$v -> $pv"
|
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Download generate_system_cache
|
- name: Download generate_system_cache
|
||||||
@@ -214,7 +206,6 @@ jobs:
|
|||||||
pv="$(awk -F'\t' -v v="$v" '$1==v{print $2}' "$RUNNER_TEMP/pver.tsv")"
|
pv="$(awk -F'\t' -v v="$v" '$1==v{print $2}' "$RUNNER_TEMP/pver.tsv")"
|
||||||
name="${orca_ver}_${v}_${pv}_${ts}.zip"
|
name="${orca_ver}_${v}_${pv}_${ts}.zip"
|
||||||
( cd resources/profiles && zip -q -j "$out/$name" "$v.opc" )
|
( cd resources/profiles && zip -q -j "$out/$name" "$v.opc" )
|
||||||
echo "packaged $name"
|
|
||||||
done
|
done
|
||||||
echo "dir=$out" >> "$GITHUB_OUTPUT"
|
echo "dir=$out" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
|||||||
@@ -520,6 +520,28 @@ jobs:
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.warning(`Merged successfully, but dispatching build_all.yml failed: ${error.message}`);
|
core.warning(`Merged successfully, but dispatching build_all.yml failed: ${error.message}`);
|
||||||
}
|
}
|
||||||
|
// ---- re-kick the profile publish ----
|
||||||
|
// Same reason as above: post_merge_profiles.yml is push-triggered, so a
|
||||||
|
// GITHUB_TOKEN merge never starts it. workflow_dispatch skips the paths:
|
||||||
|
// filter, so only dispatch when the PR actually touched profiles.
|
||||||
|
const touchesProfiles = files.some((file) =>
|
||||||
|
[file.filename, file.previous_filename]
|
||||||
|
.filter(Boolean)
|
||||||
|
.some((p) => p.startsWith('resources/profiles/'))
|
||||||
|
);
|
||||||
|
if (touchesProfiles) {
|
||||||
|
try {
|
||||||
|
await github.rest.actions.createWorkflowDispatch({
|
||||||
|
owner,
|
||||||
|
repo,
|
||||||
|
workflow_id: 'post_merge_profiles.yml',
|
||||||
|
ref: pr.base.ref
|
||||||
|
});
|
||||||
|
core.info(`Dispatched post_merge_profiles.yml on ${pr.base.ref}.`);
|
||||||
|
} catch (error) {
|
||||||
|
core.warning(`Merged successfully, but dispatching post_merge_profiles.yml failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
label-profile:
|
label-profile:
|
||||||
# Independent of the merge rules: any PR that changes only files inside
|
# Independent of the merge rules: any PR that changes only files inside
|
||||||
@@ -529,7 +551,7 @@ jobs:
|
|||||||
&& github.event_name == 'pull_request_target'
|
&& github.event_name == 'pull_request_target'
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pull-requests: read
|
pull-requests: write
|
||||||
issues: write
|
issues: write
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
@@ -636,7 +658,7 @@ jobs:
|
|||||||
&& github.event_name == 'pull_request_target'
|
&& github.event_name == 'pull_request_target'
|
||||||
permissions:
|
permissions:
|
||||||
contents: read # delegatable subtree, for file modes
|
contents: read # delegatable subtree, for file modes
|
||||||
pull-requests: read
|
pull-requests: write
|
||||||
issues: write # label + comment
|
issues: write # label + comment
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
|||||||
+1
-42
@@ -826,37 +826,6 @@ find_package(OpenSSL REQUIRED)
|
|||||||
find_package(CURL REQUIRED)
|
find_package(CURL REQUIRED)
|
||||||
find_package(Freetype REQUIRED)
|
find_package(Freetype REQUIRED)
|
||||||
|
|
||||||
if (SLIC3R_GUI)
|
|
||||||
# LibDataChannel's installed export references its bundled dependencies,
|
|
||||||
# but does not install their CMake targets. Recreate those targets from
|
|
||||||
# the same dependency prefix before loading the LibDataChannel config.
|
|
||||||
if (NOT TARGET Usrsctp::usrsctp)
|
|
||||||
find_library(_ORCA_USRSCTP_LIBRARY NAMES usrsctp
|
|
||||||
PATHS "${CMAKE_PREFIX_PATH}/lib" NO_DEFAULT_PATH)
|
|
||||||
if (_ORCA_USRSCTP_LIBRARY)
|
|
||||||
add_library(Usrsctp::usrsctp UNKNOWN IMPORTED GLOBAL)
|
|
||||||
set_target_properties(Usrsctp::usrsctp PROPERTIES
|
|
||||||
IMPORTED_LOCATION "${_ORCA_USRSCTP_LIBRARY}"
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES C
|
|
||||||
INTERFACE_LINK_LIBRARIES "Threads::Threads")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if (NOT TARGET LibJuice::LibJuice)
|
|
||||||
find_library(_ORCA_LIBJUICE_LIBRARY NAMES juice
|
|
||||||
PATHS "${CMAKE_PREFIX_PATH}/lib" NO_DEFAULT_PATH)
|
|
||||||
if (_ORCA_LIBJUICE_LIBRARY)
|
|
||||||
add_library(LibJuice::LibJuice UNKNOWN IMPORTED GLOBAL)
|
|
||||||
set_target_properties(LibJuice::LibJuice PROPERTIES
|
|
||||||
IMPORTED_LOCATION "${_ORCA_LIBJUICE_LIBRARY}"
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES C
|
|
||||||
INTERFACE_LINK_LIBRARIES "Threads::Threads")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_package(LibDataChannel CONFIG REQUIRED)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
add_library(libcurl INTERFACE)
|
add_library(libcurl INTERFACE)
|
||||||
target_link_libraries(libcurl INTERFACE CURL::libcurl)
|
target_link_libraries(libcurl INTERFACE CURL::libcurl)
|
||||||
@@ -1137,7 +1106,6 @@ function(orcaslicer_copy_dlls target config postfix output_dlls)
|
|||||||
endif ()
|
endif ()
|
||||||
file(COPY ${_occt_dlls}
|
file(COPY ${_occt_dlls}
|
||||||
${CMAKE_PREFIX_PATH}/bin/freetype.dll
|
${CMAKE_PREFIX_PATH}/bin/freetype.dll
|
||||||
${CMAKE_PREFIX_PATH}/bin/avformat-61.dll
|
|
||||||
${CMAKE_PREFIX_PATH}/bin/avcodec-61.dll
|
${CMAKE_PREFIX_PATH}/bin/avcodec-61.dll
|
||||||
${CMAKE_PREFIX_PATH}/bin/swresample-5.dll
|
${CMAKE_PREFIX_PATH}/bin/swresample-5.dll
|
||||||
${CMAKE_PREFIX_PATH}/bin/swscale-8.dll
|
${CMAKE_PREFIX_PATH}/bin/swscale-8.dll
|
||||||
@@ -1150,7 +1118,6 @@ function(orcaslicer_copy_dlls target config postfix output_dlls)
|
|||||||
${_out_dir}/WebView2Loader.dll
|
${_out_dir}/WebView2Loader.dll
|
||||||
|
|
||||||
${_out_dir}/freetype.dll
|
${_out_dir}/freetype.dll
|
||||||
${_out_dir}/avformat-61.dll
|
|
||||||
${_out_dir}/avcodec-61.dll
|
${_out_dir}/avcodec-61.dll
|
||||||
${_out_dir}/swresample-5.dll
|
${_out_dir}/swresample-5.dll
|
||||||
${_out_dir}/swscale-8.dll
|
${_out_dir}/swscale-8.dll
|
||||||
@@ -1175,10 +1142,7 @@ function(orcaslicer_copy_sos target config postfix output_sos)
|
|||||||
set(_out_dir "${CMAKE_CURRENT_BINARY_DIR}")
|
set(_out_dir "${CMAKE_CURRENT_BINARY_DIR}")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
file(COPY ${CMAKE_PREFIX_PATH}/lib/libavformat.so
|
file(COPY ${CMAKE_PREFIX_PATH}/lib/libavcodec.so
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavformat.so.61
|
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavformat.so.61.1.100
|
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavcodec.so
|
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61
|
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61.3.100
|
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61.3.100
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavutil.so
|
${CMAKE_PREFIX_PATH}/lib/libavutil.so
|
||||||
@@ -1193,9 +1157,6 @@ function(orcaslicer_copy_sos target config postfix output_sos)
|
|||||||
DESTINATION ${_out_dir})
|
DESTINATION ${_out_dir})
|
||||||
|
|
||||||
set(${output_sos}
|
set(${output_sos}
|
||||||
${_out_dir}/libavformat.so
|
|
||||||
${_out_dir}/libavformat.so.61
|
|
||||||
${_out_dir}/libavformat.so.61.1.100
|
|
||||||
${_out_dir}/libavcodec.so
|
${_out_dir}/libavcodec.so
|
||||||
${_out_dir}/libavcodec.so.61
|
${_out_dir}/libavcodec.so.61
|
||||||
${_out_dir}/libavcodec.so.61.3.100
|
${_out_dir}/libavcodec.so.61.3.100
|
||||||
@@ -1325,8 +1286,6 @@ endif ()
|
|||||||
|
|
||||||
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
set(LIBRARY_FILES
|
set(LIBRARY_FILES
|
||||||
${LIBDIR_BIN}/libavformat.so.61
|
|
||||||
${LIBDIR_BIN}/libavformat.so.61.1.100
|
|
||||||
${LIBDIR_BIN}/libavcodec.so.61
|
${LIBDIR_BIN}/libavcodec.so.61
|
||||||
${LIBDIR_BIN}/libavcodec.so.61.3.100
|
${LIBDIR_BIN}/libavcodec.so.61.3.100
|
||||||
${LIBDIR_BIN}/libavutil.so.59
|
${LIBDIR_BIN}/libavutil.so.59
|
||||||
|
|||||||
Vendored
+11
-23
@@ -156,7 +156,7 @@ if (NOT _is_multi AND NOT CMAKE_BUILD_TYPE)
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
function(orcaslicer_add_cmake_project projectname)
|
function(orcaslicer_add_cmake_project projectname)
|
||||||
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND;SOURCE_DIR" "CMAKE_ARGS" ${ARGN})
|
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND" "CMAKE_ARGS" ${ARGN})
|
||||||
|
|
||||||
# MSVC is true for clang-cl as well, so the sub-build toolchain has to key on the
|
# MSVC is true for clang-cl as well, so the sub-build toolchain has to key on the
|
||||||
# generator. A non-Visual-Studio superbuild passes its own generator down, and with
|
# generator. A non-Visual-Studio superbuild passes its own generator down, and with
|
||||||
@@ -202,18 +202,12 @@ function(orcaslicer_add_cmake_project projectname)
|
|||||||
set(_build_j "-j${NPROC}")
|
set(_build_j "-j${NPROC}")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
set(_source_dir_arg "")
|
|
||||||
if (P_ARGS_SOURCE_DIR)
|
|
||||||
set(_source_dir_arg SOURCE_DIR ${P_ARGS_SOURCE_DIR})
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
||||||
ExternalProject_Add(
|
ExternalProject_Add(
|
||||||
dep_${projectname}
|
dep_${projectname}
|
||||||
EXCLUDE_FROM_ALL ON
|
EXCLUDE_FROM_ALL ON
|
||||||
INSTALL_DIR ${DESTDIR}
|
INSTALL_DIR ${DESTDIR}
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
||||||
${_source_dir_arg}
|
|
||||||
${_gen}
|
${_gen}
|
||||||
CMAKE_ARGS
|
CMAKE_ARGS
|
||||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||||
@@ -246,14 +240,12 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
|||||||
# note for future devs: shared libs may actually create a size reduction
|
# note for future devs: shared libs may actually create a size reduction
|
||||||
# but orcaslicer_deps tends to get really funny regarding linking after that (notably boost)
|
# but orcaslicer_deps tends to get really funny regarding linking after that (notably boost)
|
||||||
# so, as much as I would like to use that, it's not happening
|
# so, as much as I would like to use that, it's not happening
|
||||||
if (NOT P_ARGS_SOURCE_DIR)
|
ExternalProject_Add_Step(dep_${projectname} free_download_space
|
||||||
ExternalProject_Add_Step(dep_${projectname} free_download_space
|
DEPENDEES download # do after download
|
||||||
DEPENDEES download # do after download
|
COMMENT "Freeing Space: Removing source archive"
|
||||||
COMMENT "Freeing Space: Removing source archive"
|
WORKING_DIRECTORY ${DEP_DOWNLOAD_DIR}
|
||||||
WORKING_DIRECTORY ${DEP_DOWNLOAD_DIR}
|
COMMAND ${CMAKE_COMMAND} -E rm -r ${projectname}
|
||||||
COMMAND ${CMAKE_COMMAND} -E rm -rf ${projectname}
|
)
|
||||||
)
|
|
||||||
endif ()
|
|
||||||
ExternalProject_Add_Step(dep_${projectname} free_build_space
|
ExternalProject_Add_Step(dep_${projectname} free_build_space
|
||||||
DEPENDEES install # do after install
|
DEPENDEES install # do after install
|
||||||
COMMENT "Freeing Space: Removing source and build files"
|
COMMENT "Freeing Space: Removing source and build files"
|
||||||
@@ -267,7 +259,6 @@ else()
|
|||||||
EXCLUDE_FROM_ALL ON
|
EXCLUDE_FROM_ALL ON
|
||||||
INSTALL_DIR ${DESTDIR}
|
INSTALL_DIR ${DESTDIR}
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
||||||
${_source_dir_arg}
|
|
||||||
${_gen}
|
${_gen}
|
||||||
CMAKE_ARGS
|
CMAKE_ARGS
|
||||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||||
@@ -395,6 +386,10 @@ include(libnoise/libnoise.cmake)
|
|||||||
|
|
||||||
include(Draco/Draco.cmake)
|
include(Draco/Draco.cmake)
|
||||||
|
|
||||||
|
include(FFMPEG/FFMPEG.cmake)
|
||||||
|
include(Assimp/Assimp.cmake)
|
||||||
|
|
||||||
|
|
||||||
# I *think* 1.1 is used for *just* md5 hashing?
|
# I *think* 1.1 is used for *just* md5 hashing?
|
||||||
# 3.1 has everything in the right place, but the md5 funcs used are deprecated
|
# 3.1 has everything in the right place, but the md5 funcs used are deprecated
|
||||||
# a grep across the repo shows it is used for other things
|
# a grep across the repo shows it is used for other things
|
||||||
@@ -405,12 +400,6 @@ if(NOT OPENSSL_FOUND)
|
|||||||
set(OPENSSL_PKG dep_OpenSSL)
|
set(OPENSSL_PKG dep_OpenSSL)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(FFMPEG/FFMPEG.cmake)
|
|
||||||
include(Assimp/Assimp.cmake)
|
|
||||||
|
|
||||||
include(DataChannel/DataChannel.cmake)
|
|
||||||
set(DATACHANNEL_PKG dep_DataChannel)
|
|
||||||
|
|
||||||
# we don't want to load a "wrong" openssl when loading curl
|
# we don't want to load a "wrong" openssl when loading curl
|
||||||
# so, just don't even bother
|
# so, just don't even bother
|
||||||
# ...i think this is how it works? change if wrong
|
# ...i think this is how it works? change if wrong
|
||||||
@@ -484,7 +473,6 @@ set(_dep_list
|
|||||||
dep_wxInspector
|
dep_wxInspector
|
||||||
dep_FFMPEG
|
dep_FFMPEG
|
||||||
dep_Assimp
|
dep_Assimp
|
||||||
${DATACHANNEL_PKG}
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
|
|||||||
Vendored
-37
@@ -1,37 +0,0 @@
|
|||||||
# libdatachannel is the native ICE/DTLS/SCTP implementation used by the
|
|
||||||
# GUI WebRTC camera controller. Keep the source revision fixed: the signaling
|
|
||||||
# protocol is evolving independently of this transport dependency.
|
|
||||||
#
|
|
||||||
# It vendors plog, usrsctp and libjuice as git submodules, which a plain
|
|
||||||
# GitHub tag tarball does not include. The flatpak sandbox has no network
|
|
||||||
# access during the build, so there the manifest itself clones the repo
|
|
||||||
# (submodules and all) into the dependency download directory before the
|
|
||||||
# sandbox closes. ExternalProject_Add is pointed at that existing checkout
|
|
||||||
# instead of being given its own network-dependent download method.
|
|
||||||
if (FLATPAK)
|
|
||||||
set(_datachannel_source
|
|
||||||
SOURCE_DIR ${DEP_DOWNLOAD_DIR}/DataChannel
|
|
||||||
)
|
|
||||||
else()
|
|
||||||
set(_datachannel_source
|
|
||||||
GIT_REPOSITORY https://github.com/paullouisageneau/libdatachannel.git
|
|
||||||
GIT_TAG v0.24.5
|
|
||||||
GIT_SHALLOW ON
|
|
||||||
GIT_SUBMODULES_RECURSE ON
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
orcaslicer_add_cmake_project(DataChannel
|
|
||||||
DEPENDS ${OPENSSL_PKG}
|
|
||||||
CMAKE_ARGS
|
|
||||||
-DNO_EXAMPLES=ON
|
|
||||||
-DNO_TESTS=ON
|
|
||||||
-DNO_WEBSOCKET=ON
|
|
||||||
-DNO_MEDIA=ON
|
|
||||||
-DUSE_NICE=OFF
|
|
||||||
-DUSE_SYSTEM_JUICE=OFF
|
|
||||||
-DUSE_SYSTEM_USRSCTP=OFF
|
|
||||||
-DOPENSSL_ROOT_DIR:PATH=${DESTDIR}
|
|
||||||
-DOPENSSL_USE_STATIC_LIBS=ON
|
|
||||||
${_datachannel_source}
|
|
||||||
)
|
|
||||||
Vendored
+7
-23
@@ -1,26 +1,14 @@
|
|||||||
set(_conf_cmd ./configure)
|
set(_conf_cmd ./configure)
|
||||||
|
|
||||||
set(_ffmpeg_depends)
|
|
||||||
set(_ffmpeg_configure_command ${_conf_cmd})
|
|
||||||
if (TARGET dep_OpenSSL)
|
|
||||||
set(_ffmpeg_depends DEPENDS dep_OpenSSL)
|
|
||||||
set(_ffmpeg_configure_command
|
|
||||||
${CMAKE_COMMAND} -E env
|
|
||||||
"PKG_CONFIG_PATH=${DESTDIR}/lib/pkgconfig:$ENV{PKG_CONFIG_PATH}"
|
|
||||||
${_conf_cmd}
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
set(_source_dir "${CMAKE_BINARY_DIR}/dep_FFMPEG-prefix/src/dep_FFMPEG")
|
set(_source_dir "${CMAKE_BINARY_DIR}/dep_FFMPEG-prefix/src/dep_FFMPEG")
|
||||||
|
|
||||||
set(PREBUILD_URL_arm64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-09-18-16-50/ffmpeg-n7.0.3-33-g887d4b4919-winarm64-orca-shared-7.0.zip")
|
set(PREBUILD_URL_arm64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-07-17-14-28/ffmpeg-n7.0.3-31-g9b6ffd74b5-winarm64-orca-shared-7.0.zip")
|
||||||
set(PREBUILD_HASH_arm64 "da480cbb39680056de824c57ec4dc3bd577b479ebbc310ff1f9dc55cf014b4c1")
|
set(PREBUILD_HASH_arm64 "12f4140279f2f8469885e1b5b2e8be9d788882914c21523cacd56989f3548054")
|
||||||
set(PREBUILD_URL_x64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-09-18-16-50/ffmpeg-n7.0.3-33-g887d4b4919-win64-orca-shared-7.0.zip")
|
set(PREBUILD_URL_x64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-07-17-14-28/ffmpeg-n7.0.3-31-g9b6ffd74b5-win64-orca-shared-7.0.zip")
|
||||||
set(PREBUILD_HASH_x64 "85da19daf198f5548259d8aabb349db84997a3f6e6886d8d7764114add9c6dae")
|
set(PREBUILD_HASH_x64 "e65916020ddb9ef84b2666dfbcbfc9b1d67f69d15b4a66db53754637bf2d498c")
|
||||||
|
|
||||||
ExternalProject_Add(dep_FFMPEG
|
ExternalProject_Add(dep_FFMPEG
|
||||||
${_ffmpeg_depends}
|
|
||||||
URL ${PREBUILD_URL_${DEPS_ARCH}}
|
URL ${PREBUILD_URL_${DEPS_ARCH}}
|
||||||
URL_HASH SHA256=${PREBUILD_HASH_${DEPS_ARCH}}
|
URL_HASH SHA256=${PREBUILD_HASH_${DEPS_ARCH}}
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
||||||
@@ -33,8 +21,6 @@ if (MSVC)
|
|||||||
)
|
)
|
||||||
|
|
||||||
else ()
|
else ()
|
||||||
set(_openssl_cmd --enable-openssl)
|
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
set(_minos_cmd
|
set(_minos_cmd
|
||||||
"--extra-cflags=-mmacosx-version-min=${DEP_OSX_TARGET}"
|
"--extra-cflags=-mmacosx-version-min=${DEP_OSX_TARGET}"
|
||||||
@@ -66,11 +52,10 @@ else ()
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
ExternalProject_Add(dep_FFMPEG
|
ExternalProject_Add(dep_FFMPEG
|
||||||
${_ffmpeg_depends}
|
|
||||||
URL https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n7.0.3.tar.gz
|
URL https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n7.0.3.tar.gz
|
||||||
URL_HASH SHA256=DEEDCABE339165214A3637DF4C86A507AEF0D793CF8774FF68735F4737E8DDBC
|
URL_HASH SHA256=DEEDCABE339165214A3637DF4C86A507AEF0D793CF8774FF68735F4737E8DDBC
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
||||||
CONFIGURE_COMMAND ${_ffmpeg_configure_command}
|
CONFIGURE_COMMAND ${_conf_cmd}
|
||||||
${_cross_cmd}
|
${_cross_cmd}
|
||||||
${_pic_cmd}
|
${_pic_cmd}
|
||||||
${_arch_cmd}
|
${_arch_cmd}
|
||||||
@@ -78,21 +63,20 @@ else ()
|
|||||||
"--prefix=${DESTDIR}"
|
"--prefix=${DESTDIR}"
|
||||||
${_link_cmd}
|
${_link_cmd}
|
||||||
${_minos_cmd}
|
${_minos_cmd}
|
||||||
${_openssl_cmd}
|
|
||||||
--disable-doc
|
--disable-doc
|
||||||
--enable-small
|
--enable-small
|
||||||
--disable-outdevs
|
--disable-outdevs
|
||||||
--disable-filters
|
--disable-filters
|
||||||
--enable-filter=*null*,afade,*fifo,*format,*resample,aeval,allrgb,allyuv,atempo,pan,*bars,color,*key,crop,draw*,eq*,framerate,*_qsv,*_vaapi,*v4l2*,hw*,scale,volume,test*
|
--enable-filter=*null*,afade,*fifo,*format,*resample,aeval,allrgb,allyuv,atempo,pan,*bars,color,*key,crop,draw*,eq*,framerate,*_qsv,*_vaapi,*v4l2*,hw*,scale,volume,test*
|
||||||
--disable-protocols
|
--disable-protocols
|
||||||
--enable-protocol=file,fd,pipe,http,https,rtp,tcp,udp
|
--enable-protocol=file,fd,pipe,rtp,udp
|
||||||
--disable-muxers
|
--disable-muxers
|
||||||
--enable-muxer=rtp
|
--enable-muxer=rtp
|
||||||
--disable-encoders
|
--disable-encoders
|
||||||
--disable-decoders
|
--disable-decoders
|
||||||
--enable-decoder=*aac*,h264*,mp3*,mjpeg,rv*
|
--enable-decoder=*aac*,h264*,mp3*,mjpeg,rv*
|
||||||
--disable-demuxers
|
--disable-demuxers
|
||||||
--enable-demuxer=h264,mp3,mov,mpjpeg,rtsp,sdp
|
--enable-demuxer=h264,mp3,mov
|
||||||
--disable-zlib
|
--disable-zlib
|
||||||
--disable-avdevice
|
--disable-avdevice
|
||||||
BUILD_IN_SOURCE ON
|
BUILD_IN_SOURCE ON
|
||||||
|
|||||||
Vendored
+3
-3
@@ -5,7 +5,7 @@
|
|||||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||||
typedef unsigned long long t1;typedef t1*t2;
|
typedef unsigned long long t1;typedef t1*t2;
|
||||||
-void g(){}
|
-void g(){}
|
||||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||||
void h(){}
|
void h(){}
|
||||||
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
||||||
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||||
typedef unsigned long long t1;typedef t1*t2;
|
typedef unsigned long long t1;typedef t1*t2;
|
||||||
-void g(){}
|
-void g(){}
|
||||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||||
void h(){}
|
void h(){}
|
||||||
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
||||||
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||||
typedef unsigned long long t1;typedef t1*t2;
|
typedef unsigned long long t1;typedef t1*t2;
|
||||||
-void g(){}
|
-void g(){}
|
||||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||||
void h(){}
|
void h(){}
|
||||||
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
||||||
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
||||||
|
|||||||
Vendored
+1
@@ -15,6 +15,7 @@ orcaslicer_add_cmake_project(
|
|||||||
-DTBB_BUILD_SHARED=OFF
|
-DTBB_BUILD_SHARED=OFF
|
||||||
-DTBB_BUILD_TESTS=OFF
|
-DTBB_BUILD_TESTS=OFF
|
||||||
-DTBB_TEST=OFF
|
-DTBB_TEST=OFF
|
||||||
|
-DTBB_DISABLE_HWLOC_AUTOMATIC_SEARCH=ON
|
||||||
-DTBB_ENABLE_IPO=OFF
|
-DTBB_ENABLE_IPO=OFF
|
||||||
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
|
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
|
||||||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Creality",
|
"name": "Creality",
|
||||||
"version": "02.03.02.82",
|
"version": "02.03.02.84",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Creality configurations",
|
"description": "Creality configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"8"
|
||||||
],
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_retract_before_wipe": [
|
||||||
"100"
|
"100"
|
||||||
|
|||||||
@@ -43,19 +43,19 @@
|
|||||||
"1.75"
|
"1.75"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.98"
|
"0.95"
|
||||||
],
|
],
|
||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"16"
|
"14"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_retract_before_wipe": [
|
||||||
"nil"
|
"100%"
|
||||||
],
|
],
|
||||||
"filament_retract_restart_extra": [
|
"filament_retract_restart_extra": [
|
||||||
"nil"
|
"nil"
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
"filament_retraction_minimum_travel": [
|
||||||
"nil"
|
"2"
|
||||||
],
|
],
|
||||||
"filament_retraction_speed": [
|
"filament_retraction_speed": [
|
||||||
"nil"
|
"nil"
|
||||||
@@ -106,7 +106,10 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"8"
|
"14"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"temperature_vitrification": [
|
"temperature_vitrification": [
|
||||||
"110"
|
"110"
|
||||||
@@ -118,7 +121,7 @@
|
|||||||
"55"
|
"55"
|
||||||
],
|
],
|
||||||
"filament_start_gcode": [
|
"filament_start_gcode": [
|
||||||
"; Filament gcode\n"
|
";filament start gcode\n"
|
||||||
],
|
],
|
||||||
"filament_end_gcode": [
|
"filament_end_gcode": [
|
||||||
"; filament end gcode \n"
|
"; filament end gcode \n"
|
||||||
@@ -153,7 +156,7 @@
|
|||||||
"filament_unloading_speed_start": "100",
|
"filament_unloading_speed_start": "100",
|
||||||
"material_flow_dependent_temperature": "0",
|
"material_flow_dependent_temperature": "0",
|
||||||
"material_flow_temp_graph": "[[0.2,210],[0.6,220]]",
|
"material_flow_temp_graph": "[[0.2,210],[0.6,220]]",
|
||||||
"pressure_advance": "0.12",
|
"pressure_advance": "0.032",
|
||||||
"support_material_interface_fan_speed": "-1",
|
"support_material_interface_fan_speed": "-1",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Creality SPARKX i7 0.2 nozzle",
|
"Creality SPARKX i7 0.2 nozzle",
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
"machine_min_travel_rate": "0,0",
|
"machine_min_travel_rate": "0,0",
|
||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "0",
|
"machine_platform_motion_enable": "0",
|
||||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 X20 Y-1 F30000\nG1 Z0.3 F1200\nG1 X100 E10 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X120 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X125 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG92 E0\nG1 Z1 F1200",
|
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 X20 Y-1 F30000\nG1 Z0.3 F1200\nG1 X100 E10 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X120 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X125 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG92 E0\nG1 Z1 F1200",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -123,7 +123,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA HF @Creality"
|
"Generic PLA HF @Creality"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -123,7 +123,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA HF @Creality"
|
"Generic PLA HF @Creality"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -123,7 +123,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA HF @Creality"
|
"Generic PLA HF @Creality"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA HF @Creality"
|
"Generic PLA HF @Creality"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA HF @Creality"
|
"Generic PLA HF @Creality"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA HF @Creality"
|
"Generic PLA HF @Creality"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "1",
|
"machine_platform_motion_enable": "1",
|
||||||
"machine_ptc_exist": "1",
|
"machine_ptc_exist": "1",
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -123,7 +123,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA @Creality K1-all"
|
"Generic PLA @Creality K1-all"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails_format": "PNG",
|
"thumbnails_format": "PNG",
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
"machine_min_travel_rate": "0,0",
|
"machine_min_travel_rate": "0,0",
|
||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "1",
|
"machine_platform_motion_enable": "1",
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
"machine_min_travel_rate": "0,0",
|
"machine_min_travel_rate": "0,0",
|
||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "1",
|
"machine_platform_motion_enable": "1",
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
"machine_min_travel_rate": "0,0",
|
"machine_min_travel_rate": "0,0",
|
||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "1",
|
"machine_platform_motion_enable": "1",
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA @Creality K1-all"
|
"Generic PLA @Creality K1-all"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA @Creality K1-all"
|
"Generic PLA @Creality K1-all"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA @Creality K1-all"
|
"Generic PLA @Creality K1-all"
|
||||||
],
|
],
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_end_gcode": "END_PRINT",
|
"machine_end_gcode": "END_PRINT",
|
||||||
"scan_first_layer": "0",
|
"scan_first_layer": "0",
|
||||||
"thumbnails": [
|
"thumbnails": [
|
||||||
|
|||||||
@@ -56,7 +56,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "1",
|
"machine_platform_motion_enable": "1",
|
||||||
"machine_ptc_exist": "1",
|
"machine_ptc_exist": "1",
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "1",
|
"machine_platform_motion_enable": "1",
|
||||||
"machine_ptc_exist": "1",
|
"machine_ptc_exist": "1",
|
||||||
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
|
||||||
"machine_unload_filament_time": "0",
|
"machine_unload_filament_time": "0",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "0",
|
"machine_platform_motion_enable": "0",
|
||||||
"machine_ptc_exist": "0",
|
"machine_ptc_exist": "0",
|
||||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
||||||
"machine_tool_change_time": "0",
|
"machine_tool_change_time": "0",
|
||||||
"machine_unload_filament_time": "30",
|
"machine_unload_filament_time": "30",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "0",
|
"machine_platform_motion_enable": "0",
|
||||||
"machine_ptc_exist": "0",
|
"machine_ptc_exist": "0",
|
||||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
||||||
"machine_tool_change_time": "0",
|
"machine_tool_change_time": "0",
|
||||||
"machine_unload_filament_time": "30",
|
"machine_unload_filament_time": "30",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "0",
|
"machine_platform_motion_enable": "0",
|
||||||
"machine_ptc_exist": "0",
|
"machine_ptc_exist": "0",
|
||||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
||||||
"machine_tool_change_time": "0",
|
"machine_tool_change_time": "0",
|
||||||
"machine_unload_filament_time": "30",
|
"machine_unload_filament_time": "30",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
"machine_pause_gcode": "PAUSE",
|
"machine_pause_gcode": "PAUSE",
|
||||||
"machine_platform_motion_enable": "0",
|
"machine_platform_motion_enable": "0",
|
||||||
"machine_ptc_exist": "0",
|
"machine_ptc_exist": "0",
|
||||||
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
|
||||||
"machine_tool_change_time": "0",
|
"machine_tool_change_time": "0",
|
||||||
"machine_unload_filament_time": "30",
|
"machine_unload_filament_time": "30",
|
||||||
"manual_filament_change": "0",
|
"manual_filament_change": "0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Cubicon",
|
"name": "Cubicon",
|
||||||
"version": "02.04.00.05",
|
"version": "02.04.00.06",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Cubicon configurations",
|
"description": "Cubicon configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"115"
|
"115"
|
||||||
],
|
],
|
||||||
"hot_plate_temp_initial_layer": [
|
"hot_plate_temp_initial_layer": [
|
||||||
"115"
|
"120"
|
||||||
],
|
],
|
||||||
"close_fan_the_first_x_layers": [
|
"close_fan_the_first_x_layers": [
|
||||||
"3"
|
"3"
|
||||||
@@ -24,13 +24,13 @@
|
|||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.24"
|
"1.04"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.99"
|
"0.99"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"23"
|
"14"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
"240"
|
"240"
|
||||||
@@ -39,19 +39,19 @@
|
|||||||
"80"
|
"80"
|
||||||
],
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"70"
|
"15"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
"30"
|
"20"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"3"
|
"10"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"245"
|
"245"
|
||||||
],
|
],
|
||||||
"temperature_vitrification": [
|
"temperature_vitrification": [
|
||||||
"78"
|
"105"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_range_low": [
|
"nozzle_temperature_range_low": [
|
||||||
"220"
|
"220"
|
||||||
@@ -61,5 +61,14 @@
|
|||||||
],
|
],
|
||||||
"additional_cooling_fan_speed": [
|
"additional_cooling_fan_speed": [
|
||||||
"0"
|
"0"
|
||||||
|
],
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"255"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,10 +12,10 @@
|
|||||||
"Cubicon"
|
"Cubicon"
|
||||||
],
|
],
|
||||||
"hot_plate_temp": [
|
"hot_plate_temp": [
|
||||||
"100"
|
"105"
|
||||||
],
|
],
|
||||||
"hot_plate_temp_initial_layer": [
|
"hot_plate_temp_initial_layer": [
|
||||||
"100"
|
"115"
|
||||||
],
|
],
|
||||||
"close_fan_the_first_x_layers": [
|
"close_fan_the_first_x_layers": [
|
||||||
"3"
|
"3"
|
||||||
@@ -24,13 +24,13 @@
|
|||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.24"
|
"1.04"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.99"
|
"1.04"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"23"
|
"8"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
"225"
|
"225"
|
||||||
@@ -39,19 +39,19 @@
|
|||||||
"80"
|
"80"
|
||||||
],
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"70"
|
"15"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
"30"
|
"20"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"3"
|
"10"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"230"
|
"230"
|
||||||
],
|
],
|
||||||
"temperature_vitrification": [
|
"temperature_vitrification": [
|
||||||
"78"
|
"105"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_range_low": [
|
"nozzle_temperature_range_low": [
|
||||||
"220"
|
"220"
|
||||||
@@ -61,5 +61,32 @@
|
|||||||
],
|
],
|
||||||
"additional_cooling_fan_speed": [
|
"additional_cooling_fan_speed": [
|
||||||
"0"
|
"0"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.04"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70%"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"115"
|
"115"
|
||||||
],
|
],
|
||||||
"hot_plate_temp_initial_layer": [
|
"hot_plate_temp_initial_layer": [
|
||||||
"115"
|
"120"
|
||||||
],
|
],
|
||||||
"close_fan_the_first_x_layers": [
|
"close_fan_the_first_x_layers": [
|
||||||
"3"
|
"3"
|
||||||
@@ -24,13 +24,13 @@
|
|||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.24"
|
"1.04"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.99"
|
"0.99"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"23"
|
"14"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
"240"
|
"240"
|
||||||
@@ -39,19 +39,19 @@
|
|||||||
"80"
|
"80"
|
||||||
],
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"70"
|
"15"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
"30"
|
"20"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"3"
|
"10"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"240"
|
"240"
|
||||||
],
|
],
|
||||||
"temperature_vitrification": [
|
"temperature_vitrification": [
|
||||||
"85"
|
"105"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_range_low": [
|
"nozzle_temperature_range_low": [
|
||||||
"220"
|
"220"
|
||||||
|
|||||||
@@ -10,5 +10,77 @@
|
|||||||
],
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Cubicon"
|
"Cubicon"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.01"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.94"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70%"
|
||||||
|
],
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"255"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"80"
|
"80"
|
||||||
],
|
],
|
||||||
"hot_plate_temp_initial_layer": [
|
"hot_plate_temp_initial_layer": [
|
||||||
"80"
|
"85"
|
||||||
],
|
],
|
||||||
"close_fan_the_first_x_layers": [
|
"close_fan_the_first_x_layers": [
|
||||||
"3"
|
"3"
|
||||||
@@ -54,12 +54,45 @@
|
|||||||
"70"
|
"70"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_range_low": [
|
"nozzle_temperature_range_low": [
|
||||||
"230"
|
"220"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_range_high": [
|
"nozzle_temperature_range_high": [
|
||||||
"250"
|
"250"
|
||||||
],
|
],
|
||||||
"additional_cooling_fan_speed": [
|
"additional_cooling_fan_speed": [
|
||||||
"0"
|
"0"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.08"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"2.0"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70%"
|
||||||
|
],
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"255"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,5 +53,38 @@
|
|||||||
],
|
],
|
||||||
"additional_cooling_fan_speed": [
|
"additional_cooling_fan_speed": [
|
||||||
"80"
|
"80"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"2.0"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70%"
|
||||||
|
],
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"255"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"255"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,5 +18,14 @@
|
|||||||
],
|
],
|
||||||
"nozzle_temperature_range_high": [
|
"nozzle_temperature_range_high": [
|
||||||
"220"
|
"220"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.025"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -73,12 +73,12 @@
|
|||||||
"20000"
|
"20000"
|
||||||
],
|
],
|
||||||
"machine_max_acceleration_z": [
|
"machine_max_acceleration_z": [
|
||||||
"250",
|
"50",
|
||||||
"500"
|
"100"
|
||||||
],
|
],
|
||||||
"machine_max_speed_z": [
|
"machine_max_speed_z": [
|
||||||
"25",
|
"5",
|
||||||
"12"
|
"10"
|
||||||
],
|
],
|
||||||
"machine_max_acceleration_retracting": [
|
"machine_max_acceleration_retracting": [
|
||||||
"5000",
|
"5000",
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
"instantiation": "false",
|
"instantiation": "false",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Cubicon xCeler-I 0.4 nozzle",
|
"Cubicon xCeler-I 0.4 nozzle",
|
||||||
"Cubicon xCeler-Plus 0.4 nozzle"
|
"Cubicon xCeler-Plus 0.4 nozzle",
|
||||||
|
"Cubicon xCeler-Mini 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"print_settings_id": "cubicon common @base",
|
"print_settings_id": "cubicon common @base",
|
||||||
"accel_to_decel_enable": "1",
|
"accel_to_decel_enable": "1",
|
||||||
@@ -14,26 +15,24 @@
|
|||||||
"bridge_flow": "0.9",
|
"bridge_flow": "0.9",
|
||||||
"internal_bridge_flow": "0.9",
|
"internal_bridge_flow": "0.9",
|
||||||
"brim_type": "no_brim",
|
"brim_type": "no_brim",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "0",
|
||||||
"resolution": "0.012",
|
"resolution": "0.012",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"percise_outer_wall": "1",
|
|
||||||
"percise_z_height": "0.2",
|
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "0",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
"exclude_object": "0",
|
"exclude_object": "0",
|
||||||
"filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode",
|
||||||
"gap_infill_speed": "250",
|
"gap_infill_speed": "250",
|
||||||
"infill_combination": "1",
|
"infill_combination": "0",
|
||||||
"infill_direction": "45",
|
"infill_direction": "45",
|
||||||
"infill_wall_overlap": "15",
|
"infill_wall_overlap": "15",
|
||||||
"infill_anchor": "400%",
|
"infill_anchor": "400%",
|
||||||
"infill_anchor_max": "20",
|
"infill_anchor_max": "20",
|
||||||
"initial_layer_line_width": "0.5",
|
"initial_layer_line_width": "0.5",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.2",
|
||||||
"initial_layer_speed": "60",
|
"initial_layer_speed": "50",
|
||||||
"initial_layer_infill_speed": "60",
|
"initial_layer_infill_speed": "100",
|
||||||
"initial_layer_travel_speed": "500",
|
"initial_layer_travel_speed": "500",
|
||||||
"slow_down_layers": "1",
|
"slow_down_layers": "1",
|
||||||
"only_one_wall_top": "1",
|
"only_one_wall_top": "1",
|
||||||
@@ -47,9 +46,9 @@
|
|||||||
"outer_wall_speed": "200",
|
"outer_wall_speed": "200",
|
||||||
"print_sequence": "by layer",
|
"print_sequence": "by layer",
|
||||||
"raft_layers": "0",
|
"raft_layers": "0",
|
||||||
"reduce_crossing_wall": "0",
|
"reduce_crossing_wall": "1",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"seam_position": "back",
|
"seam_position": "aligned",
|
||||||
"seam_gap": "10%",
|
"seam_gap": "10%",
|
||||||
"enable_arc_fitting": "0",
|
"enable_arc_fitting": "0",
|
||||||
"staggered_inner_seams": "1",
|
"staggered_inner_seams": "1",
|
||||||
@@ -57,7 +56,7 @@
|
|||||||
"skirt_distance": "2.5",
|
"skirt_distance": "2.5",
|
||||||
"skirt_height": "1",
|
"skirt_height": "1",
|
||||||
"skirt_speed": "50",
|
"skirt_speed": "50",
|
||||||
"skirt_start_angle": "-45",
|
"skirt_start_angle": "-135",
|
||||||
"sparse_infill_density": "15",
|
"sparse_infill_density": "15",
|
||||||
"sparse_infill_speed": "270",
|
"sparse_infill_speed": "270",
|
||||||
"sparse_infill_pattern": "grid",
|
"sparse_infill_pattern": "grid",
|
||||||
@@ -84,7 +83,7 @@
|
|||||||
"support_threshold_angle": "15",
|
"support_threshold_angle": "15",
|
||||||
"wall_loops": "2",
|
"wall_loops": "2",
|
||||||
"thick_bridges": "0",
|
"thick_bridges": "0",
|
||||||
"extra_perimeters_on_overhangs": "1",
|
"extra_perimeters_on_overhangs": "0",
|
||||||
"top_shell_layers": "5",
|
"top_shell_layers": "5",
|
||||||
"top_shell_thickness": "1",
|
"top_shell_thickness": "1",
|
||||||
"slow_down_curled_perimeters": "0",
|
"slow_down_curled_perimeters": "0",
|
||||||
@@ -93,18 +92,18 @@
|
|||||||
"travel_jerk": "12",
|
"travel_jerk": "12",
|
||||||
"infill_jerk": "12",
|
"infill_jerk": "12",
|
||||||
"initial_layer_jerk": "9",
|
"initial_layer_jerk": "9",
|
||||||
"inner_wall_jerk": "7",
|
"inner_wall_jerk": "3.5",
|
||||||
"outer_wall_jerk": "7",
|
"outer_wall_jerk": "3",
|
||||||
"default_acceleration": "13000",
|
"default_acceleration": "10000",
|
||||||
"travel_acceleration": "13000",
|
"travel_acceleration": "10000",
|
||||||
"outer_wall_acceleration": "5000",
|
"outer_wall_acceleration": "2000",
|
||||||
"inner_wall_acceleration": "5000",
|
"inner_wall_acceleration": "6000",
|
||||||
"initial_layer_acceleration": "1000",
|
"initial_layer_acceleration": "500",
|
||||||
"top_surface_acceleration": "2000",
|
"top_surface_acceleration": "2000",
|
||||||
"raft_first_layer_density": "90",
|
"raft_first_layer_density": "90",
|
||||||
"raft_first_layer_expansion": "2",
|
"raft_first_layer_expansion": "2",
|
||||||
"precise_outer_wall": "1",
|
"precise_outer_wall": "1",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "1",
|
||||||
"slowdown_for_curled_perimeters": "0",
|
"slowdown_for_curled_perimeters": "0",
|
||||||
"bridge_speed": "50",
|
"bridge_speed": "50",
|
||||||
"internal_bridge_speed": "150%",
|
"internal_bridge_speed": "150%",
|
||||||
@@ -112,5 +111,7 @@
|
|||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
"overhang_3_4_speed": "30",
|
"overhang_3_4_speed": "30",
|
||||||
"overhang_4_4_speed": "10",
|
"overhang_4_4_speed": "10",
|
||||||
"independent_support_layer_height": "1"
|
"independent_support_layer_height": "1",
|
||||||
|
"solid_infill_direction": "90",
|
||||||
|
"max_travel_detour_distance": "80%"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
"top_surface_line_width": "0.4",
|
"top_surface_line_width": "0.4",
|
||||||
"top_surface_speed": "30",
|
"top_surface_speed": "30",
|
||||||
"travel_speed": "400",
|
"travel_speed": "400",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "0",
|
||||||
"prime_tower_width": "60",
|
"prime_tower_width": "60",
|
||||||
"xy_hole_compensation": "0",
|
"xy_hole_compensation": "0",
|
||||||
"xy_contour_compensation": "0"
|
"xy_contour_compensation": "0"
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "1",
|
||||||
"enable_extra_bridge_layer": "disabled",
|
"enable_extra_bridge_layer": "disabled",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "0",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Flashforge",
|
"name": "Flashforge",
|
||||||
"url": "",
|
"url": "",
|
||||||
"version": "02.04.00.08",
|
"version": "02.04.00.09",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Flashforge configurations",
|
"description": "Flashforge configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -25,6 +25,10 @@
|
|||||||
"name": "Flashforge Adventurer 5M Pro",
|
"name": "Flashforge Adventurer 5M Pro",
|
||||||
"sub_path": "machine/Flashforge Adventurer 5M Pro.json"
|
"sub_path": "machine/Flashforge Adventurer 5M Pro.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge Adventurer A5",
|
||||||
|
"sub_path": "machine/Flashforge Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge Artemis",
|
"name": "Flashforge Artemis",
|
||||||
"sub_path": "machine/Flashforge Artemis.json"
|
"sub_path": "machine/Flashforge Artemis.json"
|
||||||
@@ -199,6 +203,10 @@
|
|||||||
"name": "0.20mm Standard @FF AD5X",
|
"name": "0.20mm Standard @FF AD5X",
|
||||||
"sub_path": "process/0.20mm Standard @FF AD5X.json"
|
"sub_path": "process/0.20mm Standard @FF AD5X.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.20mm Standard @FF Adventurer A5 0.4 nozzle",
|
||||||
|
"sub_path": "process/0.20mm Standard @FF Adventurer A5 0.4 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.20mm Standard @FF C5",
|
"name": "0.20mm Standard @FF C5",
|
||||||
"sub_path": "process/0.20mm Standard @FF C5.json"
|
"sub_path": "process/0.20mm Standard @FF C5.json"
|
||||||
@@ -311,6 +319,10 @@
|
|||||||
"name": "0.30mm Standard @FF AD5X 0.6 nozzle",
|
"name": "0.30mm Standard @FF AD5X 0.6 nozzle",
|
||||||
"sub_path": "process/0.30mm Standard @FF AD5X 0.6 nozzle.json"
|
"sub_path": "process/0.30mm Standard @FF AD5X 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm Standard @FF Adventurer A5 0.6 nozzle",
|
||||||
|
"sub_path": "process/0.30mm Standard @FF Adventurer A5 0.6 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle",
|
"name": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle",
|
||||||
"sub_path": "process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json"
|
"sub_path": "process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json"
|
||||||
@@ -443,6 +455,10 @@
|
|||||||
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
|
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
|
||||||
"sub_path": "process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json"
|
"sub_path": "process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.12mm Fine @FF Adventurer A5 0.4 nozzle",
|
||||||
|
"sub_path": "process/0.12mm Fine @FF Adventurer A5 0.4 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
"name": "0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
"sub_path": "process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
"sub_path": "process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
||||||
@@ -463,6 +479,10 @@
|
|||||||
"name": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
"name": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
"sub_path": "process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
"sub_path": "process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.12mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.12mm Standard @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.12mm Standard @FF G4 0.25 nozzle",
|
"name": "0.12mm Standard @FF G4 0.25 nozzle",
|
||||||
"sub_path": "process/0.12mm Standard @FF G4 0.25 nozzle.json"
|
"sub_path": "process/0.12mm Standard @FF G4 0.25 nozzle.json"
|
||||||
@@ -483,6 +503,10 @@
|
|||||||
"name": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
"name": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
"sub_path": "process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
"sub_path": "process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.24mm Draft @FF Adventurer A5 0.4 nozzle",
|
||||||
|
"sub_path": "process/0.24mm Draft @FF Adventurer A5 0.4 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.24mm Fine @Flashforge AD5M 0.8 Nozzle",
|
"name": "0.24mm Fine @Flashforge AD5M 0.8 Nozzle",
|
||||||
"sub_path": "process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json"
|
"sub_path": "process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json"
|
||||||
@@ -495,6 +519,10 @@
|
|||||||
"name": "0.18mm Fine @FF AD5X 0.6 nozzle",
|
"name": "0.18mm Fine @FF AD5X 0.6 nozzle",
|
||||||
"sub_path": "process/0.18mm Fine @FF AD5X 0.6 nozzle.json"
|
"sub_path": "process/0.18mm Fine @FF AD5X 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.18mm Fine @FF Adventurer A5 0.6 nozzle",
|
||||||
|
"sub_path": "process/0.18mm Fine @FF Adventurer A5 0.6 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle",
|
"name": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle",
|
||||||
"sub_path": "process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json"
|
"sub_path": "process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json"
|
||||||
@@ -503,6 +531,10 @@
|
|||||||
"name": "0.40mm Standard @FF AD5X 0.8 nozzle",
|
"name": "0.40mm Standard @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "process/0.40mm Standard @FF AD5X 0.8 nozzle.json"
|
"sub_path": "process/0.40mm Standard @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Standard @FF Adventurer A5 0.8 nozzle",
|
||||||
|
"sub_path": "process/0.40mm Standard @FF Adventurer A5 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle",
|
"name": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle",
|
||||||
"sub_path": "process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json"
|
"sub_path": "process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json"
|
||||||
@@ -511,6 +543,10 @@
|
|||||||
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
|
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
|
||||||
"sub_path": "process/0.42mm Draft @FF AD5X 0.6 nozzle.json"
|
"sub_path": "process/0.42mm Draft @FF AD5X 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.42mm Draft @FF Adventurer A5 0.6 nozzle",
|
||||||
|
"sub_path": "process/0.42mm Draft @FF Adventurer A5 0.6 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.08mm Standard @FF C5 0.25 nozzle",
|
"name": "0.08mm Standard @FF C5 0.25 nozzle",
|
||||||
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
|
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
|
||||||
@@ -527,13 +563,37 @@
|
|||||||
"name": "0.14mm Standard @FF C5 0.25 nozzle",
|
"name": "0.14mm Standard @FF C5 0.25 nozzle",
|
||||||
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
|
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.06mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.06mm Standard @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.08mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.08mm Standard @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.10mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.10mm Standard @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.14mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.14mm Standard @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.24mm Fine @FF AD5X 0.8 nozzle",
|
"name": "0.24mm Fine @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "process/0.24mm Fine @FF AD5X 0.8 nozzle.json"
|
"sub_path": "process/0.24mm Fine @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.24mm Fine @FF Adventurer A5 0.8 nozzle",
|
||||||
|
"sub_path": "process/0.24mm Fine @FF Adventurer A5 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.56mm Draft @FF AD5X 0.8 nozzle",
|
"name": "0.56mm Draft @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "process/0.56mm Draft @FF AD5X 0.8 nozzle.json"
|
"sub_path": "process/0.56mm Draft @FF AD5X 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.56mm Draft @FF Adventurer A5 0.8 nozzle",
|
||||||
|
"sub_path": "process/0.56mm Draft @FF Adventurer A5 0.8 nozzle.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
@@ -661,6 +721,10 @@
|
|||||||
"name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle",
|
"name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge ABS Basic @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge ABS Basic @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge ABS Basic @FF G4",
|
"name": "Flashforge ABS Basic @FF G4",
|
||||||
"sub_path": "filament/Flashforge ABS Basic @FF G4.json"
|
"sub_path": "filament/Flashforge ABS Basic @FF G4.json"
|
||||||
@@ -741,6 +805,10 @@
|
|||||||
"name": "Flashforge ASA Basic",
|
"name": "Flashforge ASA Basic",
|
||||||
"sub_path": "filament/Flashforge ASA Basic.json"
|
"sub_path": "filament/Flashforge ASA Basic.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge ASA Basic @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge ASA Basic @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ASA @FF AD5M 0.25 Nozzle",
|
"name": "Generic ASA @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
|
||||||
@@ -769,6 +837,10 @@
|
|||||||
"name": "Flashforge HS PETG @FF AD5X 0.8 nozzle",
|
"name": "Flashforge HS PETG @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PETG @FF G4",
|
"name": "Flashforge HS PETG @FF G4",
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4.json"
|
"sub_path": "filament/Flashforge HS PETG @FF G4.json"
|
||||||
@@ -801,6 +873,10 @@
|
|||||||
"name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PETG Pro @FF G4",
|
"name": "Flashforge PETG Pro @FF G4",
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4.json"
|
"sub_path": "filament/Flashforge PETG Pro @FF G4.json"
|
||||||
@@ -825,6 +901,10 @@
|
|||||||
"name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PETG Transparent @FF G4",
|
"name": "Flashforge PETG Transparent @FF G4",
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4.json"
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4.json"
|
||||||
@@ -925,6 +1005,10 @@
|
|||||||
"name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG-CF @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PETG-CF @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG-CF10 @Flashforge AD4",
|
"name": "Generic PETG-CF10 @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic PETG-CF10 @Flashforge AD4.json"
|
"sub_path": "filament/Generic PETG-CF10 @Flashforge AD4.json"
|
||||||
@@ -1069,6 +1153,14 @@
|
|||||||
"name": "Flashforge HS PLA @FF AD5X 0.8 nozzle",
|
"name": "Flashforge HS PLA @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA+ @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA+ @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA @FF AD5M 0.25 Nozzle",
|
"name": "Flashforge PLA @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json"
|
||||||
@@ -1089,6 +1181,10 @@
|
|||||||
"name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Basic @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Basic @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Color Change",
|
"name": "Flashforge PLA Color Change",
|
||||||
"sub_path": "filament/Flashforge PLA Color Change.json"
|
"sub_path": "filament/Flashforge PLA Color Change.json"
|
||||||
@@ -1105,6 +1201,10 @@
|
|||||||
"name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Color Change @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Color Change @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Galaxy",
|
"name": "Flashforge PLA Galaxy",
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy.json"
|
"sub_path": "filament/Flashforge PLA Galaxy.json"
|
||||||
@@ -1121,6 +1221,14 @@
|
|||||||
"name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Galaxy @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Galaxy @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA LITE @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA LITE @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Luminous",
|
"name": "Flashforge PLA Luminous",
|
||||||
"sub_path": "filament/Flashforge PLA Luminous.json"
|
"sub_path": "filament/Flashforge PLA Luminous.json"
|
||||||
@@ -1137,6 +1245,10 @@
|
|||||||
"name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Luminous @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Luminous @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Matte",
|
"name": "Flashforge PLA Matte",
|
||||||
"sub_path": "filament/Flashforge PLA Matte.json"
|
"sub_path": "filament/Flashforge PLA Matte.json"
|
||||||
@@ -1153,6 +1265,10 @@
|
|||||||
"name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Metal",
|
"name": "Flashforge PLA Metal",
|
||||||
"sub_path": "filament/Flashforge PLA Metal.json"
|
"sub_path": "filament/Flashforge PLA Metal.json"
|
||||||
@@ -1169,6 +1285,10 @@
|
|||||||
"name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Pro",
|
"name": "Flashforge PLA Pro",
|
||||||
"sub_path": "filament/Flashforge PLA Pro.json"
|
"sub_path": "filament/Flashforge PLA Pro.json"
|
||||||
@@ -1185,6 +1305,10 @@
|
|||||||
"name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Sparkle",
|
"name": "Flashforge PLA Sparkle",
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle.json"
|
"sub_path": "filament/Flashforge PLA Sparkle.json"
|
||||||
@@ -1201,6 +1325,14 @@
|
|||||||
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Sparkle @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Sparkle @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge R PLA @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge R PLA @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
|
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
|
||||||
@@ -1269,6 +1401,10 @@
|
|||||||
"name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA-CF @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA-CF @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PPS @FF G4",
|
"name": "Flashforge PPS @FF G4",
|
||||||
"sub_path": "filament/Flashforge PPS @FF G4.json"
|
"sub_path": "filament/Flashforge PPS @FF G4.json"
|
||||||
@@ -1313,6 +1449,10 @@
|
|||||||
"name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Silk @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Silk @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle",
|
"name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json"
|
||||||
@@ -1413,6 +1553,10 @@
|
|||||||
"name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle",
|
"name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge TPU 95A @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Flashforge TPU 95A @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge TPU 95A @FF G4",
|
"name": "Flashforge TPU 95A @FF G4",
|
||||||
"sub_path": "filament/Flashforge TPU 95A @FF G4.json"
|
"sub_path": "filament/Flashforge TPU 95A @FF G4.json"
|
||||||
@@ -1453,6 +1597,10 @@
|
|||||||
"name": "Generic TPU @Flashforge AD4",
|
"name": "Generic TPU @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic TPU @Flashforge AD4.json"
|
"sub_path": "filament/Generic TPU @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Kexcelled TPU 64D @FF Adventurer A5",
|
||||||
|
"sub_path": "filament/Kexcelled TPU 64D @FF Adventurer A5.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle",
|
"name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json"
|
||||||
@@ -1949,6 +2097,10 @@
|
|||||||
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
|
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
|
||||||
"sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json"
|
"sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Generic PETG @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
|
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
|
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
|
||||||
@@ -2045,6 +2197,10 @@
|
|||||||
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
|
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
|
||||||
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
|
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
|
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
|
||||||
@@ -2057,6 +2213,10 @@
|
|||||||
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
|
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA+ @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA+ @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
|
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
|
||||||
@@ -2105,6 +2265,10 @@
|
|||||||
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
|
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA LITE @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA LITE @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
|
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
|
||||||
@@ -2197,6 +2361,14 @@
|
|||||||
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
|
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge R PLA @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge R PLA @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PLA @FF G4 0.6 HF nozzle",
|
"name": "Flashforge HS PLA @FF G4 0.6 HF nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
|
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
|
||||||
@@ -2497,6 +2669,66 @@
|
|||||||
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
|
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Basic @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Basic @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Color Change @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Color Change @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Galaxy @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Galaxy @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Luminous @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Luminous @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Sparkle @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Sparkle @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Silk @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Silk @FF Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge ABS Basic @FF C5",
|
"name": "Flashforge ABS Basic @FF C5",
|
||||||
"sub_path": "filament/Flashforge ABS Basic @FF C5.json"
|
"sub_path": "filament/Flashforge ABS Basic @FF C5.json"
|
||||||
@@ -2907,6 +3139,10 @@
|
|||||||
"name": "Flashforge AD5X 0.25 nozzle",
|
"name": "Flashforge AD5X 0.25 nozzle",
|
||||||
"sub_path": "machine/FlashForge AD5X 0.25 nozzle.json"
|
"sub_path": "machine/FlashForge AD5X 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge Adventurer A5 0.25 nozzle",
|
||||||
|
"sub_path": "machine/Flashforge Adventurer A5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge Guider4 0.25 nozzle",
|
"name": "Flashforge Guider4 0.25 nozzle",
|
||||||
"sub_path": "machine/Flashforge Guider4 0.25 nozzle.json"
|
"sub_path": "machine/Flashforge Guider4 0.25 nozzle.json"
|
||||||
@@ -2919,6 +3155,10 @@
|
|||||||
"name": "Flashforge AD5X 0.4 nozzle",
|
"name": "Flashforge AD5X 0.4 nozzle",
|
||||||
"sub_path": "machine/Flashforge AD5X 0.4 nozzle.json"
|
"sub_path": "machine/Flashforge AD5X 0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"sub_path": "machine/Flashforge Adventurer A5 0.4 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge Creator 5 0.25 nozzle",
|
"name": "Flashforge Creator 5 0.25 nozzle",
|
||||||
"sub_path": "machine/Flashforge Creator 5 0.25 nozzle.json"
|
"sub_path": "machine/Flashforge Creator 5 0.25 nozzle.json"
|
||||||
@@ -2963,10 +3203,18 @@
|
|||||||
"name": "Flashforge AD5X 0.6 nozzle",
|
"name": "Flashforge AD5X 0.6 nozzle",
|
||||||
"sub_path": "machine/Flashforge AD5X 0.6 nozzle.json"
|
"sub_path": "machine/Flashforge AD5X 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"sub_path": "machine/Flashforge Adventurer A5 0.6 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge AD5X 0.8 nozzle",
|
"name": "Flashforge AD5X 0.8 nozzle",
|
||||||
"sub_path": "machine/Flashforge AD5X 0.8 nozzle.json"
|
"sub_path": "machine/Flashforge AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge Adventurer A5 0.8 nozzle",
|
||||||
|
"sub_path": "machine/Flashforge Adventurer A5 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge Guider4 0.4 HF nozzle",
|
"name": "Flashforge Guider4 0.4 HF nozzle",
|
||||||
"sub_path": "machine/Flashforge Guider4 0.4 HF nozzle.json"
|
"sub_path": "machine/Flashforge Guider4 0.4 HF nozzle.json"
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
+44
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge ABS Basic @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "jRIJ0cO4GhaMg2By",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge ABS Basic @FF Adventurer A5",
|
||||||
|
"inherits": "Generic ABS @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "rDW4AwKc7SD7WIxN",
|
||||||
|
"filament_id": "OFibWuBd",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge ABS Basic @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
]
|
||||||
|
}
|
||||||
+44
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge ASA Basic @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "OIUW8rw2VhNpeVpF",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge ASA Basic @FF Adventurer A5",
|
||||||
|
"inherits": "Generic ASA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "FY9mcqOyuu1Gqq1m",
|
||||||
|
"filament_id": "OFFFg2Pf",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge ASA Basic @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
]
|
||||||
|
}
|
||||||
+44
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge HS PETG @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge HS PETG @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "UFal5gkMUJpoiOWP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge HS PETG @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge HS PETG @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PETG @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "ZpNEEHTtvhMJS8Kv",
|
||||||
|
"filament_id": "OFDxxTpW",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"21"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge HS PETG @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
]
|
||||||
|
}
|
||||||
+26
@@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge HS PLA @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge HS PLA @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Ewx6vNp0sDLDczPc",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge HS PLA @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge HS PLA @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "2L7FS5JeAyPb3y0s",
|
||||||
|
"filament_id": "OFIK2H3G",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge HS PLA @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+36
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge HS PLA+ @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "DeiDOP4VfKSyMtjw",
|
||||||
|
"filament_id": "OFXB8ZI7",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge HS PLA+ @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge HS PLA+ @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "V4jIUQzxoZkK50mn",
|
||||||
|
"filament_id": "OFXB8ZI7",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.94"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge HS PLA+ @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+44
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PETG Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PETG Basic @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "0sotIYsGkpQpcq6Y",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PETG Basic @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
]
|
||||||
|
}
|
||||||
+44
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PETG Pro @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PETG Pro @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "SZmG7gbmfOCGc8Fa",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PETG Pro @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PETG Pro @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PETG @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "rPy6e6kaIt2tI34j",
|
||||||
|
"filament_id": "OFXiArjA",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PETG Pro @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"265"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"support_material_interface_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
]
|
||||||
|
}
|
||||||
+44
@@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PETG Transparent @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PETG Transparent @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "PJ1sXWRB5uQa7TAJ",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PETG Transparent @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
]
|
||||||
|
}
|
||||||
+92
@@ -0,0 +1,92 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PETG Transparent @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PETG @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "axOWrjnN5lofH9qM",
|
||||||
|
"filament_id": "OFwjMiKL",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PETG Transparent @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"265"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"support_material_interface_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"75"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"75"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PETG-CF @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PETG-CF10 @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "aDSOS4PWssYHk8Fh",
|
||||||
|
"filament_id": "OFuFEtKX",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PETG-CF @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Basic @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "e8JkrQPgHO1ekM7Q",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Basic @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Basic @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "HCpI817HAWckXBtk",
|
||||||
|
"filament_id": "OFJ3F2jm",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Basic @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Color Change @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "8ifsgreK3DQhMfeh",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Color Change @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
+47
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Color Change @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "o1Fl6t8nFCKZoj3Q",
|
||||||
|
"filament_id": "OFMkAW6r",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Color Change @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.035"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Galaxy @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "WViVLfSsNolVB55w",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Galaxy @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Galaxy @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "4rpfTTgZrsVDwxI9",
|
||||||
|
"filament_id": "OFJJ0Ar3",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Galaxy @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+36
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA LITE @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "FpqRF3Gw0ftvpvay",
|
||||||
|
"filament_id": "OFDDdgHM",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1.04"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA LITE @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA LITE @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "2QZaQyg66IJPbsSc",
|
||||||
|
"filament_id": "OFDDdgHM",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1.02"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA LITE @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Luminous @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "e3Yir3COUY9MyFdE",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Luminous @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Luminous @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GqNeJoH4M1IVAXrZ",
|
||||||
|
"filament_id": "OFdqkWtz",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Luminous @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Matte @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Matte @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "o2Ttw4qaxOTgEWtp",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Matte @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Matte @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Jk7PRQkF2lFEtI8Q",
|
||||||
|
"filament_id": "OF6qAuyi",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Matte @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Metal @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Metal @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "eg4osx9bpk61uXvT",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Metal @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Metal @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Gs8hS5CpV3W62pjs",
|
||||||
|
"filament_id": "OFAebKg8",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Metal @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Pro @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Pro @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "sD9IWFJxvKTDfpXm",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Pro @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Pro @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "vTVCr1id0cTtMzuE",
|
||||||
|
"filament_id": "OFm4SivL",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Pro @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+35
@@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Silk @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "ipe3qzXePPZ9pMmY",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Silk @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Silk @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA-Silk @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "XXmeUWaLyVCTDS6G",
|
||||||
|
"filament_id": "OFgjgN35",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Silk @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.035"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Sparkle @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "VV75FchmjnPjnDE8",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Sparkle @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA Sparkle @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "dscnwSfbrGWiS4Um",
|
||||||
|
"filament_id": "OFV5c8hG",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA Sparkle @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge PLA-CF @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA-CF10 @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "EpC2ItdGUxFV7x1y",
|
||||||
|
"filament_id": "OF9cAwMK",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge PLA-CF @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
+33
@@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge R PLA @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "G0qAKoO8Dyo0hO6G",
|
||||||
|
"filament_id": "OFT02Lz9",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge R PLA @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge R PLA @FF Adventurer A5",
|
||||||
|
"inherits": "Generic PLA @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "sN7eGcbuGZxGrbR5",
|
||||||
|
"filament_id": "OFT02Lz9",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge R PLA @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.0325"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Flashforge TPU 95A @FF Adventurer A5",
|
||||||
|
"inherits": "Generic TPU @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "2MT9C2rvvQ3uU1lG",
|
||||||
|
"filament_id": "OFSqIcJC",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Flashforge"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Flashforge TPU 95A @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
]
|
||||||
|
}
|
||||||
+17
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Generic PETG @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Generic PETG @FF AD5M 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "KSKX6BHNQgmOEShO",
|
||||||
|
"instantiation": "true",
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Generic PETG @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Generic PLA @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Generic PLA @FF AD5M 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "kHdLzX8Auwz9tFvw",
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"2.2"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Generic PLA @FF Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Kexcelled TPU 64D @FF Adventurer A5",
|
||||||
|
"inherits": "Generic TPU @Flashforge",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "OB4I8nwZn8sCcCcF",
|
||||||
|
"filament_id": "OF20zavY",
|
||||||
|
"filament_vendor": [
|
||||||
|
"Kexcelled"
|
||||||
|
],
|
||||||
|
"instantiation": "true",
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_settings_id": [
|
||||||
|
"Kexcelled TPU 64D @FF Adventurer A5"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"Flashforge Adventurer A5 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"type": "machine",
|
||||||
|
"name": "Flashforge Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "TZyRxvTiJNKNJWCD",
|
||||||
|
"instantiation": "true",
|
||||||
|
"adaptive_bed_mesh_margin": "0",
|
||||||
|
"auxiliary_fan": "1",
|
||||||
|
"bbl_use_printhost": "0",
|
||||||
|
"bed_custom_model": "",
|
||||||
|
"bed_custom_texture": "",
|
||||||
|
"bed_exclude_area": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"bed_mesh_max": "99999,99999",
|
||||||
|
"bed_mesh_min": "-99999,-99999",
|
||||||
|
"bed_mesh_probe_distance": "50,50",
|
||||||
|
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"best_object_pos": "0.5,0.5",
|
||||||
|
"change_extrusion_role_gcode": "",
|
||||||
|
"change_filament_gcode": "",
|
||||||
|
"cooling_tube_length": "0",
|
||||||
|
"cooling_tube_retraction": "0",
|
||||||
|
"default_filament_profile": [
|
||||||
|
"Generic PLA @Flashforge"
|
||||||
|
],
|
||||||
|
"default_print_profile": "0.12mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"disable_m73": "0",
|
||||||
|
"emit_machine_limits_to_gcode": "1",
|
||||||
|
"enable_filament_ramming": "0",
|
||||||
|
"enable_long_retraction_when_cut": "0",
|
||||||
|
"extra_loading_move": "0",
|
||||||
|
"extruder_clearance_height_to_lid": "150",
|
||||||
|
"extruder_clearance_height_to_rod": "27",
|
||||||
|
"extruder_clearance_radius": "76",
|
||||||
|
"extruder_colour": [
|
||||||
|
"#FCE94F"
|
||||||
|
],
|
||||||
|
"extruder_offset": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"fan_kickstart": "0",
|
||||||
|
"fan_speedup_overhangs": "1",
|
||||||
|
"fan_speedup_time": "0",
|
||||||
|
"gcode_flavor": "klipper",
|
||||||
|
"head_wrap_detect_zone": [],
|
||||||
|
"high_current_on_filament_swap": "0",
|
||||||
|
"host_type": "octoprint",
|
||||||
|
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"long_retractions_when_cut": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature",
|
||||||
|
"machine_load_filament_time": "0",
|
||||||
|
"machine_max_acceleration_e": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_extruding": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_retracting": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_travel": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_x": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_y": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_z": [
|
||||||
|
"500",
|
||||||
|
"500"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_e": [
|
||||||
|
"2.5",
|
||||||
|
"2.5"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_x": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_y": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_z": [
|
||||||
|
"3",
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"machine_max_speed_e": [
|
||||||
|
"30",
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"machine_max_speed_x": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_y": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_z": [
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"machine_min_extruding_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_min_travel_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_pause_gcode": "PAUSE",
|
||||||
|
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG90 E0\nM83\nG1 E-1 F600\nG1 E8 F300\nG1 X85 Y110 Z0.2 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||||
|
"machine_tool_change_time": "0",
|
||||||
|
"machine_unload_filament_time": "0",
|
||||||
|
"manual_filament_change": "0",
|
||||||
|
"max_layer_height": [
|
||||||
|
"0.14"
|
||||||
|
],
|
||||||
|
"min_layer_height": [
|
||||||
|
"0.08"
|
||||||
|
],
|
||||||
|
"nozzle_diameter": [
|
||||||
|
"0.25"
|
||||||
|
],
|
||||||
|
"nozzle_height": "2.5",
|
||||||
|
"nozzle_hrc": "0",
|
||||||
|
"nozzle_type": "stainless_steel",
|
||||||
|
"nozzle_volume": "0",
|
||||||
|
"parking_pos_retraction": "0",
|
||||||
|
"pellet_modded_printer": "0",
|
||||||
|
"preferred_orientation": "0",
|
||||||
|
"printable_area": [
|
||||||
|
"-110x-110",
|
||||||
|
"110x-110",
|
||||||
|
"110x110",
|
||||||
|
"-110x110"
|
||||||
|
],
|
||||||
|
"printable_height": "220",
|
||||||
|
"printer_model": "Flashforge Adventurer A5",
|
||||||
|
"printer_notes": "",
|
||||||
|
"printer_settings_id": "Flashforge Adventurer A5 0.25 nozzle",
|
||||||
|
"printer_structure": "undefine",
|
||||||
|
"printer_technology": "FFF",
|
||||||
|
"printer_variant": "0.25",
|
||||||
|
"printhost_authorization_type": "key",
|
||||||
|
"printhost_ssl_ignore_revoke": "0",
|
||||||
|
"printing_by_object_gcode": "",
|
||||||
|
"purge_in_prime_tower": "1",
|
||||||
|
"retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"retract_length_toolchange": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"retract_lift_above": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_below": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_enforce": [
|
||||||
|
"All Surfaces"
|
||||||
|
],
|
||||||
|
"retract_on_top_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_restart_extra_toolchange": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_cut": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"retraction_length": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"scan_first_layer": "0",
|
||||||
|
"single_extruder_multi_material": "0",
|
||||||
|
"support_air_filtration": "1",
|
||||||
|
"support_chamber_temp_control": "1",
|
||||||
|
"support_multi_bed_types": "1",
|
||||||
|
"template_custom_gcode": "",
|
||||||
|
"thumbnails": "140x110/PNG",
|
||||||
|
"thumbnails_format": "PNG",
|
||||||
|
"time_cost": "0",
|
||||||
|
"time_lapse_gcode": "",
|
||||||
|
"travel_slope": [
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"upward_compatible_machine": [],
|
||||||
|
"use_firmware_retraction": "0",
|
||||||
|
"use_relative_e_distances": "1",
|
||||||
|
"wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"z_hop": [
|
||||||
|
"0.3"
|
||||||
|
],
|
||||||
|
"z_hop_types": [
|
||||||
|
"Auto Lift"
|
||||||
|
],
|
||||||
|
"z_offset": "0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"type": "machine",
|
||||||
|
"name": "Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "EOhWyVbRzFtAc33v",
|
||||||
|
"instantiation": "true",
|
||||||
|
"adaptive_bed_mesh_margin": "0",
|
||||||
|
"auxiliary_fan": "1",
|
||||||
|
"bbl_use_printhost": "0",
|
||||||
|
"bed_custom_model": "",
|
||||||
|
"bed_custom_texture": "",
|
||||||
|
"bed_exclude_area": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"bed_mesh_max": "99999,99999",
|
||||||
|
"bed_mesh_min": "-99999,-99999",
|
||||||
|
"bed_mesh_probe_distance": "50,50",
|
||||||
|
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"best_object_pos": "0.5,0.5",
|
||||||
|
"change_extrusion_role_gcode": "",
|
||||||
|
"change_filament_gcode": "",
|
||||||
|
"cooling_tube_length": "0",
|
||||||
|
"cooling_tube_retraction": "0",
|
||||||
|
"default_filament_profile": [
|
||||||
|
"Generic PLA @Flashforge"
|
||||||
|
],
|
||||||
|
"default_print_profile": "0.20mm Standard @FF Adventurer A5 0.4 nozzle",
|
||||||
|
"deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"disable_m73": "0",
|
||||||
|
"emit_machine_limits_to_gcode": "1",
|
||||||
|
"enable_filament_ramming": "0",
|
||||||
|
"enable_long_retraction_when_cut": "0",
|
||||||
|
"extra_loading_move": "0",
|
||||||
|
"extruder_clearance_height_to_lid": "150",
|
||||||
|
"extruder_clearance_height_to_rod": "27",
|
||||||
|
"extruder_clearance_radius": "76",
|
||||||
|
"extruder_colour": [
|
||||||
|
"#FCE94F"
|
||||||
|
],
|
||||||
|
"extruder_offset": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"fan_kickstart": "0",
|
||||||
|
"fan_speedup_overhangs": "1",
|
||||||
|
"fan_speedup_time": "0",
|
||||||
|
"gcode_flavor": "klipper",
|
||||||
|
"head_wrap_detect_zone": [],
|
||||||
|
"high_current_on_filament_swap": "0",
|
||||||
|
"host_type": "octoprint",
|
||||||
|
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"long_retractions_when_cut": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature",
|
||||||
|
"machine_load_filament_time": "0",
|
||||||
|
"machine_max_acceleration_e": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_extruding": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_retracting": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_travel": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_x": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_y": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_z": [
|
||||||
|
"500",
|
||||||
|
"500"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_e": [
|
||||||
|
"2.5",
|
||||||
|
"2.5"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_x": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_y": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_z": [
|
||||||
|
"3",
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"machine_max_speed_e": [
|
||||||
|
"30",
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"machine_max_speed_x": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_y": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_z": [
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"machine_min_extruding_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_min_travel_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_pause_gcode": "PAUSE",
|
||||||
|
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-0.2 F800\nG1 X110 Y-110 F6000\nG1 E2 F800\nG1 Y-110 X55 Z0.25 F4800\nG1 X-55 E8 F2400\nG1 Y-109.6 F2400\nG1 X55 E5 F2400\nG1 Y-110 X55 Z0.45 F4800\nG1 X-55 E8 F2400\nG1 Y-109.6 F2400\nG1 X55 E5 F2400\nG92 E0",
|
||||||
|
"machine_tool_change_time": "0",
|
||||||
|
"machine_unload_filament_time": "0",
|
||||||
|
"manual_filament_change": "0",
|
||||||
|
"max_layer_height": [
|
||||||
|
"0.28"
|
||||||
|
],
|
||||||
|
"min_layer_height": [
|
||||||
|
"0.08"
|
||||||
|
],
|
||||||
|
"nozzle_diameter": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"nozzle_height": "2.5",
|
||||||
|
"nozzle_hrc": "0",
|
||||||
|
"nozzle_type": "hardened_steel",
|
||||||
|
"nozzle_volume": "0",
|
||||||
|
"parking_pos_retraction": "0",
|
||||||
|
"pellet_modded_printer": "0",
|
||||||
|
"preferred_orientation": "0",
|
||||||
|
"printable_area": [
|
||||||
|
"-110x-110",
|
||||||
|
"110x-110",
|
||||||
|
"110x110",
|
||||||
|
"-110x110"
|
||||||
|
],
|
||||||
|
"printable_height": "220",
|
||||||
|
"printer_model": "Flashforge Adventurer A5",
|
||||||
|
"printer_notes": "",
|
||||||
|
"printer_settings_id": "Flashforge Adventurer A5 0.4 nozzle",
|
||||||
|
"printer_structure": "undefine",
|
||||||
|
"printer_technology": "FFF",
|
||||||
|
"printer_variant": "0.4",
|
||||||
|
"printhost_authorization_type": "key",
|
||||||
|
"printhost_ssl_ignore_revoke": "0",
|
||||||
|
"printing_by_object_gcode": "",
|
||||||
|
"purge_in_prime_tower": "1",
|
||||||
|
"retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"retract_length_toolchange": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"retract_lift_above": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_below": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_enforce": [
|
||||||
|
"All Surfaces"
|
||||||
|
],
|
||||||
|
"retract_on_top_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_restart_extra_toolchange": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_cut": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"scan_first_layer": "0",
|
||||||
|
"single_extruder_multi_material": "0",
|
||||||
|
"support_air_filtration": "1",
|
||||||
|
"support_chamber_temp_control": "1",
|
||||||
|
"support_multi_bed_types": "1",
|
||||||
|
"template_custom_gcode": "",
|
||||||
|
"thumbnails": "140x110/PNG",
|
||||||
|
"thumbnails_format": "PNG",
|
||||||
|
"time_cost": "0",
|
||||||
|
"time_lapse_gcode": "",
|
||||||
|
"travel_slope": [
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"upward_compatible_machine": [],
|
||||||
|
"use_firmware_retraction": "0",
|
||||||
|
"use_relative_e_distances": "1",
|
||||||
|
"wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"z_hop": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"z_hop_types": [
|
||||||
|
"Auto Lift"
|
||||||
|
],
|
||||||
|
"z_offset": "0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"type": "machine",
|
||||||
|
"name": "Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"inherits": "Flashforge Adventurer 5M Pro 0.6 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "gu3ZxlImr6zK3yb6",
|
||||||
|
"instantiation": "true",
|
||||||
|
"adaptive_bed_mesh_margin": "0",
|
||||||
|
"auxiliary_fan": "1",
|
||||||
|
"bbl_use_printhost": "0",
|
||||||
|
"bed_custom_model": "",
|
||||||
|
"bed_custom_texture": "",
|
||||||
|
"bed_exclude_area": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"bed_mesh_max": "99999,99999",
|
||||||
|
"bed_mesh_min": "-99999,-99999",
|
||||||
|
"bed_mesh_probe_distance": "50,50",
|
||||||
|
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"best_object_pos": "0.5,0.5",
|
||||||
|
"change_extrusion_role_gcode": "",
|
||||||
|
"change_filament_gcode": "",
|
||||||
|
"cooling_tube_length": "0",
|
||||||
|
"cooling_tube_retraction": "0",
|
||||||
|
"default_filament_profile": [
|
||||||
|
"Generic PLA @Flashforge"
|
||||||
|
],
|
||||||
|
"default_print_profile": "0.30mm Standard @FF Adventurer A5 0.6 nozzle",
|
||||||
|
"deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"disable_m73": "0",
|
||||||
|
"emit_machine_limits_to_gcode": "1",
|
||||||
|
"enable_filament_ramming": "0",
|
||||||
|
"enable_long_retraction_when_cut": "0",
|
||||||
|
"extra_loading_move": "0",
|
||||||
|
"extruder_clearance_height_to_lid": "150",
|
||||||
|
"extruder_clearance_height_to_rod": "27",
|
||||||
|
"extruder_clearance_radius": "76",
|
||||||
|
"extruder_colour": [
|
||||||
|
"#FCE94F"
|
||||||
|
],
|
||||||
|
"extruder_offset": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"fan_kickstart": "0",
|
||||||
|
"fan_speedup_overhangs": "1",
|
||||||
|
"fan_speedup_time": "0",
|
||||||
|
"gcode_flavor": "klipper",
|
||||||
|
"head_wrap_detect_zone": [],
|
||||||
|
"high_current_on_filament_swap": "0",
|
||||||
|
"host_type": "octoprint",
|
||||||
|
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"long_retractions_when_cut": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature",
|
||||||
|
"machine_load_filament_time": "0",
|
||||||
|
"machine_max_acceleration_e": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_extruding": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_retracting": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_travel": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_x": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_y": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_z": [
|
||||||
|
"500",
|
||||||
|
"500"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_e": [
|
||||||
|
"2.5",
|
||||||
|
"2.5"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_x": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_y": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_z": [
|
||||||
|
"3",
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"machine_max_speed_e": [
|
||||||
|
"30",
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"machine_max_speed_x": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_y": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_z": [
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"machine_min_extruding_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_min_travel_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_pause_gcode": "PAUSE",
|
||||||
|
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-0.2 F800\nG1 X110 Y-110 F6000\nG1 E2 F800\nG1 Y-110 X55 Z0.25 F4800\nG1 X-55 E8 F2400\nG1 Y-109.6 F2400\nG1 X55 E5 F2400\nG1 Y-110 X55 Z0.45 F4800\nG1 X-55 E8 F2400\nG1 Y-109.6 F2400\nG1 X55 E5 F2400\nG92 E0",
|
||||||
|
"machine_tool_change_time": "0",
|
||||||
|
"machine_unload_filament_time": "0",
|
||||||
|
"manual_filament_change": "0",
|
||||||
|
"max_layer_height": [
|
||||||
|
"0.42"
|
||||||
|
],
|
||||||
|
"min_layer_height": [
|
||||||
|
"0.15"
|
||||||
|
],
|
||||||
|
"nozzle_diameter": [
|
||||||
|
"0.6"
|
||||||
|
],
|
||||||
|
"nozzle_height": "2.5",
|
||||||
|
"nozzle_hrc": "0",
|
||||||
|
"nozzle_type": "hardened_steel",
|
||||||
|
"nozzle_volume": "0",
|
||||||
|
"parking_pos_retraction": "0",
|
||||||
|
"pellet_modded_printer": "0",
|
||||||
|
"preferred_orientation": "0",
|
||||||
|
"printable_area": [
|
||||||
|
"-110x-110",
|
||||||
|
"110x-110",
|
||||||
|
"110x110",
|
||||||
|
"-110x110"
|
||||||
|
],
|
||||||
|
"printable_height": "220",
|
||||||
|
"printer_model": "Flashforge Adventurer A5",
|
||||||
|
"printer_notes": "",
|
||||||
|
"printer_settings_id": "Flashforge Adventurer A5 0.6 nozzle",
|
||||||
|
"printer_structure": "undefine",
|
||||||
|
"printer_technology": "FFF",
|
||||||
|
"printer_variant": "0.6",
|
||||||
|
"printhost_authorization_type": "key",
|
||||||
|
"printhost_ssl_ignore_revoke": "0",
|
||||||
|
"printing_by_object_gcode": "",
|
||||||
|
"purge_in_prime_tower": "1",
|
||||||
|
"retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"retract_length_toolchange": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"retract_lift_above": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_below": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_enforce": [
|
||||||
|
"All Surfaces"
|
||||||
|
],
|
||||||
|
"retract_on_top_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_restart_extra_toolchange": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_cut": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"scan_first_layer": "0",
|
||||||
|
"single_extruder_multi_material": "0",
|
||||||
|
"support_air_filtration": "1",
|
||||||
|
"support_chamber_temp_control": "1",
|
||||||
|
"support_multi_bed_types": "1",
|
||||||
|
"template_custom_gcode": "",
|
||||||
|
"thumbnails": "140x110/PNG",
|
||||||
|
"thumbnails_format": "PNG",
|
||||||
|
"time_cost": "0",
|
||||||
|
"time_lapse_gcode": "",
|
||||||
|
"travel_slope": [
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"upward_compatible_machine": [],
|
||||||
|
"use_firmware_retraction": "0",
|
||||||
|
"use_relative_e_distances": "1",
|
||||||
|
"wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"z_hop": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"z_hop_types": [
|
||||||
|
"Auto Lift"
|
||||||
|
],
|
||||||
|
"z_offset": "0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,233 @@
|
|||||||
|
{
|
||||||
|
"type": "machine",
|
||||||
|
"name": "Flashforge Adventurer A5 0.8 nozzle",
|
||||||
|
"inherits": "Flashforge Adventurer 5M Pro 0.8 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "tKE8SP6KOhIupWbU",
|
||||||
|
"instantiation": "true",
|
||||||
|
"adaptive_bed_mesh_margin": "0",
|
||||||
|
"auxiliary_fan": "1",
|
||||||
|
"bbl_use_printhost": "0",
|
||||||
|
"bed_custom_model": "",
|
||||||
|
"bed_custom_texture": "",
|
||||||
|
"bed_exclude_area": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"bed_mesh_max": "99999,99999",
|
||||||
|
"bed_mesh_min": "-99999,-99999",
|
||||||
|
"bed_mesh_probe_distance": "50,50",
|
||||||
|
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"best_object_pos": "0.5,0.5",
|
||||||
|
"change_extrusion_role_gcode": "",
|
||||||
|
"change_filament_gcode": "",
|
||||||
|
"cooling_tube_length": "0",
|
||||||
|
"cooling_tube_retraction": "0",
|
||||||
|
"default_filament_profile": [
|
||||||
|
"Generic PLA @Flashforge"
|
||||||
|
],
|
||||||
|
"default_print_profile": "0.40mm Standard @FF Adventurer A5 0.8 nozzle",
|
||||||
|
"deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"disable_m73": "0",
|
||||||
|
"emit_machine_limits_to_gcode": "1",
|
||||||
|
"enable_filament_ramming": "0",
|
||||||
|
"enable_long_retraction_when_cut": "0",
|
||||||
|
"extra_loading_move": "0",
|
||||||
|
"extruder_clearance_height_to_lid": "150",
|
||||||
|
"extruder_clearance_height_to_rod": "27",
|
||||||
|
"extruder_clearance_radius": "76",
|
||||||
|
"extruder_colour": [
|
||||||
|
"#FCE94F"
|
||||||
|
],
|
||||||
|
"extruder_offset": [
|
||||||
|
"0x0"
|
||||||
|
],
|
||||||
|
"fan_kickstart": "0",
|
||||||
|
"fan_speedup_overhangs": "1",
|
||||||
|
"fan_speedup_time": "0",
|
||||||
|
"gcode_flavor": "klipper",
|
||||||
|
"head_wrap_detect_zone": [],
|
||||||
|
"high_current_on_filament_swap": "0",
|
||||||
|
"host_type": "octoprint",
|
||||||
|
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||||
|
"long_retractions_when_cut": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nM104 S0 ; turn off temperature",
|
||||||
|
"machine_load_filament_time": "0",
|
||||||
|
"machine_max_acceleration_e": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_extruding": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_retracting": [
|
||||||
|
"5000",
|
||||||
|
"5000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_travel": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_x": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_y": [
|
||||||
|
"20000",
|
||||||
|
"20000"
|
||||||
|
],
|
||||||
|
"machine_max_acceleration_z": [
|
||||||
|
"500",
|
||||||
|
"500"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_e": [
|
||||||
|
"2.5",
|
||||||
|
"2.5"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_x": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_y": [
|
||||||
|
"9",
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"machine_max_jerk_z": [
|
||||||
|
"3",
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"machine_max_speed_e": [
|
||||||
|
"30",
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"machine_max_speed_x": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_y": [
|
||||||
|
"600",
|
||||||
|
"600"
|
||||||
|
],
|
||||||
|
"machine_max_speed_z": [
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"machine_min_extruding_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_min_travel_rate": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"machine_pause_gcode": "PAUSE",
|
||||||
|
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.3 F1200\nG1 X-110 E30 F2400\nG1 Y0 E8 F2400\nG1 X-109.6 F2400\nG1 Y110 E10 F2400\nG92 E0",
|
||||||
|
"machine_tool_change_time": "0",
|
||||||
|
"machine_unload_filament_time": "0",
|
||||||
|
"manual_filament_change": "0",
|
||||||
|
"max_layer_height": [
|
||||||
|
"0.56"
|
||||||
|
],
|
||||||
|
"min_layer_height": [
|
||||||
|
"0.24"
|
||||||
|
],
|
||||||
|
"nozzle_diameter": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"nozzle_height": "2.5",
|
||||||
|
"nozzle_hrc": "0",
|
||||||
|
"nozzle_type": "hardened_steel",
|
||||||
|
"nozzle_volume": "0",
|
||||||
|
"parking_pos_retraction": "0",
|
||||||
|
"pellet_modded_printer": "0",
|
||||||
|
"preferred_orientation": "0",
|
||||||
|
"printable_area": [
|
||||||
|
"-110x-110",
|
||||||
|
"110x-110",
|
||||||
|
"110x110",
|
||||||
|
"-110x110"
|
||||||
|
],
|
||||||
|
"printable_height": "220",
|
||||||
|
"printer_model": "Flashforge Adventurer A5",
|
||||||
|
"printer_notes": "",
|
||||||
|
"printer_settings_id": "Flashforge Adventurer A5 0.8 nozzle",
|
||||||
|
"printer_structure": "undefine",
|
||||||
|
"printer_technology": "FFF",
|
||||||
|
"printer_variant": "0.8",
|
||||||
|
"printhost_authorization_type": "key",
|
||||||
|
"printhost_ssl_ignore_revoke": "0",
|
||||||
|
"printing_by_object_gcode": "",
|
||||||
|
"purge_in_prime_tower": "1",
|
||||||
|
"retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"retract_length_toolchange": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"retract_lift_above": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_below": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_lift_enforce": [
|
||||||
|
"All Surfaces"
|
||||||
|
],
|
||||||
|
"retract_on_top_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_restart_extra_toolchange": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_cut": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"retraction_length": [
|
||||||
|
"1.5"
|
||||||
|
],
|
||||||
|
"retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"retraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"scan_first_layer": "0",
|
||||||
|
"single_extruder_multi_material": "0",
|
||||||
|
"support_air_filtration": "1",
|
||||||
|
"support_chamber_temp_control": "1",
|
||||||
|
"support_multi_bed_types": "1",
|
||||||
|
"template_custom_gcode": "",
|
||||||
|
"thumbnails": "140x110/PNG",
|
||||||
|
"thumbnails_format": "PNG",
|
||||||
|
"time_cost": "0",
|
||||||
|
"time_lapse_gcode": "",
|
||||||
|
"travel_slope": [
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"upward_compatible_machine": [],
|
||||||
|
"use_firmware_retraction": "0",
|
||||||
|
"use_relative_e_distances": "1",
|
||||||
|
"wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"z_hop": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"z_hop_types": [
|
||||||
|
"Auto Lift"
|
||||||
|
],
|
||||||
|
"z_offset": "0"
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"type": "machine_model",
|
||||||
|
"name": "Flashforge Adventurer A5",
|
||||||
|
"model_id": "Flashforge-Adventurer-A5",
|
||||||
|
"nozzle_diameter": "0.25;0.4;0.6;0.8",
|
||||||
|
"machine_tech": "FFF",
|
||||||
|
"family": "Flashforge",
|
||||||
|
"bed_model": "flashforge_adventurer5m_series_buildplate_model.STL",
|
||||||
|
"bed_texture": "flashforge_adventurer5m_buildplate_texture.svg",
|
||||||
|
"hotend_model": "flashforge_adventurer_5m_series_hotend.STL",
|
||||||
|
"default_materials": "Generic ABS @Flashforge;Generic PETG @Flashforge;Generic PLA @Flashforge;Flashforge PLA Basic @FF Adventurer A5;Generic PLA @FF Adventurer A5 0.25 nozzle"
|
||||||
|
}
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"name": "0.06mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "426xS3MFF3smfdDE",
|
||||||
|
"instantiation": "true",
|
||||||
|
"elefant_foot_compensation": "0.15",
|
||||||
|
"enable_arc_fitting": "1",
|
||||||
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"infill_wall_overlap": "15%",
|
||||||
|
"only_one_wall_top": "1",
|
||||||
|
"print_settings_id": "0.06mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"seam_slope_conditional": "1",
|
||||||
|
"seam_slope_inner_walls": "1",
|
||||||
|
"slowdown_for_curled_perimeters": "0",
|
||||||
|
"small_perimeter_speed": "25",
|
||||||
|
"sparse_infill_pattern": "grid",
|
||||||
|
"wipe_speed": "200"
|
||||||
|
}
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"name": "0.08mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "2N8NG8IpxxCPXZlq",
|
||||||
|
"instantiation": "true",
|
||||||
|
"elefant_foot_compensation": "0.15",
|
||||||
|
"enable_arc_fitting": "1",
|
||||||
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"infill_wall_overlap": "15%",
|
||||||
|
"only_one_wall_top": "1",
|
||||||
|
"print_settings_id": "0.08mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"seam_slope_conditional": "1",
|
||||||
|
"seam_slope_inner_walls": "1",
|
||||||
|
"slowdown_for_curled_perimeters": "0",
|
||||||
|
"small_perimeter_speed": "25",
|
||||||
|
"sparse_infill_pattern": "grid",
|
||||||
|
"wipe_speed": "200"
|
||||||
|
}
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"name": "0.10mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "H74U0yaiNgyQpdbc",
|
||||||
|
"instantiation": "true",
|
||||||
|
"elefant_foot_compensation": "0.15",
|
||||||
|
"enable_arc_fitting": "1",
|
||||||
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"infill_wall_overlap": "15%",
|
||||||
|
"only_one_wall_top": "1",
|
||||||
|
"print_settings_id": "0.10mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"seam_slope_conditional": "1",
|
||||||
|
"seam_slope_inner_walls": "1",
|
||||||
|
"slowdown_for_curled_perimeters": "0",
|
||||||
|
"small_perimeter_speed": "25",
|
||||||
|
"sparse_infill_pattern": "grid",
|
||||||
|
"wipe_speed": "200"
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"name": "0.12mm Fine @FF Adventurer A5 0.4 nozzle",
|
||||||
|
"inherits": "0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "G5AhxHk95GfXw6ec",
|
||||||
|
"instantiation": "true",
|
||||||
|
"bridge_flow": "1",
|
||||||
|
"enable_arc_fitting": "1",
|
||||||
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"infill_wall_overlap": "15%",
|
||||||
|
"initial_layer_print_height": "0.2",
|
||||||
|
"only_one_wall_top": "1",
|
||||||
|
"print_settings_id": "0.12mm Fine @FF Adventurer A5 0.4 nozzle",
|
||||||
|
"seam_slope_conditional": "1",
|
||||||
|
"seam_slope_inner_walls": "1",
|
||||||
|
"slowdown_for_curled_perimeters": "0",
|
||||||
|
"small_perimeter_speed": "25",
|
||||||
|
"sparse_infill_pattern": "grid",
|
||||||
|
"support_line_width": "0.42"
|
||||||
|
}
|
||||||
+17
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"name": "0.12mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "x28lWqpQxkirzYXm",
|
||||||
|
"instantiation": "true",
|
||||||
|
"enable_arc_fitting": "1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"infill_wall_overlap": "15%",
|
||||||
|
"only_one_wall_top": "1",
|
||||||
|
"slowdown_for_curled_perimeters": "0",
|
||||||
|
"print_settings_id": "0.12mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"sparse_infill_pattern": "grid"
|
||||||
|
}
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"type": "process",
|
||||||
|
"name": "0.14mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"inherits": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Xx4fcIZ3esI4IXbl",
|
||||||
|
"instantiation": "true",
|
||||||
|
"elefant_foot_compensation": "0.15",
|
||||||
|
"enable_arc_fitting": "1",
|
||||||
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Flashforge Adventurer A5 0.25 nozzle"
|
||||||
|
],
|
||||||
|
"infill_wall_overlap": "15%",
|
||||||
|
"only_one_wall_top": "1",
|
||||||
|
"print_settings_id": "0.14mm Standard @FF Adventurer A5 0.25 nozzle",
|
||||||
|
"seam_slope_conditional": "1",
|
||||||
|
"seam_slope_inner_walls": "1",
|
||||||
|
"slowdown_for_curled_perimeters": "0",
|
||||||
|
"small_perimeter_speed": "25",
|
||||||
|
"sparse_infill_pattern": "grid",
|
||||||
|
"wipe_speed": "200"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user