Opentrons / DYMO-SDK-for-Linux

An update to the Dymo CUPS drivers for Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DYMO SDK for Linux

CircleCI

This is a fork of the official DYMO SDK for Linux, version 1.4.0.5, which was last updated in 2012 for CUPS version 1.4.6. This official version no longer compiles with CUPS v2 or higher. Attempts to ask DYMO Customer Support about updates to this driver have failed, as they longer support the Linux operating system.

The fix for this comes as a patch found on a forum post regarding the same issue.

This has been tested to work on Ubuntu 18.04 with CUPS 2.2.7

Installation:

sudo apt-get install git libcups2-dev libcupsimage2-dev gcc g++ automake
cd ~/
git clone https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux.git
cd DYMO-SDK-for-Linux
aclocal
automake --add-missing
autoconf
./configure
make
sudo make install

Command examples:

  • print very long text on a tape:
lpr -o landscape -o PageSize=24_mm__1___Label__Auto_ docs/test.txt
  • set printing options specific to the LabelWriter driver
lpr -o PageSize=30252_Address -o PrintQuality=Graphics -o PrintDensity=Light docs/test.txt
  • set printing options specific to the LabelManager driver
lpr -o PageSize=Address_Label -o CutOptions=ChainMarks -o LabelAlignment=Right -o TapeColor=1

About

An update to the Dymo CUPS drivers for Linux

License:GNU General Public License v2.0


Languages

Language:C++ 84.9%Language:Shell 9.6%Language:Makefile 4.0%Language:M4 1.3%Language:Dockerfile 0.1%