printer-api/Instructions/FeedInstruction.cs
2022-02-19 14:06:07 +01:00

13 lines
235 B
C#

public class FeedInstruction : BaseInstruction
{
public int lines {get; set; } = 1;
public override List<byte[]> GetInstructions()
{
var commands = new List<byte[]>();
commands.Add(e.FeedLines(lines));
return commands;
}
}