Replies: 5 comments 2 replies
-
Hello, I'm trying to reset the ink counter on my L405 but seems like
it's not on the list I already searched the similar models =
["ET-2610", "L3060", "L396", "L405"] but none of them are on the list.
Is there any other way to reset the counter or am I doing something
wrong?
You can find the relevant data here:
https://codeberg.org/atufi/reinkpy/src/branch/main/reinkpy/epson.toml
|
Beta Was this translation helpful? Give feedback.
1 reply
-
it seems like my printer (L405) is not included in the list of valid printer in epson_print_conf.py, so I need to add it myself from https://codeberg.org/atufi/reinkpy/src/branch/main/reinkpy/epson.toml? How can I do that, do you mind teaching me?
You have two options:
1. Patch and use this tool, with something like this (untested):
```
diff --git a/epson_print_conf.py b/epson_print_conf.py
index db48b24..a9fa33c 100644
--- a/epson_print_conf.py
+++ b/epson_print_conf.py
@@ -82,6 +82,13 @@ class EpsonPrinter:
"read_key": [65, 9],
# uncompleted
},
+ "L405": {
+ "read_key": [0x95, 0x03],
+ "write_key": b'Maninjau',
+ "raw_waste_reset": {
+ 0x18:0, 0x19:0, 0x1c:0, 0x1d:0, 0x2e:0x5e, 0x1e:0
+ },
+ },
"L3250": {
"read_key": [74, 54],
"write_key": b'Maribaya',
```
2. Or try with reinkpy. It supports connection via USB, but so far not via network SNMP/UDP/IP
like epson_print_conf does. I've made a GUI for it which should work at least on linux.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Kennnwxyz
-
I followed your 1st option and it works, thank you so much! also verified it by checking the counter using wic utility and it says 0% |
Beta Was this translation helpful? Give feedback.
0 replies
-
L405 added. |
Beta Was this translation helpful? Give feedback.
1 reply
-
L3060 printer added |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I'm trying to reset the ink counter on my L405 but seems like it's not on the list
I already searched the similar models = ["ET-2610", "L3060", "L396", "L405"] but none of them are on the list.
Is there any other way to reset the counter or am I doing something wrong?
Beta Was this translation helpful? Give feedback.
All reactions