0

I recently bought the CPOS80250 thermal printer but cant find the linux drivers. I am trying to install it on a raspberry pi 2 but cant find the ppd file anywhere. Anyone with leads?

nick
  • 333
  • 1
  • 4
  • 15

1 Answers1

0
//For basic printing you do not need driver
//--------------------------------------------
std::ofstream osFD;
osFD.open("/dev/usb/lp0",std::ofstream::out);
osFD << "Hello My Printer";
Amit Vujic
  • 1,632
  • 1
  • 24
  • 32