Skip to content

Commit

Permalink
Refinements
Browse files Browse the repository at this point in the history
  • Loading branch information
Ircama committed Mar 14, 2024
1 parent 42d24ef commit d5676bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions epson_print_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,7 @@ def status_parser(self, data):
0x2a: "Card loading Error",
0x47: "Printing disable error",
0x4a: "Maintenance Box near End error",
0x4b: "Driver mismatch error ",
}

warning_ids = {
Expand Down Expand Up @@ -897,6 +898,10 @@ def status_parser(self, data):
data_set["paper_path"] = "Roll paper"
if item == b'\x03\x02':
data_set["paper_path"] = "Photo Album"
if item == b'\x02\x01\x00':
data_set["paper_path"] = "Cut Sheet (Auto Select)"
if item == b'\x02\x01':
data_set["paper_path"] = "CD-R, cardboard"
if item == b'\x02\x01':
data_set["paper_path"] = "CD-R, cardboard"

Expand Down

0 comments on commit d5676bf

Please sign in to comment.