How to connect to card printers?

Hello guys,
what’s the best way to communicate with card printer using elixir as the interface for communication to the printer eg evoils or fargo printer

It really depends on driver for the printer. I was able to use a label printer by simply writing a file to the correct system path. This was for printing QR codes. It used the Zebra file format. You can see the code here, https://github.com/rosetta-home/kitting_system/blob/master/lib/kitting_system/print.ex and the template https://github.com/rosetta-home/kitting_system/blob/master/priv/label.zpl

1 Like

@entone , Thanks