Adding change temp object

issue: MatterHackers/MCCentral#6123
Create a temperature calibration object
This commit is contained in:
LarsBrubaker 2020-11-14 13:35:03 -08:00
parent eb6960b053
commit 975c9294ca
10 changed files with 297 additions and 30 deletions

View file

@ -334,6 +334,8 @@ namespace MatterHackers.MatterControl.Library.Export
accumulatedStream = new ProcessWriteRegexStream(printer, accumulatedStream, queuedCommandStream);
accumulatedStream = new RunSceneGCodeProcesorsStream(printer, accumulatedStream, queuedCommandStream);
return accumulatedStream;
}

View file

@ -116,6 +116,10 @@ namespace MatterHackers.MatterControl.Library
() => "SCAD Script".Localize(),
async () => await OpenScadScriptObject3D.Create())
{ DateCreated = new System.DateTime(index++) },
new GeneratorItem(
() => "Set Temperature".Localize(),
async () => await SetTemperatureObject3D.Create())
{ DateCreated = new System.DateTime(index++) },
#endif
new GeneratorItem(
() => "Image Converter".Localize(),