feed method
Skips n
lines
Similar to emptyLines but uses an alternative command
Implementation
List<int> feed(int n) {
List<int> bytes = [];
if (n >= 0 && n <= 255) {
bytes += Uint8List.fromList(
List.from(cFeedN.codeUnits)..add(n),
);
}
return bytes;
}