add cut commands

This commit is contained in:
Martin Brodbeck 2025-03-20 14:29:20 +01:00
parent c01f714335
commit 5c0c55108e
2 changed files with 4 additions and 0 deletions

View file

@ -19,6 +19,8 @@ const std::string PosPrinter::Command::RIGHT_ALIGN = {0x1b, 0x61, 0x02};
const std::string PosPrinter::Command::FONT_SIZE_BIG = {0x1b, 0x21, 0x10};
const std::string PosPrinter::Command::FONT_SIZE_NORMAL = {0x1b, 0x21, 0x00};
const std::string PosPrinter::Command::FEED = {0x1b, 0x64, 0x03};
const std::string PosPrinter::Command::PARTIAL_CUT = {0x1b, 0x69};
const std::string PosPrinter::Command::FULL_CUT = {0x1b, 0x6d};
PosPrinter::PosPrinter() : PosPrinter(PrinterDevice()) {}

View file

@ -49,6 +49,8 @@ class PosPrinter
static const std::string FONT_SIZE_BIG;
static const std::string FONT_SIZE_NORMAL;
static const std::string FEED;
static const std::string PARTIAL_CUT;
static const std::string FULL_CUT;
};
private: