Improving fan speed reporting

This commit is contained in:
Lars Brubaker 2022-05-03 10:19:19 -07:00
parent 2fd226c155
commit e4cdc106d8
4 changed files with 106 additions and 3 deletions

View file

@ -76,6 +76,13 @@ namespace MatterControl.Printing
public abstract double GetLayerHeight(int layerIndex);
/// <summary>
/// Get the speed of the fan at the conculsion of this layer
/// </summary>
/// <param name="layerIndex">The layer to get the last fan speed for</param>
/// <returns>The fan speed 0 to 255</returns>
public abstract int GetLastFanSpeed(int layerIndex);
public abstract double GetLayerTop(int layerIndex);
public abstract int GetLayerIndex(int instructionIndex);