printer-api/Instructions/FeedInstruction.cs

13 lines
235 B
C#
Raw Normal View History

2022-02-19 13:06:07 +00:00
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;
}
}