Difference between revisions of "Dotmatixprinter"

From Publication Station
(Created page with "== Print technic == A dot matrix printer is an impact printer that prints using a fixed number of pins or wires. Typically the pins or wires are arranged in one or several vertical columns. The pins strike an ink-coated ribbon and force contact between the ribbon and the paper, so that each pin makes a small dot on the paper. The combination of these dots forms a dot matrix image. They were also known as serial dot matrix printers. While inkjet and laser printers techni...")
 
m
 
Line 7: Line 7:


== Publication Station ==
== Publication Station ==
In the Publication Station we have a Matrix printer from the brand ... from 19.. with a serial port we can use the program [http://freeware.the-meiers.org Coolterm] to sent tekst to the printer.  
 
In the Publication Station we have a Matrix printer from the brand Fujitsu DL6600 Pro from 19.. with a serial port we can use the program [http://freeware.the-meiers.org Coolterm] to sent text to the printer.  
 


Printing from a RaspberryPi to a line printer (dot matrix, receipt printer) can be done quite simply, by simply writing the text to printer using:  
Printing from a RaspberryPi to a line printer (dot matrix, receipt printer) can be done quite simply, by simply writing the text to printer using:  

Latest revision as of 19:13, 19 May 2022

Print technic

A dot matrix printer is an impact printer that prints using a fixed number of pins or wires. Typically the pins or wires are arranged in one or several vertical columns. The pins strike an ink-coated ribbon and force contact between the ribbon and the paper, so that each pin makes a small dot on the paper. The combination of these dots forms a dot matrix image. They were also known as serial dot matrix printers.

While inkjet and laser printers technically exhibit dot matrix printing, they work differently than impact "dot matrix printers" and can deposit ink or toner at higher dot resolutions more quickly, with less inherent noise. The impact printer has the ability to make copies using multi-part forms, unlike an inkjet or laser printer.

wikipedia.org/Dot_matrix_printer

Publication Station

In the Publication Station we have a Matrix printer from the brand Fujitsu DL6600 Pro from 19.. with a serial port we can use the program Coolterm to sent text to the printer.


Printing from a RaspberryPi to a line printer (dot matrix, receipt printer) can be done quite simply, by simply writing the text to printer using:

echo "hello printer" > /dev/usb/lp0

Where:

  • /dev/usb/lp0 is the location of the printer
  • > is a write to command