Skip to main content

Brother HL-2132 - Lousy Yield on the Starter Toner Cartridge and How to Work Around it

I bought a Brother HL-2132 mono laser printer from Offceworks recently. Like almost all printers these days, it came with a "starter" toner cartridge that promises 700 pages of print. Well, guess what? The "Replace toner" LED came on after printing only 199 pages! How do I know? More on that later.

A quick search found a number of proposed solutions on the Web, ranging from taping the optical window to resetting the flag gear on the toner cartridge. Well, the starter cartridge I got came with neither of these mechanisms. Seems like Brother has read all these solutions and decided to lock down their starter cartridges even further!

What finally worked for me was to factory reset the printer. This can be done by the following steps:

1. Open the front cover and remove the toner cartridge. Leave the front cover open!

2. Turn the printer off.

3. Press and hold the "Go" button while turning the printer on. All LEDs will light up. Release the "Go" button.

4. Now press the "Go" button twice and pause for a second.

5. Press the "Go" button a further 5 times.

6. If you have done all the above steps correctly, the computer connecting to the printer will detect a new device, try to install a device driver for it and fails, then displays an error window saying that it is unable to install a driver for the printer in "maintenance mode".

7. Now turn off the printer.

8. Re-insert the starter toner cartridge and close the front cover.

9. Turn on the printer.

After the brief startup churn, the printer was ready for printing again, with the toner level restored to 100%!

To check the toner level, right-click on the printer icon and select "Print Preferences":


Then click on the "Support" button on the bottom-left:


 Finally, click "Print Settings":


The printer will print out a single sheet of information detailing interesting tidbits such as the number of pages you have printed, the % of toner left, and the % of drum life left. That was how I got to know that the starter toner cartridge "ran out" at exactly 199 pages!

Update: I managed to get to 329 pages before the print started fading. So that's only about 100 pages more from the starter toner. To be fair, my average coverage per page is probably about 30% rather than the 5% frequently used in industrial figures, so your mileage may vary.

Further update: Yield comparison on toner cartridges/refills

Comments

  1. thank you so much - I have tried to replace my toner 2x and was about to give up and buy an expensive Brother one (instead of the cheaper refurbished types) when I found this post - it works! I will keep this as a reference if I need it again. Thank you!

    ReplyDelete
  2. God Bless you. the videos we found on the Web was not even in English, and Lousy thing didn't even work. I followed your instruction and got it right without even re installing the device. Thank you

    ReplyDelete
  3. thank you very much, very helpful!

    ReplyDelete

Post a Comment

Popular posts from this blog

Update: Line adapter for Ozito Blade Trimmer

Update (Dec 2021): If you access to a 3D printer, I would now recommend this solution , which makes it super easy to replace the trimmer line. I have been using it for a few months now with zero issue.

Line adapter for Ozito Blade Trimmer

This is an adapter for Ozito 18V battery trimmer (and possibly some Bosch trimmers as well) that uses a plastic blade for cutting. It lets you insert a 2.4mm trimmer line (about 8cm long) and use that for cutting. Simply cut a length of trimmer line and briefly heat up one end with a lighter so that a little bulb is formed. Then insert the trimmer line into the adapter and slot that into the trimmer as per normal. Make sure the trimmer line is not so long that it touches the safety guard. If that is the case, simply trim off any excess with a cutter or scissors. This part is best printed using PETG, which is a tougher and more flexible material. PLA is more rigid and breaks more easily. However, even with PETG, it will still break when it hits something really hard. Since this takes only 0.5m of material and 15 minutes to print, I will usually print a batch of nine at a time at very little cost. The blades that they sell do not break when it hits a hard object, but ...

Attiny85 timer programming using Timer1

This Arduino sketch uses Timer1 to drive the LED blinker: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 /* * Program ATTiny85 to blink LED connected to PB1 at 1s interval. * Assumes ATTiny85 is running at 1MHz internal clock speed. */ #include <avr/io.h> #include <avr/wdt.h> #include <avr/sleep.h> #include <avr/interrupt.h> bool timer1 = false , led = true ; // Interrupt service routine for timer1 ISR(TIMER1_COMPA_vect) { timer1 = true ; } void setup() { // Setup output pins pinMode( 1 , OUTPUT); digitalWrite( 1 , led); set_sleep_mode(SLEEP_MODE_IDLE); // Setup timer1 to interrupt every second TCCR1 = 0 ; // Stop timer TCNT1 = 0 ; // Zero timer GTCCR = _BV(PSR1); // Reset prescaler OCR1A = 243 ; // T = prescaler / 1MHz = 0.004096s; OCR1A = (1s/T) - 1 = 243 OCR1C = 243 ; // Set to same value to reset timer1 to...