Pause on layer semi-completed

This commit is contained in:
Gregory Diaz 2015-11-30 16:19:32 -08:00
parent 6397c7b70f
commit 48cb8927cd
8 changed files with 38 additions and 8 deletions

View file

@ -46,6 +46,7 @@ using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading;
@ -758,7 +759,9 @@ namespace MatterHackers.MatterControl
private bool PauseOnLayer(string layer)
{
if (layer == "2")
int layerNumber;
if (int.TryParse(layer, out layerNumber) && ActiveSliceSettings.Instance.LayerToPauseOn.Contains(layerNumber))
{
return true;
}

View file

@ -1917,6 +1917,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication
return;
}
var x = lineToWrite;
lineToWrite = lineToWrite.Split(';')[0].Trim();
if (lineToWrite.Trim().Length > 0)
{
@ -1949,6 +1950,10 @@ namespace MatterHackers.MatterControl.PrinterCommunication
}
}
}
else
{
Console.WriteLine();
}
}
}

View file

@ -39,6 +39,7 @@ using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
namespace MatterHackers.MatterControl.SlicerConfiguration
@ -300,6 +301,17 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
}
}
public int[] LayerToPauseOn
{
get
{
string[] userValues = GetActiveValue("layer_to_pause").Split(';');
int temp;
return userValues.Where(v => int.TryParse(v, out temp)).Select(v => int.Parse(v)).ToArray();
}
}
public double ProbePaperWidth
{
get

View file

@ -69,7 +69,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
}
private static MapItem[] matterSliceToDefaultMapping =
{
{
//avoidCrossingPerimeters=True # Avoid crossing any of the perimeters of a shape while printing its parts.
new MapItemToBool("avoidCrossingPerimeters", "avoid_crossing_perimeters"),
@ -87,13 +87,13 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
//doCoolHeadLift=False # Will cause the head to be raised in z until the min layer time is reached.
new MapItemToBool("doCoolHeadLift", "cool_extruder_lift"),
new VisibleButNotMappedToEngine("extruder_count"),
new VisibleButNotMappedToEngine("extruders_share_temperature"),
new VisibleButNotMappedToEngine("extruder_count"),
new VisibleButNotMappedToEngine("extruders_share_temperature"),
//endCode=M104 S0
new GCodeForSlicer("endCode", "end_gcode"),
new MapItem("zOffset", "z_offset"),
new MapItem("zOffset", "z_offset"),
//extruderOffsets=[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]]
new ExtruderOffsets("extruderOffsets", "extruder_offset"),
@ -108,6 +108,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
new VisibleButNotMappedToEngine("print_leveling_required_to_print"),
//new VisibleButNotMappedToEngine("print_leveling_method"),
new VisibleButNotMappedToEngine("manual_probe_paper_width"),
new VisibleButNotMappedToEngine("layer_to_pause"),
//fanSpeedMinPercent=100
new MapItem("fanSpeedMinPercent", "min_fan_speed"),

View file

@ -72,6 +72,7 @@ infill_speed = 60
infill_type = TRIANGLES
layer_gcode =
layer_height = 0.4
layer_to_pause =
max_fan_speed = 100
min_extrusion_before_retract = .1
min_fan_speed = 35

View file

@ -66,6 +66,7 @@ Advanced
layer_height
first_layer_height
bottom_clip_amount
layer_to_pause
Outer Surface - Perimeters
perimeters
avoid_crossing_perimeters

View file

@ -38,8 +38,15 @@
"SlicerConfigName": "bottom_solid_layers",
"PresentationName": "Bottom Solid Layers:",
"HelpText": "How many layers, or the distance, that will be solid filled on the bottom surfaces of the object. Add mm to the end of the number to specify distance.",
"DataEditType": "INT_OR_MM",
"ExtraSettings": "count or mm"
"DataEditType": "INT",
"ExtraSettings": "count"
},
{
"SlicerConfigName": "layer_to_pause",
"PresentationName": "Select Layer To Pause:",
"HelpText": "If you want to select a layer to pause your print on do so here (for changing filament)",
"DataEditType": "STRING",
"ExtraSettings": ""
},
{
"SlicerConfigName": "bridge_acceleration",

@ -1 +1 @@
Subproject commit 0e0d6372f0c9ecfd59094ca24716b13996e28625
Subproject commit d61c14c08d244c68291aa935c065a9c0bbc80e8a