Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02b8e26a4f |
@@ -75,6 +75,8 @@ jobs:
|
||||
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
||||
base="$head^"
|
||||
fi
|
||||
echo "Diffing $base..$head"
|
||||
|
||||
mapfile -t candidates < <(
|
||||
git diff --name-only "$base" "$head" -- resources/profiles \
|
||||
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
||||
@@ -93,6 +95,7 @@ jobs:
|
||||
done
|
||||
|
||||
if [ "${#vendors[@]}" -eq 0 ]; then
|
||||
echo "No changed vendor profiles in this push; nothing to publish."
|
||||
echo "vendors=" >> "$GITHUB_OUTPUT"
|
||||
exit 0
|
||||
fi
|
||||
@@ -135,10 +138,13 @@ jobs:
|
||||
done
|
||||
|
||||
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"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
printf 'Changed vendors: %s\n' "${vendors[*]}"
|
||||
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Resolve Orca version
|
||||
@@ -157,6 +163,7 @@ jobs:
|
||||
# OrcaCloud keys R2 on; orca_ver (X.Y.Z) is the asset-name prefix.
|
||||
echo "release_tag=$raw" >> "$GITHUB_OUTPUT"
|
||||
echo "orca_ver=$orca_ver" >> "$GITHUB_OUTPUT"
|
||||
echo "Orca version: release_tag=$raw asset_prefix=$orca_ver"
|
||||
|
||||
- name: Validate profile versions
|
||||
id: pver
|
||||
@@ -172,6 +179,7 @@ jobs:
|
||||
exit 1
|
||||
fi
|
||||
printf '%s\t%s\n' "$v" "$pv" >> "$RUNNER_TEMP/pver.tsv"
|
||||
echo "$v -> $pv"
|
||||
done
|
||||
|
||||
- name: Download generate_system_cache
|
||||
@@ -206,6 +214,7 @@ jobs:
|
||||
pv="$(awk -F'\t' -v v="$v" '$1==v{print $2}' "$RUNNER_TEMP/pver.tsv")"
|
||||
name="${orca_ver}_${v}_${pv}_${ts}.zip"
|
||||
( cd resources/profiles && zip -q -j "$out/$name" "$v.opc" )
|
||||
echo "packaged $name"
|
||||
done
|
||||
echo "dir=$out" >> "$GITHUB_OUTPUT"
|
||||
|
||||
|
||||
@@ -520,28 +520,6 @@ jobs:
|
||||
} catch (error) {
|
||||
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:
|
||||
# Independent of the merge rules: any PR that changes only files inside
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||
typedef unsigned long long t1;typedef t1*t2;
|
||||
-void g(){}
|
||||
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
||||
void h(){}
|
||||
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;}
|
||||
@@ -17,7 +17,7 @@
|
||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||
typedef unsigned long long t1;typedef t1*t2;
|
||||
-void g(){}
|
||||
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
||||
void h(){}
|
||||
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;}
|
||||
@@ -26,7 +26,7 @@
|
||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||
typedef unsigned long long t1;typedef t1*t2;
|
||||
-void g(){}
|
||||
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
||||
void h(){}
|
||||
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;}
|
||||
|
||||
@@ -15,7 +15,6 @@ orcaslicer_add_cmake_project(
|
||||
-DTBB_BUILD_SHARED=OFF
|
||||
-DTBB_BUILD_TESTS=OFF
|
||||
-DTBB_TEST=OFF
|
||||
-DTBB_DISABLE_HWLOC_AUTOMATIC_SEARCH=ON
|
||||
-DTBB_ENABLE_IPO=OFF
|
||||
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
|
||||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Cubicon",
|
||||
"version": "02.04.00.06",
|
||||
"version": "02.04.00.05",
|
||||
"force_update": "0",
|
||||
"description": "Cubicon configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"115"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"120"
|
||||
"115"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
@@ -24,13 +24,13 @@
|
||||
"30"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
"1.24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"14"
|
||||
"23"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"240"
|
||||
@@ -39,19 +39,19 @@
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"15"
|
||||
"70"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
"3"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"245"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"105"
|
||||
"78"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
@@ -61,14 +61,5 @@
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"activate_air_filtration": [
|
||||
"1"
|
||||
],
|
||||
"during_print_exhaust_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"complete_print_exhaust_fan_speed": [
|
||||
"255"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
"Cubicon"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"105"
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"115"
|
||||
"100"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
@@ -24,13 +24,13 @@
|
||||
"30"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
"1.24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1.04"
|
||||
"0.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
"23"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"225"
|
||||
@@ -39,19 +39,19 @@
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"15"
|
||||
"70"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
"3"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"105"
|
||||
"78"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
@@ -61,32 +61,5 @@
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"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"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"120"
|
||||
"115"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
@@ -24,13 +24,13 @@
|
||||
"30"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
"1.24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"14"
|
||||
"23"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"240"
|
||||
@@ -39,19 +39,19 @@
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"15"
|
||||
"70"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"30"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"10"
|
||||
"3"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"105"
|
||||
"85"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
|
||||
@@ -10,77 +10,5 @@
|
||||
],
|
||||
"filament_vendor": [
|
||||
"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"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"85"
|
||||
"80"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
@@ -54,45 +54,12 @@
|
||||
"70"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"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,38 +53,5 @@
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"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,14 +18,5 @@
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"220"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.025"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -73,12 +73,12 @@
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"50",
|
||||
"100"
|
||||
"250",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"5",
|
||||
"10"
|
||||
"25",
|
||||
"12"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
|
||||
@@ -5,8 +5,7 @@
|
||||
"instantiation": "false",
|
||||
"compatible_printers": [
|
||||
"Cubicon xCeler-I 0.4 nozzle",
|
||||
"Cubicon xCeler-Plus 0.4 nozzle",
|
||||
"Cubicon xCeler-Mini 0.4 nozzle"
|
||||
"Cubicon xCeler-Plus 0.4 nozzle"
|
||||
],
|
||||
"print_settings_id": "cubicon common @base",
|
||||
"accel_to_decel_enable": "1",
|
||||
@@ -15,24 +14,26 @@
|
||||
"bridge_flow": "0.9",
|
||||
"internal_bridge_flow": "0.9",
|
||||
"brim_type": "no_brim",
|
||||
"detect_overhang_wall": "0",
|
||||
"detect_overhang_wall": "1",
|
||||
"resolution": "0.012",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"percise_outer_wall": "1",
|
||||
"percise_z_height": "0.2",
|
||||
"enable_overhang_speed": "1",
|
||||
"enable_prime_tower": "0",
|
||||
"enable_prime_tower": "1",
|
||||
"enable_support": "0",
|
||||
"exclude_object": "0",
|
||||
"filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode",
|
||||
"gap_infill_speed": "250",
|
||||
"infill_combination": "0",
|
||||
"infill_combination": "1",
|
||||
"infill_direction": "45",
|
||||
"infill_wall_overlap": "15",
|
||||
"infill_anchor": "400%",
|
||||
"infill_anchor_max": "20",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"initial_layer_speed": "50",
|
||||
"initial_layer_infill_speed": "100",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"initial_layer_speed": "60",
|
||||
"initial_layer_infill_speed": "60",
|
||||
"initial_layer_travel_speed": "500",
|
||||
"slow_down_layers": "1",
|
||||
"only_one_wall_top": "1",
|
||||
@@ -46,9 +47,9 @@
|
||||
"outer_wall_speed": "200",
|
||||
"print_sequence": "by layer",
|
||||
"raft_layers": "0",
|
||||
"reduce_crossing_wall": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"reduce_infill_retraction": "1",
|
||||
"seam_position": "aligned",
|
||||
"seam_position": "back",
|
||||
"seam_gap": "10%",
|
||||
"enable_arc_fitting": "0",
|
||||
"staggered_inner_seams": "1",
|
||||
@@ -56,7 +57,7 @@
|
||||
"skirt_distance": "2.5",
|
||||
"skirt_height": "1",
|
||||
"skirt_speed": "50",
|
||||
"skirt_start_angle": "-135",
|
||||
"skirt_start_angle": "-45",
|
||||
"sparse_infill_density": "15",
|
||||
"sparse_infill_speed": "270",
|
||||
"sparse_infill_pattern": "grid",
|
||||
@@ -83,7 +84,7 @@
|
||||
"support_threshold_angle": "15",
|
||||
"wall_loops": "2",
|
||||
"thick_bridges": "0",
|
||||
"extra_perimeters_on_overhangs": "0",
|
||||
"extra_perimeters_on_overhangs": "1",
|
||||
"top_shell_layers": "5",
|
||||
"top_shell_thickness": "1",
|
||||
"slow_down_curled_perimeters": "0",
|
||||
@@ -92,18 +93,18 @@
|
||||
"travel_jerk": "12",
|
||||
"infill_jerk": "12",
|
||||
"initial_layer_jerk": "9",
|
||||
"inner_wall_jerk": "3.5",
|
||||
"outer_wall_jerk": "3",
|
||||
"default_acceleration": "10000",
|
||||
"travel_acceleration": "10000",
|
||||
"outer_wall_acceleration": "2000",
|
||||
"inner_wall_acceleration": "6000",
|
||||
"initial_layer_acceleration": "500",
|
||||
"inner_wall_jerk": "7",
|
||||
"outer_wall_jerk": "7",
|
||||
"default_acceleration": "13000",
|
||||
"travel_acceleration": "13000",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"top_surface_acceleration": "2000",
|
||||
"raft_first_layer_density": "90",
|
||||
"raft_first_layer_expansion": "2",
|
||||
"precise_outer_wall": "1",
|
||||
"precise_z_height": "1",
|
||||
"precise_z_height": "0",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "150%",
|
||||
@@ -111,7 +112,5 @@
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "10",
|
||||
"independent_support_layer_height": "1",
|
||||
"solid_infill_direction": "90",
|
||||
"max_travel_detour_distance": "80%"
|
||||
"independent_support_layer_height": "1"
|
||||
}
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "30",
|
||||
"travel_speed": "400",
|
||||
"enable_prime_tower": "0",
|
||||
"enable_prime_tower": "1",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0"
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
"enable_arc_fitting": "1",
|
||||
"enable_extra_bridge_layer": "disabled",
|
||||
"enable_overhang_speed": "1",
|
||||
"enable_prime_tower": "0",
|
||||
"enable_prime_tower": "1",
|
||||
"enable_support": "0",
|
||||
"enforce_support_layers": "0",
|
||||
"ensure_vertical_shell_thickness": "ensure_all",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Flashforge",
|
||||
"url": "",
|
||||
"version": "02.04.00.09",
|
||||
"version": "02.04.00.08",
|
||||
"force_update": "0",
|
||||
"description": "Flashforge configurations",
|
||||
"machine_model_list": [
|
||||
@@ -25,10 +25,6 @@
|
||||
"name": "Flashforge Adventurer 5M Pro",
|
||||
"sub_path": "machine/Flashforge Adventurer 5M Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "Flashforge Adventurer A5",
|
||||
"sub_path": "machine/Flashforge Adventurer A5.json"
|
||||
},
|
||||
{
|
||||
"name": "Flashforge Artemis",
|
||||
"sub_path": "machine/Flashforge Artemis.json"
|
||||
@@ -203,10 +199,6 @@
|
||||
"name": "0.20mm Standard @FF AD5X",
|
||||
"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",
|
||||
"sub_path": "process/0.20mm Standard @FF C5.json"
|
||||
@@ -319,10 +311,6 @@
|
||||
"name": "0.30mm Standard @FF AD5X 0.6 nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json"
|
||||
@@ -455,10 +443,6 @@
|
||||
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
|
||||
@@ -479,10 +463,6 @@
|
||||
"name": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.12mm Standard @FF G4 0.25 nozzle.json"
|
||||
@@ -503,10 +483,6 @@
|
||||
"name": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json"
|
||||
@@ -519,10 +495,6 @@
|
||||
"name": "0.18mm Fine @FF AD5X 0.6 nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json"
|
||||
@@ -531,10 +503,6 @@
|
||||
"name": "0.40mm Standard @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json"
|
||||
@@ -543,10 +511,6 @@
|
||||
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
|
||||
"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",
|
||||
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
|
||||
@@ -563,37 +527,13 @@
|
||||
"name": "0.14mm Standard @FF C5 0.25 nozzle",
|
||||
"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",
|
||||
"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",
|
||||
"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": [
|
||||
@@ -721,10 +661,6 @@
|
||||
"name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge ABS Basic @FF G4.json"
|
||||
@@ -805,10 +741,6 @@
|
||||
"name": "Flashforge ASA Basic",
|
||||
"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",
|
||||
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
|
||||
@@ -837,10 +769,6 @@
|
||||
"name": "Flashforge HS PETG @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge HS PETG @FF G4.json"
|
||||
@@ -873,10 +801,6 @@
|
||||
"name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PETG Pro @FF G4.json"
|
||||
@@ -901,10 +825,6 @@
|
||||
"name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4.json"
|
||||
@@ -1005,10 +925,6 @@
|
||||
"name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Generic PETG-CF10 @Flashforge AD4.json"
|
||||
@@ -1153,14 +1069,6 @@
|
||||
"name": "Flashforge HS PLA @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json"
|
||||
@@ -1181,10 +1089,6 @@
|
||||
"name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Color Change.json"
|
||||
@@ -1201,10 +1105,6 @@
|
||||
"name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Galaxy.json"
|
||||
@@ -1221,14 +1121,6 @@
|
||||
"name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Luminous.json"
|
||||
@@ -1245,10 +1137,6 @@
|
||||
"name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Matte.json"
|
||||
@@ -1265,10 +1153,6 @@
|
||||
"name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Metal.json"
|
||||
@@ -1285,10 +1169,6 @@
|
||||
"name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Pro.json"
|
||||
@@ -1305,10 +1185,6 @@
|
||||
"name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Sparkle.json"
|
||||
@@ -1325,14 +1201,6 @@
|
||||
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
|
||||
@@ -1401,10 +1269,6 @@
|
||||
"name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PPS @FF G4.json"
|
||||
@@ -1449,10 +1313,6 @@
|
||||
"name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json"
|
||||
@@ -1553,10 +1413,6 @@
|
||||
"name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge TPU 95A @FF G4.json"
|
||||
@@ -1597,10 +1453,6 @@
|
||||
"name": "Generic TPU @Flashforge AD4",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json"
|
||||
@@ -2097,10 +1949,6 @@
|
||||
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
|
||||
@@ -2197,10 +2045,6 @@
|
||||
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
|
||||
@@ -2213,10 +2057,6 @@
|
||||
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
|
||||
@@ -2265,10 +2105,6 @@
|
||||
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
|
||||
@@ -2361,14 +2197,6 @@
|
||||
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
|
||||
@@ -2669,66 +2497,6 @@
|
||||
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
|
||||
"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",
|
||||
"sub_path": "filament/Flashforge ABS Basic @FF C5.json"
|
||||
@@ -3139,10 +2907,6 @@
|
||||
"name": "Flashforge AD5X 0.25 nozzle",
|
||||
"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",
|
||||
"sub_path": "machine/Flashforge Guider4 0.25 nozzle.json"
|
||||
@@ -3155,10 +2919,6 @@
|
||||
"name": "Flashforge AD5X 0.4 nozzle",
|
||||
"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",
|
||||
"sub_path": "machine/Flashforge Creator 5 0.25 nozzle.json"
|
||||
@@ -3203,18 +2963,10 @@
|
||||
"name": "Flashforge AD5X 0.6 nozzle",
|
||||
"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",
|
||||
"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",
|
||||
"sub_path": "machine/Flashforge Guider4 0.4 HF nozzle.json"
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB |
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,92 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,92 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,53 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,47 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
@@ -1,233 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,233 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,233 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,233 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.18mm Fine @FF Adventurer A5 0.6 nozzle",
|
||||
"inherits": "0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "USICCgjHQ4aHkqMM",
|
||||
"instantiation": "true",
|
||||
"enable_arc_fitting": "1",
|
||||
"enable_support": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"compatible_printers": [
|
||||
"Flashforge Adventurer A5 0.6 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"only_one_wall_top": "1",
|
||||
"print_settings_id": "0.18mm Fine @FF Adventurer A5 0.6 nozzle",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"small_perimeter_speed": "25",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_top_z_distance": "0.2"
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @FF Adventurer A5 0.4 nozzle",
|
||||
"inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "ZrWC7sW8I5eH0nI0",
|
||||
"instantiation": "true",
|
||||
"enable_arc_fitting": "1",
|
||||
"compatible_printers": [
|
||||
"Flashforge Adventurer A5 0.4 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "15%",
|
||||
"only_one_wall_top": "1",
|
||||
"print_settings_id": "0.20mm Standard @FF Adventurer A5 0.4 nozzle",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"small_perimeter_speed": "25",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_top_z_distance": "0.2"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @FF Adventurer A5 0.4 nozzle",
|
||||
"inherits": "0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "nniAHPVQxmVlEZqp",
|
||||
"instantiation": "true",
|
||||
"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.25",
|
||||
"only_one_wall_top": "1",
|
||||
"print_settings_id": "0.24mm Draft @FF Adventurer A5 0.4 nozzle",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"small_perimeter_speed": "25",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_top_z_distance": "0.2"
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Fine @FF Adventurer A5 0.8 nozzle",
|
||||
"inherits": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "INfUgOlQBMZLYrfu",
|
||||
"instantiation": "true",
|
||||
"bridge_flow": "1",
|
||||
"enable_arc_fitting": "1",
|
||||
"compatible_printers": [
|
||||
"Flashforge Adventurer A5 0.8 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"only_one_wall_top": "1",
|
||||
"print_settings_id": "0.24mm Fine @FF Adventurer A5 0.8 nozzle",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"sparse_infill_pattern": "grid"
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.30mm Standard @FF Adventurer A5 0.6 nozzle",
|
||||
"inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "zNxUHo9HvYPlL2KP",
|
||||
"instantiation": "true",
|
||||
"enable_arc_fitting": "1",
|
||||
"compatible_printers": [
|
||||
"Flashforge Adventurer A5 0.6 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "15%",
|
||||
"only_one_wall_top": "1",
|
||||
"print_settings_id": "0.30mm Standard @FF Adventurer A5 0.6 nozzle",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_top_z_distance": "0.2"
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.40mm Standard @FF Adventurer A5 0.8 nozzle",
|
||||
"inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "Davfy2YyV2b7ofhd",
|
||||
"instantiation": "true",
|
||||
"enable_arc_fitting": "1",
|
||||
"compatible_printers": [
|
||||
"Flashforge Adventurer A5 0.8 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "15%",
|
||||
"print_settings_id": "0.40mm Standard @FF Adventurer A5 0.8 nozzle",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"support_bottom_z_distance": "0.25",
|
||||
"support_top_z_distance": "0.25"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.42mm Draft @FF Adventurer A5 0.6 nozzle",
|
||||
"inherits": "0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "k35K2zIeyVhqNVC1",
|
||||
"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.6 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "15%",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"only_one_wall_top": "1",
|
||||
"print_settings_id": "0.42mm Draft @FF Adventurer A5 0.6 nozzle",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"small_perimeter_speed": "25",
|
||||
"sparse_infill_pattern": "grid"
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.56mm Draft @FF Adventurer A5 0.8 nozzle",
|
||||
"inherits": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle",
|
||||
"from": "system",
|
||||
"setting_id": "AMe67pwFNPpsDJ9B",
|
||||
"instantiation": "true",
|
||||
"enable_arc_fitting": "1",
|
||||
"compatible_printers": [
|
||||
"Flashforge Adventurer A5 0.8 nozzle"
|
||||
],
|
||||
"infill_wall_overlap": "25%",
|
||||
"print_settings_id": "0.56mm Draft @FF Adventurer A5 0.8 nozzle",
|
||||
"slowdown_for_curled_perimeters": "0",
|
||||
"sparse_infill_pattern": "grid"
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Orca Arena Printer",
|
||||
"url": "",
|
||||
"version": "02.04.00.07",
|
||||
"version": "02.04.00.06",
|
||||
"force_update": "0",
|
||||
"description": "Orca Arena configuration files",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,16 +1,12 @@
|
||||
{
|
||||
"name": "RH3D",
|
||||
"version": "02.04.00.04",
|
||||
"version": "02.04.00.03",
|
||||
"force_update": "0",
|
||||
"description": "RH3D - printer profiles",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "E3NG v1.2S",
|
||||
"sub_path": "machine/E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "VIRTU E3",
|
||||
"sub_path": "machine/VIRTU E3.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
@@ -22,10 +18,6 @@
|
||||
"name": "fdm_common_E3NG v1.2S",
|
||||
"sub_path": "machine/fdm_common_E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_common_VIRTU E3",
|
||||
"sub_path": "machine/fdm_common_VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "E3NG v1.2S - 0.2 nozzle",
|
||||
"sub_path": "machine/E3NG v1.2S - 0.2 nozzle.json"
|
||||
@@ -45,26 +37,6 @@
|
||||
{
|
||||
"name": "E3NG v1.2S - 0.6 nozzle",
|
||||
"sub_path": "machine/E3NG v1.2S - 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "VIRTU E3 - 0.2 nozzle",
|
||||
"sub_path": "machine/VIRTU E3 - 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "VIRTU E3 - 0.3 nozzle",
|
||||
"sub_path": "machine/VIRTU E3 - 0.3 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "VIRTU E3 - 0.4 nozzle",
|
||||
"sub_path": "machine/VIRTU E3 - 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "VIRTU E3 - 0.5 nozzle",
|
||||
"sub_path": "machine/VIRTU E3 - 0.5 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "VIRTU E3 - 0.6 nozzle",
|
||||
"sub_path": "machine/VIRTU E3 - 0.6 nozzle.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
@@ -73,92 +45,8 @@
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "process_Fast_E3NG v1.2S",
|
||||
"sub_path": "process/process_Fast_E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "process_Fast_VIRTU E3",
|
||||
"sub_path": "process/process_Fast_VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "process_Slow_E3NG v1.2S",
|
||||
"sub_path": "process/process_Slow_E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "process_Slow_VIRTU E3",
|
||||
"sub_path": "process/process_Slow_VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "process_Standard_E3NG v1.2S",
|
||||
"sub_path": "process/process_Standard_E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "process_Standard_VIRTU E3",
|
||||
"sub_path": "process/process_Standard_VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Fast @E3NG v1.2S",
|
||||
"sub_path": "process/0.10mm Fast @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Fast @E3NG v1.2S",
|
||||
"sub_path": "process/0.15mm Fast @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Fast @E3NG v1.2S",
|
||||
"sub_path": "process/0.20mm Fast @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Fast @E3NG v1.2S",
|
||||
"sub_path": "process/0.25mm Fast @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Fast @VIRTU E3",
|
||||
"sub_path": "process/0.10mm Fast @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Fast @VIRTU E3",
|
||||
"sub_path": "process/0.15mm Fast @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Fast @VIRTU E3",
|
||||
"sub_path": "process/0.20mm Fast @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Fast @VIRTU E3",
|
||||
"sub_path": "process/0.25mm Fast @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Slow @E3NG v1.2S",
|
||||
"sub_path": "process/0.10mm Slow @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Slow @E3NG v1.2S",
|
||||
"sub_path": "process/0.15mm Slow @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Slow @E3NG v1.2S",
|
||||
"sub_path": "process/0.20mm Slow @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Slow @E3NG v1.2S",
|
||||
"sub_path": "process/0.25mm Slow @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Slow @VIRTU E3",
|
||||
"sub_path": "process/0.10mm Slow @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Slow @VIRTU E3",
|
||||
"sub_path": "process/0.15mm Slow @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Slow @VIRTU E3",
|
||||
"sub_path": "process/0.20mm Slow @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Slow @VIRTU E3",
|
||||
"sub_path": "process/0.25mm Slow @VIRTU E3.json"
|
||||
"name": "process_common_E3NG v1.2S",
|
||||
"sub_path": "process/process_common_E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Standard @E3NG v1.2S",
|
||||
@@ -168,29 +56,25 @@
|
||||
"name": "0.15mm Standard @E3NG v1.2S",
|
||||
"sub_path": "process/0.15mm Standard @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Fast @E3NG v1.2S",
|
||||
"sub_path": "process/0.20mm Fast @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Slow @E3NG v1.2S",
|
||||
"sub_path": "process/0.20mm Slow @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @E3NG v1.2S",
|
||||
"sub_path": "process/0.20mm Standard @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Fast @E3NG v1.2S",
|
||||
"sub_path": "process/0.25mm Fast @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Standard @E3NG v1.2S",
|
||||
"sub_path": "process/0.25mm Standard @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Standard @VIRTU E3",
|
||||
"sub_path": "process/0.10mm Standard @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Standard @VIRTU E3",
|
||||
"sub_path": "process/0.15mm Standard @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @VIRTU E3",
|
||||
"sub_path": "process/0.20mm Standard @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Standard @VIRTU E3",
|
||||
"sub_path": "process/0.25mm Standard @VIRTU E3.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
@@ -226,49 +110,25 @@
|
||||
"name": "Generic ABS @E3NG v1.2S",
|
||||
"sub_path": "filament/Generic ABS @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ABS @VIRTU E3",
|
||||
"sub_path": "filament/Generic ABS @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ASA @E3NG v1.2S",
|
||||
"sub_path": "filament/Generic ASA @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ASA @VIRTU E3",
|
||||
"sub_path": "filament/Generic ASA @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCCF @E3NG v1.2S",
|
||||
"sub_path": "filament/Generic PCCF @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PCCF @VIRTU E3",
|
||||
"sub_path": "filament/Generic PCCF @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG @E3NG v1.2S",
|
||||
"sub_path": "filament/Generic PETG @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG @VIRTU E3",
|
||||
"sub_path": "filament/Generic PETG @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA @E3NG v1.2S",
|
||||
"sub_path": "filament/Generic PLA @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA @VIRTU E3",
|
||||
"sub_path": "filament/Generic PLA @VIRTU E3.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU @E3NG v1.2S",
|
||||
"sub_path": "filament/Generic TPU @E3NG v1.2S.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU @VIRTU E3",
|
||||
"sub_path": "filament/Generic TPU @VIRTU E3.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 54 KiB |
@@ -1,443 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="a"
|
||||
viewBox="0 0 876.85037 876.85038"
|
||||
version="1.1"
|
||||
sodipodi:docname="E3NG-bed-texture.svg"
|
||||
width="232mm"
|
||||
height="232mm"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1"><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2"><path
|
||||
id="path2"
|
||||
style="display:block;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect26"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect22"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath22"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="circle22"
|
||||
cx="127.5"
|
||||
cy="32.5"
|
||||
r="12.5" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask23"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect23"
|
||||
width="22.5"
|
||||
height="45"
|
||||
x="127.5"
|
||||
y="10" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath26"><ellipse
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="ellipse26"
|
||||
cx="100"
|
||||
cy="30.000002"
|
||||
rx="9.9999962"
|
||||
ry="9.999999" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask26"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect27"
|
||||
width="19.999998"
|
||||
height="39.999996"
|
||||
x="100"
|
||||
y="9.999999" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><filter
|
||||
id="mask-powermask-path-effect32_inverse"
|
||||
inkscape:label="filtermask-powermask-path-effect32"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
height="100"
|
||||
width="100"
|
||||
x="-50"
|
||||
y="-50"><feColorMatrix
|
||||
id="mask-powermask-path-effect32_primitive1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="fbSourceGraphic" /><feColorMatrix
|
||||
id="mask-powermask-path-effect32_primitive2"
|
||||
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
|
||||
in="fbSourceGraphic" /></filter><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-5"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-5"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31-1"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31-7"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-1"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-1"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-5"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-2"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle35"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-5-5"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-5-7"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-6"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle35-1"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-2-8"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-1-9"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-5-2"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-2-7"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-7"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle36"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-5-5-8"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-5-7-7"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-7-4"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle36-2"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-2-7-7"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-1-9-7"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-5-2-9"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-2-7-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-7-3"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle37"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-4"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-8"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31-6"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31-5"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-9"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-0"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-0"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31-6-4"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31-5-9"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-0-6"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-9-3"><path
|
||||
id="rect32-0-7"
|
||||
d="M 87.5,10 H 105 V 45 H 87.5 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-0-8"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-0-8"><path
|
||||
id="lpe_path-effect31-0-8"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath61"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect61"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003176317"
|
||||
y="44.999981"
|
||||
transform="rotate(30)" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2-5"><path
|
||||
id="path2-1"
|
||||
style="display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /><path
|
||||
id="lpe_path-effect2-7"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 43.140527,-4.5919906 H 92.503738 V 30.405494 H 43.140527 Z M 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><filter
|
||||
id="mask-powermask-path-effect4_inverse"
|
||||
inkscape:label="filtermask-powermask-path-effect4"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
height="100"
|
||||
width="100"
|
||||
x="-50"
|
||||
y="-50"><feColorMatrix
|
||||
id="mask-powermask-path-effect4_primitive1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="fbSourceGraphic" /><feColorMatrix
|
||||
id="mask-powermask-path-effect4_primitive2"
|
||||
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
|
||||
in="fbSourceGraphic" /></filter><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2-2"><path
|
||||
id="path2-2"
|
||||
style="display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /><path
|
||||
id="lpe_path-effect2-16"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 43.140527,-4.5919906 H 92.503738 V 30.405494 H 43.140527 Z M 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2-8"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect2-8"><path
|
||||
id="path4"
|
||||
style="display:block;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2-54"><path
|
||||
id="path2-3"
|
||||
style="display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /><path
|
||||
id="lpe_path-effect2-12"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 43.140527,-4.5919906 H 92.503738 V 30.405494 H 43.140527 Z M 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect2-3"><path
|
||||
id="path5"
|
||||
style="display:block;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath></defs><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#606060"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.87594198"
|
||||
inkscape:cx="103.31735"
|
||||
inkscape:cy="419.54834"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1369"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="a"
|
||||
inkscape:document-units="mm" /><g
|
||||
inkscape:label="Vrstva 1"
|
||||
id="layer1-8"
|
||||
transform="matrix(0.75590545,0,0,0.75590545,18.897638,18.897638)"><rect
|
||||
style="fill:#ffffff;fill-opacity:0.4;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect35-3-9"
|
||||
width="100"
|
||||
height="100.00001"
|
||||
x="1.7763568e-15"
|
||||
y="-2.8421709e-14"
|
||||
inkscape:export-filename="rect35-3-9.png"
|
||||
inkscape:export-xdpi="65.024002"
|
||||
inkscape:export-ydpi="65.024002"
|
||||
rx="5"
|
||||
ry="5" /><path
|
||||
id="path1-2"
|
||||
clip-path="none"
|
||||
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:1.606;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 19.999839,19.999839 v 59.998926 h 9.99939 V 55.000289 H 40.001203 L 54.429264,79.998765 H 65.978948 L 51.545719,55.000289 h 18.453656 v 24.998476 h 9.99939 V 19.999839 h -9.99939 v 25.00106 h -11.68921 c 0.497269,-1.023194 1.689819,-3.809822 1.689819,-7.500835 0,-9.650331 -7.830201,-17.500225 -17.500225,-17.500225 z m 9.99939,9.99939 h 12.50053 c 4.201491,0 7.500835,3.408985 7.500835,7.500835 0,4.084865 -3.301557,7.500835 -7.500835,7.500835 h -12.50053 z" /></g><path
|
||||
d="M 438.53234,150.2948 188.97638,294.54018 V 582.43403 L 438.60885,726.55694 687.87402,582.64828 V 294.24938 Z M 413.41756,683.32158 282.44124,607.7018 V 492.16781 l -24.38013,-14.08019 v 115.22791 l -44.0924,-25.45145 v -229.8437 l 130.50188,75.42084 v 115.27383 l 25.20659,14.55465 V 428.22538 l 43.7557,25.25252 v 229.84368 0 z M 238.8386,294.43302 438.24154,178.74596 637.81285,293.9739 l -43.18944,24.9311 -99.89278,-57.66754 -25.19129,14.53932 100.12235,57.80528 -62.88638,36.3024 -99.72444,-57.57571 -24.65562,14.23322 100.18357,57.8359 -43.96997,25.39025 -199.78556,-115.35038 v 0 z M 662.82047,568.07835 463.60118,683.1073 V 453.20241 L 662.78986,337.92856 v 86.13399 l -99.43364,57.40737 v 57.8818 l 24.77806,-14.30976 v -28.84905 l 74.68619,-43.12824 z"
|
||||
style="opacity:0.2;fill:#00bc00;stroke-width:1.53046"
|
||||
id="path1-9" /></svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 666.14 666.14"><path d="M333.14,144.81l-163.06,94.25v188.11l163.11,94.17,162.87-94.03v-188.44l-162.92-94.06h0ZM316.73,493.09l-85.58-49.41v-75.49l-15.93-9.2v75.29l-28.81-16.63v-150.18l85.27,49.28v75.32l16.47,9.51v-75.17l28.59,16.5v150.18h0ZM202.66,238.99l130.29-75.59,130.4,75.29-28.22,16.29-65.27-37.68-16.46,9.5,65.42,37.77-41.09,23.72-65.16-37.62-16.11,9.3,65.46,37.79-28.73,16.59-130.54-75.37h0ZM479.69,417.79l-130.17,75.16v-150.22l130.15-75.32v56.28l-64.97,37.51v37.82l16.19-9.35v-18.85l48.8-28.18v75.15Z" style="fill:#00bc00; opacity:.2;"/></svg>
|
||||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 649 B |
|
Before Width: | Height: | Size: 88 KiB |
@@ -1,460 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
id="a"
|
||||
viewBox="0 0 869.29132 876.85038"
|
||||
version="1.1"
|
||||
sodipodi:docname="VIRTU-bed-texture.svg"
|
||||
width="230mm"
|
||||
height="232mm"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1"><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2"><path
|
||||
id="path2"
|
||||
style="display:block;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect26"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect22"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath22"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="circle22"
|
||||
cx="127.5"
|
||||
cy="32.5"
|
||||
r="12.5" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask23"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect23"
|
||||
width="22.5"
|
||||
height="45"
|
||||
x="127.5"
|
||||
y="10" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath26"><ellipse
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="ellipse26"
|
||||
cx="100"
|
||||
cy="30.000002"
|
||||
rx="9.9999962"
|
||||
ry="9.999999" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask26"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect27"
|
||||
width="19.999998"
|
||||
height="39.999996"
|
||||
x="100"
|
||||
y="9.999999" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><filter
|
||||
id="mask-powermask-path-effect32_inverse"
|
||||
inkscape:label="filtermask-powermask-path-effect32"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
height="100"
|
||||
width="100"
|
||||
x="-50"
|
||||
y="-50"><feColorMatrix
|
||||
id="mask-powermask-path-effect32_primitive1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="fbSourceGraphic" /><feColorMatrix
|
||||
id="mask-powermask-path-effect32_primitive2"
|
||||
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
|
||||
in="fbSourceGraphic" /></filter><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-5"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-5"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31-1"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31-7"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-1"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-1"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-5"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-2"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle35"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-5-5"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-5-7"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-6"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle35-1"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-2-8"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-1-9"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-5-2"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-2-7"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-7"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle36"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-5-5-8"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-5-7-7"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-7-4"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle36-2"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-2-7-7"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-1-9-7"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-5-2-9"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-2-7-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-2-7-3"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle37"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask33-4"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect34-8"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003171495"
|
||||
y="45"
|
||||
transform="rotate(30)" /></mask><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31-6"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31-5"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-9"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect32-0"
|
||||
width="17.499998"
|
||||
height="35"
|
||||
x="87.5"
|
||||
y="10" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-0"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath31-6-4"><circle
|
||||
style="display:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle31-5-9"
|
||||
cx="87.5"
|
||||
cy="27.499996"
|
||||
r="7.5000005" /><path
|
||||
id="lpe_path-effect31-0-6"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
id="mask32-9-3"><path
|
||||
id="rect32-0-7"
|
||||
d="M 87.5,10 H 105 V 45 H 87.5 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1" /></mask><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect31-0-8"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect31-0-8"><path
|
||||
id="lpe_path-effect31-0-8"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 82.5,5 H 110 V 50 H 82.5 Z M 95,27.499996 a 7.5000005,7.5000005 0 0 0 -7.5,-7.5 7.5000005,7.5000005 0 0 0 -7.5,7.5 7.5000005,7.5000005 0 0 0 7.5,7.500001 7.5000005,7.5000005 0 0 0 7.5,-7.500001 z" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath61"><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583"
|
||||
id="rect61"
|
||||
width="90.000641"
|
||||
height="29.999998"
|
||||
x="-0.0003176317"
|
||||
y="44.999981"
|
||||
transform="rotate(30)" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2-5"><path
|
||||
id="path2-1"
|
||||
style="display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /><path
|
||||
id="lpe_path-effect2-7"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 43.140527,-4.5919906 H 92.503738 V 30.405494 H 43.140527 Z M 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><filter
|
||||
id="mask-powermask-path-effect4_inverse"
|
||||
inkscape:label="filtermask-powermask-path-effect4"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
height="100"
|
||||
width="100"
|
||||
x="-50"
|
||||
y="-50"><feColorMatrix
|
||||
id="mask-powermask-path-effect4_primitive1"
|
||||
values="1"
|
||||
type="saturate"
|
||||
result="fbSourceGraphic" /><feColorMatrix
|
||||
id="mask-powermask-path-effect4_primitive2"
|
||||
values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 "
|
||||
in="fbSourceGraphic" /></filter><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2-2"><path
|
||||
id="path2-2"
|
||||
style="display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /><path
|
||||
id="lpe_path-effect2-16"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 43.140527,-4.5919906 H 92.503738 V 30.405494 H 43.140527 Z M 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2-8"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect2-8"><path
|
||||
id="path4"
|
||||
style="display:block;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath2-54"><path
|
||||
id="path2-3"
|
||||
style="display:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /><path
|
||||
id="lpe_path-effect2-12"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
class="powerclip"
|
||||
d="M 43.140527,-4.5919906 H 92.503738 V 30.405494 H 43.140527 Z M 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath><inkscape:path-effect
|
||||
effect="powerclip"
|
||||
message=""
|
||||
id="path-effect2-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
inverse="true"
|
||||
flatten="false"
|
||||
hide_clip="false" /><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipath_lpe_path-effect2-3"><path
|
||||
id="path5"
|
||||
style="display:block;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.815999;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.797281,11.210407 c 2.164059,0.0167 4.301633,-1.203719 5.35894,-3.09688 -1.190429,0 -2.380861,0 -3.571296,0 -0.595881,1.0322912 -1.191763,2.064586 -1.787644,3.09688 z" /></clipPath></defs><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#606060"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.87594198"
|
||||
inkscape:cx="103.31735"
|
||||
inkscape:cy="252.87063"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1369"
|
||||
inkscape:window-x="1912"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1-8"
|
||||
inkscape:document-units="mm" /><g
|
||||
inkscape:label="Vrstva 1"
|
||||
id="layer1-2"
|
||||
transform="matrix(4.5354318,0,0,4.5354318,125.67704,379.88183)"
|
||||
style="fill:#ffffff;fill-opacity:0.1;stroke:none;stroke-opacity:0"><path
|
||||
id="path89-7"
|
||||
style="fill:#ffffff;fill-opacity:0.1;stroke:none;stroke-width:0.816;stroke-dasharray:none;stroke-opacity:0"
|
||||
d="M 15.050016,0.56109929 C 10.268006,8.8411371 5.4872871,17.123909 0.70662408,25.405494 c 5.34166102,0 10.68332592,0 16.02498792,0 9.929676,-8.332692 19.859689,-16.6649759 29.789517,-24.99748461 -5.596021,0 -11.192034,0 -16.788049,0 -1.379497,1.15794241 -2.759364,2.31544821 -4.139004,3.47322331 0.668111,-1.1577751 1.336885,-2.3151704 2.004516,-3.47322331 -4.153623,0 -8.307245,0 -12.460866,0 -0.02923,0.051033 -0.05847,0.1020599 -0.08771,0.1530899 z" /><path
|
||||
id="path90-6"
|
||||
style="fill:#ffffff;fill-opacity:0.1;stroke:none;stroke-width:0.816;stroke-dasharray:none;stroke-opacity:0"
|
||||
d="M 48.230631,0.56109929 C 43.448616,8.8411371 38.667896,17.123909 33.887233,25.405494 c 4.153624,0 8.307248,0 12.460872,0 4.810447,-8.332448 9.62134,-16.6646419 14.431102,-24.99748461 -4.153626,0 -8.307247,0 -12.460869,0 -0.02925,0.051033 -0.05848,0.1020599 -0.0877,0.1530899 z" /><path
|
||||
id="path91-1"
|
||||
clip-path="none"
|
||||
style="fill:#ffffff;fill-opacity:0.1;stroke:none;stroke-width:0.816;stroke-dasharray:none;stroke-opacity:0"
|
||||
d="M 62.571717 0.40802992 C 62.542517 0.45906292 62.513107 0.50987608 62.483867 0.56090608 C 57.701859 8.8409439 52.921304 17.124065 48.140639 25.40565 L 60.601553 25.40565 C 61.075156 24.585591 61.547966 23.765168 62.021363 22.94499 C 62.093433 23.765185 62.165078 24.585489 62.237543 25.40565 L 73.069357 25.40565 C 72.866738 23.077881 72.66278 20.750158 72.459575 18.422439 C 76.083252 17.449103 79.255809 14.931504 81.026668 11.623111 C 83.18675 7.8850019 85.346924 4.1480419 87.50388 0.40802992 L 62.571717 0.40802992 z M 70.585012 8.1134188 L 74.156285 8.1134188 C 73.098978 10.00658 70.961496 11.22726 68.797437 11.21056 C 69.393318 10.178266 69.989131 9.14571 70.585012 8.1134188 z " /><path
|
||||
id="path93-4"
|
||||
style="fill:#ffffff;fill-opacity:0.1;stroke:none;stroke-width:0.816;stroke-dasharray:none;stroke-opacity:0"
|
||||
d="m 89.208458,0.56109929 c -1.45422,2.51603221 -2.906973,5.03487351 -4.359881,7.55242781 1.187246,0 2.374493,0 3.561731,0 -3.327204,5.7640459 -6.655229,11.5276229 -9.981921,17.2919669 4.15362,0 8.30724,0 12.460861,0 3.32777,-5.763878 6.65512,-11.527998 9.982732,-17.2919669 1.7818,0 3.5636,0 5.34539,0 1.48264,-2.5684378 2.96558,-5.1367037 4.44757,-7.70551771 -7.12292,0 -14.245852,0 -21.368782,0 -0.0292,0.051033 -0.0585,0.1020599 -0.0877,0.1530899 z" /><path
|
||||
id="path94-2"
|
||||
style="fill:#ffffff;fill-opacity:0.1;stroke:none;stroke-width:0.816;stroke-dasharray:none;stroke-opacity:0"
|
||||
d="M 112.37046,0.56109929 C 107.58819,8.8411411 102.80717,17.123898 98.026268,25.405494 c 5.267082,-0.0066 10.534622,0.01843 15.801412,-0.01691 4.38858,-0.188645 8.62641,-2.602612 10.98053,-6.319575 0.84955,-1.35386 1.59965,-2.766837 2.41765,-4.139984 2.79401,-4.840404 5.58885,-9.6803302 8.38234,-14.52102501 -2.96584,0 -5.93168,0 -8.89754,0 -1.54625,2.67815601 -3.09206,5.35656611 -4.63814,8.03482011 -0.59748,0 -1.19495,0 -1.79242,0 1.54595,-2.678331 3.09271,-5.356186 4.63814,-8.03482011 -4.15336,0 -8.30672,0 -12.46008,0 -0.0292,0.051033 -0.0585,0.1020599 -0.0877,0.1530898 z" /></g><g
|
||||
inkscape:label="Vrstva 1"
|
||||
id="layer1-8"
|
||||
transform="matrix(0.75590545,0,0,0.75590545,18.897638,18.897638)"><rect
|
||||
style="fill:#ffffff;fill-opacity:0.40000001;stroke:#000000;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect35-3-9"
|
||||
width="100"
|
||||
height="100.00001"
|
||||
x="1.7763568e-15"
|
||||
y="-2.8421709e-14"
|
||||
inkscape:export-filename="rect35-3-9.png"
|
||||
inkscape:export-xdpi="65.024002"
|
||||
inkscape:export-ydpi="65.024002"
|
||||
rx="5"
|
||||
ry="5" /><path
|
||||
id="path1-2"
|
||||
clip-path="none"
|
||||
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:1.606;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.999839 19.999839 L 19.999839 79.998765 L 29.999229 79.998765 L 29.999229 55.000289 L 40.001203 55.000289 L 54.429264 79.998765 L 65.978948 79.998765 L 51.545719 55.000289 L 69.999375 55.000289 L 69.999375 79.998765 L 79.998765 79.998765 L 79.998765 19.999839 L 69.999375 19.999839 L 69.999375 45.000899 L 58.310165 45.000899 C 58.807434 43.977705 59.999984 41.191077 59.999984 37.500064 C 59.999984 27.849733 52.169783 19.999839 42.499759 19.999839 L 19.999839 19.999839 z M 29.999229 29.999229 L 42.499759 29.999229 C 46.70125 29.999229 50.000594 33.408214 50.000594 37.500064 C 50.000594 41.584929 46.699037 45.000899 42.499759 45.000899 L 29.999229 45.000899 L 29.999229 29.999229 z " /></g></svg>
|
||||
|
Before Width: | Height: | Size: 23 KiB |
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ABS @VIRTU E3",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"setting_id": "AULhQhVApTASqF2p",
|
||||
"filament_id": "OFY9muEs",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"VIRTU E3 - 0.2 nozzle",
|
||||
"VIRTU E3 - 0.3 nozzle",
|
||||
"VIRTU E3 - 0.4 nozzle",
|
||||
"VIRTU E3 - 0.5 nozzle",
|
||||
"VIRTU E3 - 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic ASA @VIRTU E3",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"setting_id": "yJa8PC5f8c4uYgny",
|
||||
"filament_id": "OFLPAxz3",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"VIRTU E3 - 0.2 nozzle",
|
||||
"VIRTU E3 - 0.3 nozzle",
|
||||
"VIRTU E3 - 0.4 nozzle",
|
||||
"VIRTU E3 - 0.5 nozzle",
|
||||
"VIRTU E3 - 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PCCF @VIRTU E3",
|
||||
"inherits": "fdm_filament_pccf",
|
||||
"from": "system",
|
||||
"setting_id": "5byL7KQPKyybDAgQ",
|
||||
"filament_id": "OFC5f4Ay",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"VIRTU E3 - 0.5 nozzle",
|
||||
"VIRTU E3 - 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PETG @VIRTU E3",
|
||||
"inherits": "fdm_filament_petg",
|
||||
"from": "system",
|
||||
"setting_id": "OAN1Ozk75r0ODvVw",
|
||||
"filament_id": "OFYPdQJh",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"VIRTU E3 - 0.2 nozzle",
|
||||
"VIRTU E3 - 0.3 nozzle",
|
||||
"VIRTU E3 - 0.4 nozzle",
|
||||
"VIRTU E3 - 0.5 nozzle",
|
||||
"VIRTU E3 - 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PLA @VIRTU E3",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"setting_id": "DgSFTqNWfJEp0w9f",
|
||||
"filament_id": "OFDSrzZ8",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"VIRTU E3 - 0.2 nozzle",
|
||||
"VIRTU E3 - 0.3 nozzle",
|
||||
"VIRTU E3 - 0.4 nozzle",
|
||||
"VIRTU E3 - 0.5 nozzle",
|
||||
"VIRTU E3 - 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic TPU @VIRTU E3",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"setting_id": "ifG0f5hgJ7L9zw34",
|
||||
"filament_id": "OFgbpcy9",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"VIRTU E3 - 0.4 nozzle",
|
||||
"VIRTU E3 - 0.5 nozzle",
|
||||
"VIRTU E3 - 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -26,10 +26,10 @@
|
||||
"55"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
"32"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS"
|
||||
@@ -75,9 +75,9 @@
|
||||
"275"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"2"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -26,10 +26,10 @@
|
||||
"55"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"24"
|
||||
"32"
|
||||
],
|
||||
"filament_type": [
|
||||
"ASA"
|
||||
@@ -54,7 +54,7 @@
|
||||
"50"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"15"
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
@@ -75,9 +75,9 @@
|
||||
"275"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"2"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
"95%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
@@ -40,10 +40,10 @@
|
||||
"1"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
"15"
|
||||
],
|
||||
"filament_cost": [
|
||||
"0"
|
||||
@@ -51,9 +51,6 @@
|
||||
"filament_density": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
@@ -64,7 +61,7 @@
|
||||
"10"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"50"
|
||||
"40"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
@@ -118,13 +115,13 @@
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"7"
|
||||
"3"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; Filament gcode\n"
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"55"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
@@ -75,9 +75,9 @@
|
||||
"330"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
"2"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -23,10 +23,10 @@
|
||||
"90"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"15"
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
"26"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
@@ -72,9 +72,9 @@
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
"3"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -72,9 +72,9 @@
|
||||
"250"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
"6"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "VIRTU E3 - 0.2 nozzle",
|
||||
"printer_model": "VIRTU E3",
|
||||
"inherits": "fdm_common_VIRTU E3",
|
||||
"from": "system",
|
||||
"setting_id": "NEqwtUJ9txtcf1vY",
|
||||
"instantiation": "true",
|
||||
"default_print_profile": "0.10mm Standard @VIRTU E3",
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printer_variant": "0.2"
|
||||
}
|
||||