Difference between revisions of "Okidata Microline 320 Turbo"

From Robert-Depot
Jump to: navigation, search
Line 1: Line 1:
[[Home | <<< back to Wiki Home]]
+
=Arduino control=
 +
*parallel port interface
 +
*arduino nano with ethernet shield.
 +
=direct write=
 +
*with newline: <syntaxhighlight lang="bash">echo "works just fine" | nc 192.168.1.101 1000</syntaxhighlight>
 +
*without newline: <syntaxhighlight lang="bash">echo -n "works just fine" | nc 192.168.1.101 1000</syntaxhighlight>
 +
*printf: <syntaxhighlight lang="bash">printf " keep on going" | nc 192.168.1.101 1000</syntaxhighlight>
 +
 
 
=Okidata Microline 320 Control=
 
=Okidata Microline 320 Control=
 
*http://my.okidata.com/MAN390HB.NSF/MOCContents/4F6AD49DB70B93F6852562F400594112?OpenDocument
 
*http://my.okidata.com/MAN390HB.NSF/MOCContents/4F6AD49DB70B93F6852562F400594112?OpenDocument

Revision as of 23:08, 19 January 2015

Arduino control

  • parallel port interface
  • arduino nano with ethernet shield.

direct write

  • with newline:
    echo "works just fine" | nc 192.168.1.101 1000
    
  • without newline:
    echo -n "works just fine" | nc 192.168.1.101 1000
    
  • printf:
    printf " keep on going" | nc 192.168.1.101 1000
    

Okidata Microline 320 Control

OS X

  • Systems Preferences -> Printers and Scanners -> Add New Printer
  • Should show up as OKI DATA CORP ML320/1TURBO.
  • Will not have software, select Oki 9-Pin Series.

LP

others

Windows

Linux

Adding microline 320 printer

Printer queue command line tools http://www.novell.com/documentation/suse91/suselinux-adminguide/html/ch05s07.html

  • lpstat -o
  • lprm

Adding as Raw Printer:

Command Line printer management

Arduino