From 0f2a9a7fc96de296ff58b31e67bed92a90687927 Mon Sep 17 00:00:00 2001 From: NaitLee Date: Wed, 20 Sep 2023 10:26:43 +0800 Subject: [PATCH] add model MX09 --- printer_lib/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/printer_lib/models.py b/printer_lib/models.py index 989ad62..077eb14 100644 --- a/printer_lib/models.py +++ b/printer_lib/models.py @@ -19,7 +19,7 @@ class Model(): Models = {} # all known supported models -for name in '_ZZ00 GB01 GB02 GB03 GT01 MX05 MX06 MX08 YT01'.split(' '): +for name in '_ZZ00 GB01 GB02 GB03 GT01 MX05 MX06 MX08 MX09 YT01'.split(' '): Models[name] = Model() # that can receive compressed data @@ -27,5 +27,5 @@ for name in 'GB03'.split(' '): Models[name].is_new_kind = True # that have problem giving feed command -for name in 'MX05 MX06 MX08'.split(' '): +for name in 'MX05 MX06 MX08 MX09'.split(' '): Models[name].problem_feeding = True